Database for Module:Version. Entries are in order by date in ascending order and are indexed by Name and each element in Aliases tables.
- Last updated: Sun, 13 Apr 2025 13:10:41 +0000 (UTC) by User:Khorak-kal
Version Entry Schema
{
Name = "Version name",
Link = "Update page name",
Aliases = { "Additional alias", "to be called" },
ShortName = "Shorthand name (e.g. U15 or H29.10)",
Date = "Date in YYYY-MM-DD (ISO format)",
Parent = "Parent update alias",
ForumLink = "URL of forum post",
ArchiveLink = "URL of archived forum post",
ArchiveDate = "YYYY-MM-DD",
Timestamp = 1625583730
},
| Key/Column Name | Data Type | Required? | Explanation/Description | Example(s) |
|---|---|---|---|---|
Aliases |
Table (of strings) | ✔️ | Table containing alternative names of version | { "26.0.1" }
|
ArchiveDate |
String | ✔️ | ISO date in which URL was archived | "2022-02-23"
|
ArchiveLink |
String | ✔️ | URL of archived forum post through Internet Archive (https://archive.org/index.php). If Wayback Machine is down, for fallback use archive.today (https://archive.ph/). | "https://web.archive.org/web/20210923205341/https://forums.warframe.com/topic/1281923-nidus-prime-plague-star-hotfix-3076/"
|
Date |
String | ✔️ | ISO date in which version was first introduced to the PC global build | "2021-08-10"
|
ForumLink |
String | ✔️ | URL of PC patch notes on the official Warframe forums | "https://forums.warframe.com/topic/1283036-nights-of-naberus-update-3080/"
|
Link |
String | ✔️ | Page/article link to the version on the wiki | "Update 26#Hotfix 26.0.1"
|
Name |
String | ✔️ | Version's official name | "Hotfix 26.0.1"
|
Parent |
String | ✔️ | Parent update version number/name or the update itself if it is a mainline | "26"
|
ParentName |
String | ❌ | Name of parent update version or the name of update itself if it is a mainline | "The War Within"
|
ShortName |
String | ✔️ | Shorthand name for version; use "U" for mainline updates and "H" for hotfixes | "U26" or "H26.1"
|
Subtitle |
String | ❌ | Additional text alongside mainline version in forum post title that adds additional context; may share some values with Alias key. Text can also be derived from forum post content if title is not sufficient. |
"Veilbreaker" or "Beasts of the Sanctuary"
|
Timestamp |
Number (int) | ✔️ | Timestamp when forum post was made in Unix time. Human time to Unix time can be converted here: https://www.unixtimestamp.com | 1634576666
|
Getting Timestamp of Forum Post
On the official Warframe post, open your browser's element inspecter (default F12) and highlight over the post's timestamp (e.g. "Posted 2 hours ago") and look at the time tag's datetime attribute (e.g. <time datetime="2022-01-25T18:57:47Z" title="2022-01-25 10:57 AM" data-short="2 hr">2 hours ago</time>). You can convert the datetime string into Unix time using your desired online converter or parse the string in JavaScript using Date.parse("timestamp string") / 1000.
Update vs. Hotfix (Warframe Development Cycle)
- Certification updates are also known as mainline updates. Mainline updates have to go through certification processes on console platforms to ensure that Warframe's code follows console partner's requirements.
- When "code" is mentioned, the developers are referring to game engine code ("low-level code") rather than gameplay scripts, game assets, server-side changes, or game data that interface with the engine.
- Typical Warframe game development cycle:
- Mainline update 1.0
- Hotfix 1.0.1
- Hotfix 1.0.2
- ... Subsequent hotfixes
- "Going dark", hotfixing paused to prepare for next mainline
- Mainline update 1.5 (additional content related to 1.0, uses "1.x" naming convention)
- Hotfix 1.5.1
- Hotfix 1.5.2
- ... Subsequent hotfixes
- "Going dark"
- Mainline update 2.0 (next major content release)
- ... Repeat
- Mainline update 1.0
- See this forum post for more details: Sokolowski, Danielle (2023, June 1). The Warframe Lexicon for Updates. Warframe Forums. Accessed 2023-06-24. Archived from the original on 2023-06-24.
Full Version List
Data
- ↑ [DE]Momaw (2023, February 22). PSA: Citrine’s Last Wish Known Issues. Warframe Forums. Accessed 2023-02-25. Archived from the original on 2023-02-25.
local Versions = {
{
Name = "TBA",
Link = "Upcoming Features",
Aliases = { "TBA", "999", "999.0" , "999.0.0" },
ShortName = "U999.0.0",
Date = "0000-00-00",
Parent = "0.0",
ParentName = "TBA",
ForumLink = "http://warframe.com/",
ArchiveLink = "http://warframe.com/",
ArchiveDate = "0000-00-00",
Timestamp = 0
},
{
Name = "Vanilla",
Link = "Closed Beta Updates#Vanilla",
Aliases = { "0", "0.0" },
ShortName = "U0",
Date = "2012-10-25",
Parent = "0.0",
ParentName = "Updates 0 - 4",
ForumLink = "https://web.archive.org/web/20121105042200/http://warframe.com/",
ArchiveLink = "https://web.archive.org/web/20121105042200/http://warframe.com/",
ArchiveDate = "2012-11-05",
Timestamp = 1351177200 -- approx
},
{
Name = "Update 1",
Link = "Closed Beta Updates#Update 1",
Aliases = { "1", "1.0", "Update 1.0" },
ShortName = "U1",
Date = "2012-10-26",
Parent = "1.0",
ParentName = "Updates 0 - 4",
ForumLink = "https://forums.warframe.com/topic/228-update-1-is-here/",
ArchiveLink = "https://web.archive.org/web/20210119152429/https://forums.warframe.com/topic/228-update-1-is-here/",
ArchiveDate = "2021-01-19",
Timestamp = 1351283317
},
{
Name = "Update 2",
Link = "Closed Beta Updates#Update 2",
Aliases = { "2", "2.0", "Update 2.0" },
ShortName = "U2",
Date = "2012-10-29",
Parent = "2.0",
ParentName = "Updates 0 - 4",
ForumLink = "https://forums.warframe.com/topic/399-update-2-is-here/",
ArchiveLink = "https://web.archive.org/web/20210824204804/https://forums.warframe.com/topic/399-update-2-is-here/",
ArchiveDate = "2021-08-24",
Timestamp = 1351550737
},
{
Name = "Update 3",
Link = "Closed Beta Updates#Update 3",
Aliases = { "3", "3.0", "Update 3.0" },
ShortName = "U3",
Date = "2012-10-30",
Parent = "3.0",
ParentName = "Updates 0 - 4",
ForumLink = "https://forums.warframe.com/topic/429-update-3-is-here/",
ArchiveLink = "https://web.archive.org/web/20210824204923/https://forums.warframe.com/topic/429-update-3-is-here/",
ArchiveDate = "2021-08-24",
Timestamp = 1351622352
},
{
Name = "Update 4",
Link = "Closed Beta Updates#Update 4",
Aliases = { "4", "4.0", "Update 4.0" },
ShortName = "U4",
Date = "2012-11-02",
Parent = "4.0",
ParentName = "Updates 0 - 4",
ForumLink = "https://forums.warframe.com/topic/470-update-4-is-here/",
ArchiveLink = "https://web.archive.org/web/20210824205017/https://forums.warframe.com/topic/470-update-4-is-here/",
ArchiveDate = "2021-08-24",
Timestamp = 1351898028
},
{
Name = "Update 5.0",
Link = "Closed Beta Updates#Update 5.0",
Aliases = { "5", "5.0", "Update 5.0" },
ShortName = "U5.0",
Date = "2012-12-18",
Parent = "5.0",
ParentName = "Update 5.0",
ForumLink = "https://forums.warframe.com/topic/613-update-5-is-here/",
ArchiveLink = "https://web.archive.org/web/20210824205118/https://forums.warframe.com/topic/613-update-5-is-here/",
ArchiveDate = "2021-08-24",
Timestamp = 1355892773
},
{
Name = "Hotfix 5.0.1",
Link = "Closed Beta Updates#Hotfix 5.0.1",
Aliases = { "5.0.1" },
ShortName = "H5.0.1",
Date = "2012-12-18",
Parent = "5.0",
ParentName = "Update 5.0",
ForumLink = "https://forums.warframe.com/index.php?/topic/613-update-5-is-here/",
ArchiveLink = "https://web.archive.org/web/20210824205118/https://forums.warframe.com/topic/613-update-5-is-here/",
ArchiveDate = "2021-08-24",
Timestamp = 1355892773
},
{
Name = "Hotfix 5.0.5",
Link = "Closed Beta Updates#Hotfix 5.0.5",
Aliases = { "5.0.5" },
ShortName = "H5.0.5",
Date = "2012-12-27",
Parent = "5.0",
ParentName = "Update 5.0",
ForumLink = "https://forums.warframe.com/topic/613-update-5-is-here/page/3/#comment-5977",
ArchiveLink = "https://web.archive.org/web/20210824205301/https://forums.warframe.com/topic/613-update-5-is-here/page/3/",
ArchiveDate = "2021-08-24",
Timestamp = 1356622443
},
{
Name = "Update 5.1",
Link = "Closed Beta Updates#Update 5.1",
Aliases = { "5.1" },
ShortName = "U5.1",
Date = "2013-01-02",
Parent = "5.0",
ParentName = "Update 5.0",
ForumLink = "https://forums.warframe.com/topic/613-update-5-is-here/page/3/#comment-7608",
ArchiveLink = "https://web.archive.org/web/20210824205301/https://forums.warframe.com/topic/613-update-5-is-here/page/3/",
ArchiveDate = "2021-08-24",
Timestamp = 1357134838
},
{
Name = "Update 5.2",
Link = "Closed Beta Updates#Update 5.2",
Aliases = { "5.2" },
ShortName = "U5.2",
Date = "2013-01-04",
Parent = "5.0",
ParentName = "Update 5.0",
ForumLink = "https://forums.warframe.com/topic/613-update-5-is-here/page/4/#comment-8855",
ArchiveLink = "https://web.archive.org/web/20210824205447/https://forums.warframe.com/topic/613-update-5-is-here/page/4/",
ArchiveDate = "2021-08-24",
Timestamp = 1357309903
},
{
Name = "Update 5.3",
Link = "Closed Beta Updates#Update 5.3",
Aliases = { "5.3" },
ShortName = "U5.3",
Date = "2013-01-10",
Parent = "5.0",
ParentName = "Update 5.0",
ForumLink = "https://forums.warframe.com/topic/2803-update-53-blazing-embers/",
ArchiveLink = "https://web.archive.org/web/20210824205538/https://forums.warframe.com/topic/2803-update-53-blazing-embers/",
ArchiveDate = "2021-08-24",
Timestamp = 1357848906
},
{
Name = "Update 5.4",
Link = "Closed Beta Updates#Update 5.4",
Aliases = { "5.4" },
ShortName = "U5.4",
Date = "2013-01-14",
Parent = "5.0",
ParentName = "Update 5.0",
ForumLink = "https://forums.warframe.com/topic/4030-update-54-hammer-time-preview/",
ArchiveLink = "https://web.archive.org/web/20210824205640/https://forums.warframe.com/topic/4030-update-54-hammer-time-preview/",
ArchiveDate = "2021-08-24",
Timestamp = 1358204707,
Subtitle = "Hammer Time"
},
{
Name = "Hotfix 5.4.1",
Link = "Closed Beta Updates#Hotfix 5.4.1",
Aliases = { "5.4.1" },
ShortName = "H5.4.1",
Date = "2013-01-18",
Parent = "5.0",
ParentName = "Update 5.0",
ForumLink = "https://forums.warframe.com/topic/5233-54-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20210824205722/https://forums.warframe.com/topic/5233-54-hotfixes/",
ArchiveDate = "2021-08-24",
Timestamp = 1358569396
},
{
Name = "Hotfix 5.4.1.5",
Link = "Closed Beta Updates#Hotfix 5.4.1.5",
Aliases = { "5.4.1.5" },
ShortName = "H5.4.1.5",
Date = "2013-01-18",
Parent = "5.0",
ParentName = "Update 5.0",
ForumLink = "https://forums.warframe.com/topic/5233-54-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20210824205722/https://forums.warframe.com/topic/5233-54-hotfixes/",
ArchiveDate = "2021-08-24",
Timestamp = 1358569396
},
{
Name = "Hotfix 5.4.2",
Link = "Closed Beta Updates#Hotfix 5.4.2",
Aliases = { "5.4.2" },
ShortName = "H5.4.2",
Date = "2013-01-23",
Parent = "5.0",
ParentName = "Update 5.0",
ForumLink = "https://forums.warframe.com/topic/6414-hotfix-542-fixin-for-fixes/",
ArchiveLink = "https://web.archive.org/web/20210117134957/https://forums.warframe.com/topic/6414-hotfix-542-fixin-for-fixes/",
ArchiveDate = "2021-01-17",
Timestamp = 1358978581
},
{
Name = "Hotfix 5.4.3",
Link = "Closed Beta Updates#Hotfix 5.4.3",
Aliases = { "5.4.3" },
ShortName = "H5.4.3",
Date = "2013-01-23",
Parent = "5.0",
ParentName = "Update 5.0",
ForumLink = "https://forums.warframe.com/topic/5233-54-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20210117134957/https://forums.warframe.com/topic/6414-hotfix-542-fixin-for-fixes/",
ArchiveDate = "2021-01-17",
Timestamp = 1358978581
},
{
Name = "Update 6.0",
Link = "Closed Beta Updates#Update 6.0",
Aliases = { "6.0", "6", "Update 6" },
ShortName = "U6.0",
Date = "2013-01-29",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/7485-update-6-new-stompin%E2%80%99-grounds/",
ArchiveLink = "https://web.archive.org/web/20220131203851/https://forums.warframe.com/topic/7485-update-6-new-stompin%E2%80%99-grounds/",
ArchiveDate = "2022-01-31",
Timestamp = 1359521540,
Subtitle = "New Stompin' Grounds"
},
{
Name = "Update 6.1",
Link = "Closed Beta Updates#Update 6.1",
Aliases = { "6.1" },
ShortName = "U6.1",
Date = "2013-01-30",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/7727-update-6-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131203908/https://forums.warframe.com/topic/7727-update-6-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1359583530
},
{
Name = "Hotfix 6.1.1",
Link = "Closed Beta Updates#Hotfix 6.1.1",
Aliases = { "6.1.1" },
ShortName = "H6.1.1",
Date = "2013-01-31",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/7727-update-6-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131203908/https://forums.warframe.com/topic/7727-update-6-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1359583530
},
{
Name = "Hotfix 6.1.2",
Link = "Closed Beta Updates#Hotfix 6.1.2",
Aliases = { "6.1.2" },
ShortName = "H6.1.2",
Date = "2013-02-05",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/7727-update-6-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131203908/https://forums.warframe.com/topic/7727-update-6-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1359583530
},
{
Name = "Hotfix 6.1.3",
Link = "Closed Beta Updates#Hotfix 6.1.3",
Aliases = { "6.1.3" },
ShortName = "H6.1.3",
Date = "2013-02-05",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/7727-update-6-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131203908/https://forums.warframe.com/topic/7727-update-6-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1359583530
},
{
Name = "Update 6.2",
Link = "Closed Beta Updates#Update 6.2",
Aliases = { "6.2" },
ShortName = "U6.2",
Date = "2013-02-08",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/9532-update-6-hotfix-62/",
ArchiveLink = "https://web.archive.org/web/20220131204217/https://forums.warframe.com/topic/9532-update-6-hotfix-62/",
ArchiveDate = "2022-01-31",
Timestamp = 1360355881
},
{
Name = "Hotfix 6.2.3",
Link = "Closed Beta Updates#Hotfix 6.2.3",
Aliases = { "6.2.3" },
ShortName = "H6.2.3",
Date = "2013-02-12",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/9532-update-6-hotfix-62/",
ArchiveLink = "https://web.archive.org/web/20220131204217/https://forums.warframe.com/topic/9532-update-6-hotfix-62/",
ArchiveDate = "2022-01-31",
Timestamp = 1360355881
},
{
Name = "Update 6.3",
Link = "Closed Beta Updates#Update 6.3",
Aliases = { "6.3" },
ShortName = "U6.3",
Date = "2013-02-14",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/10762-update-63-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131203859/https://forums.warframe.com/topic/10762-update-63-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1360941700
},
{
Name = "Hotfix 6.3.1",
Link = "Closed Beta Updates#Hotfix 6.3.1",
Aliases = { "6.3.1" },
ShortName = "H6.3.1",
Date = "2013-02-15",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/10762-update-63-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131203859/https://forums.warframe.com/topic/10762-update-63-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1360941700
},
{
Name = "Hotfix 6.3.2",
Link = "Closed Beta Updates#Hotfix 6.3.2",
Aliases = { "6.3.2" },
ShortName = "H6.3.2",
Date = "2013-02-15",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/10762-update-63-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131203859/https://forums.warframe.com/topic/10762-update-63-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1360941700
},
{
Name = "Hotfix 6.3.3",
Link = "Closed Beta Updates#Hotfix 6.3.3",
Aliases = { "6.3.3" },
ShortName = "H6.3.3",
Date = "2013-02-15",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/10762-update-63-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131203859/https://forums.warframe.com/topic/10762-update-63-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1360941700
},
{
Name = "Hotfix 6.3.4",
Link = "Closed Beta Updates#Hotfix 6.3.4",
Aliases = { "6.3.4" },
ShortName = "H6.3.4",
Date = "2013-02-19",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/10762-update-63-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131203859/https://forums.warframe.com/topic/10762-update-63-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1360941700
},
{
Name = "Update 6.4",
Link = "Closed Beta Updates#Update 6.4",
Aliases = { "6.4" },
ShortName = "U6.4",
Date = "2013-02-22",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/12232-update-64-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131204433/https://forums.warframe.com/topic/12232-update-64-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1361565658
},
{
Name = "Hotfix 6.4.1",
Link = "Closed Beta Updates#Hotfix 6.4.1",
Aliases = { "6.4.1" },
ShortName = "H6.4.1",
Date = "2013-02-22",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/12232-update-64-hotfixes/page/4/?tab=comments#comment-101407",
ArchiveLink = "https://web.archive.org/web/20220131204549/https://forums.warframe.com/topic/12232-update-64-hotfixes/page/4/?tab=comments",
ArchiveDate = "2022-01-31",
Timestamp = 1361578412
},
{
Name = "Hotfix 6.4.2",
Link = "Closed Beta Updates#Hotfix 6.4.2",
Aliases = { "6.4.2" },
ShortName = "H6.4.2",
Date = "2013-02-23",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/12232-update-64-hotfixes/page/9/?tab=comments#comment-103141",
ArchiveLink = "https://web.archive.org/web/20220131204329/https://forums.warframe.com/topic/12232-update-64-hotfixes/page/9/?tab=comments",
ArchiveDate = "2022-01-31",
Timestamp = 1361646516
},
{
Name = "Update 6.5",
Link = "Closed Beta Updates#Update 6.5",
Aliases = { "6.5" },
ShortName = "U6.5",
Date = "2013-02-22",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/13457-update-65-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131204749/https://forums.warframe.com/topic/13457-update-65-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1362166894
},
{
Name = "Hotfix 6.5.1",
Link = "Closed Beta Updates#Hotfix 6.5.1",
Aliases = { "6.5.1" },
ShortName = "H6.5.1",
Date = "2013-02-22",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/13457-update-65-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131204749/https://forums.warframe.com/topic/13457-update-65-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1362166894
},
{
Name = "Hotfix 6.5.2",
Link = "Closed Beta Updates#Hotfix 6.5.2",
Aliases = { "6.5.2" },
ShortName = "H6.5.2",
Date = "2013-02-22",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/13457-update-65-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131204749/https://forums.warframe.com/topic/13457-update-65-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1362166894
},
{
Name = "Hotfix 6.5.3",
Link = "Closed Beta Updates#Hotfix 6.5.3",
Aliases = { "6.5.3" },
ShortName = "H6.5.3",
Date = "2013-03-08",
Parent = "6.0",
ParentName = "Update 6.0",
ForumLink = "https://forums.warframe.com/topic/13457-update-65-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131204749/https://forums.warframe.com/topic/13457-update-65-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1362166894
},
{
Name = "Update 7.0",
Link = "Update 7#Update 7",
Aliases = { "7", "7.0", "Update 7" },
ShortName = "U7",
Date = "2013-03-18",
Parent = "7.0",
ParentName = "Updates 7.0 - 7.6",
ForumLink = "https://forums.warframe.com/topic/15533-update-7-stormbringer/",
ArchiveLink = "https://web.archive.org/web/20220131194002/https://forums.warframe.com/topic/15533-update-7-stormbringer/",
ArchiveDate = "2022-01-31",
Timestamp = 1363638096,
Subtitle = "Stormbringer"
},
{
Name = "Update 7.1",
Link = "Update 7#Update 7.1",
Aliases = { "7.1" },
ShortName = "U7.1",
Date = "2013-03-19",
Parent = "7.0",
ParentName = "Updates 7.0 - 7.6",
ForumLink = "https://forums.warframe.com/topic/16058-update-71-hot-fixes/",
ArchiveLink = "https://web.archive.org/web/20220131194002/https://forums.warframe.com/topic/16058-update-71-hot-fixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1363725409
},
{
Name = "Update 7.2",
Link = "Update 7#Update 7.2",
Aliases = { "7.2" },
ShortName = "U7.2",
Date = "2013-03-22",
Parent = "7.0",
ParentName = "Updates 7.0 - 7.6",
ForumLink = "https://forums.warframe.com/topic/17320-update-72-hot-fixes/",
ArchiveLink = "https://web.archive.org/web/20220131193932/https://forums.warframe.com/topic/17320-update-72-hot-fixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1363994051
},
{
Name = "Update 7.x Weapon Balance",
Link = "Update 7#Update 7.x Weapon Balance",
Aliases = { "Weapon Balance", "7.x Weapon Balance", "WB", "Update 7.x", "7.x", "7.2.5", "Weapon Balance (UD7.x)" },
ShortName = "U7.2.5",
Date = "2013-03-22",
Parent = "7.0",
ParentName = "Updates 7.0 - 7.6",
ForumLink = "https://forums.warframe.com/topic/17356-update-7x-weapon-balance-notes/",
ArchiveLink = "https://web.archive.org/web/20220131194025/https://forums.warframe.com/topic/17356-update-7x-weapon-balance-notes/",
ArchiveDate = "2022-01-31",
Timestamp = 1364000363,
Subtitle = "Weapon Balance Changes"
},
{
Name = "Update 7.3",
Link = "Update 7#Update 7.3",
Aliases = { "7.3" },
ShortName = "U7.3",
Date = "2013-03-25",
Parent = "7.0",
ParentName = "Updates 7.0 - 7.6",
ForumLink = "https://forums.warframe.com/topic/18186-update-73-hot-fixes/",
ArchiveLink = "https://web.archive.org/web/20220131194330/https://forums.warframe.com/topic/18186-update-73-hot-fixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1364229486
},
{
Name = "Update 7.4",
Link = "Update 7#Update 7.4",
Aliases = { "7.4" },
ShortName = "U7.4",
Date = "2013-03-27",
Parent = "7.0",
ParentName = "Updates 7.0 - 7.6",
ForumLink = "https://forums.warframe.com/topic/18910-update-74-hot-fixes/",
ArchiveLink = "https://web.archive.org/web/20220131194349/https://forums.warframe.com/topic/18910-update-74-hot-fixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1364394865
},
{
Name = "Update 7.5",
Link = "Update 7#Update 7.5",
Aliases = { "7.5" },
ShortName = "U7.5",
Date = "2013-03-28",
Parent = "7.0",
ParentName = "Updates 7.0 - 7.6",
ForumLink = "https://forums.warframe.com/topic/19537-update-75-easter-and-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131194326/https://forums.warframe.com/topic/19537-update-75-easter-and-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1364507653,
Subtitle = "Easter And Hotfixes!"
},
{
Name = "Update 7.6",
Link = "Update 7#Update 7.6",
Aliases = { "7.6" },
ShortName = "U7.6",
Date = "2013-04-01",
Parent = "7.0",
ParentName = "Updates 7.0 - 7.6",
ForumLink = "https://forums.warframe.com/topic/21404-update-76-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131194329/https://forums.warframe.com/topic/21404-update-76-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1364851452
},
{
Name = "Hotfix 7.6.1",
Link = "Update 7#Hotfix 7.6.1",
Aliases = { "7.6.1" },
ShortName = "H7.6.1",
Date = "2013-04-01",
Parent = "7.0",
ParentName = "Updates 7.0 - 7.6",
ForumLink = "https://forums.warframe.com/topic/21404-update-76-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131194329/https://forums.warframe.com/topic/21404-update-76-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1364851452
},
{
Name = "Update 7.7",
Link = "Update 7#Update 7.7",
Aliases = { "7.7" },
ShortName = "U7.7",
Date = "2013-04-03",
Parent = "7.7",
ForumLink = "https://forums.warframe.com/topic/22456-update-77-hot-fixes/",
ArchiveLink = "https://web.archive.org/web/20220131194633/https://forums.warframe.com/topic/22456-update-77-hot-fixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1365024918
},
{
Name = "Hotfix 7.7.1",
Link = "Update 7#Hotfix 7.7.1",
Aliases = { "7.7.1" },
ShortName = "H7.7.1",
Date = "2013-04-04",
Parent = "7.7",
ForumLink = "https://forums.warframe.com/topic/23034-771-hot-fix-about-last-night/",
ArchiveLink = "https://web.archive.org/web/20220131194623/https://forums.warframe.com/topic/23034-771-hot-fix-about-last-night/",
ArchiveDate = "2022-01-31",
Timestamp = 1365098055
},
{
Name = "Hotfix 7.7.2",
Link = "Update 7#Hotfix 7.7.2",
Aliases = { "7.7.2" },
ShortName = "H7.7.2",
Date = "2013-04-05",
Parent = "7.7",
ForumLink = "https://forums.warframe.com/topic/23639-update-772-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131194625/https://forums.warframe.com/topic/23639-update-772-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1365186805
},
{
Name = "Hotfix 7.7.3",
Link = "Update 7#Hotfix 7.7.3",
Aliases = { "7.7.3" },
ShortName = "H7.7.3",
Date = "2013-04-12",
Parent = "7.7",
ForumLink = "https://forums.warframe.com/topic/27448-update-773-level-expansions-and-new-weapons/",
ArchiveLink = "https://web.archive.org/web/20220131194703/https://forums.warframe.com/topic/27448-update-773-level-expansions-and-new-weapons/",
ArchiveDate = "2022-01-31",
Timestamp = 1365791456,
Subtitle = "Tenno Reinforcements: Dual Ether, Ether Daggers, and Twin Vipers + Level Expansions!"
},
{
Name = "Hotfix 7.7.4",
Link = "Update 7#Hotfix 7.7.4",
Aliases = { "7.7.4" },
ShortName = "H7.7.4",
Date = "2013-04-15",
Parent = "7.7",
ForumLink = "https://forums.warframe.com/topic/29617-update-774-hotfixes/",
ArchiveLink = "https://web.archive.org/web/20220131194904/https://forums.warframe.com/topic/29617-update-774-hotfixes/",
ArchiveDate = "2022-01-31",
Timestamp = 1366055368
},
{
Name = "Update 7.8",
Link = "Update 7#Update 7.8",
Aliases = { "7.8" },
ShortName = "U7.8",
Date = "2013-04-19",
Parent = "7.8",
ForumLink = "https://forums.warframe.com/topic/31722-update-780/",
ArchiveLink = "https://web.archive.org/web/20220131194915/https://forums.warframe.com/topic/31722-update-780/",
ArchiveDate = "2022-01-31",
Timestamp = 1366406006,
Subtitle = "Tenno Reinforcements: Grakata and Ankyros"
},
{
Name = "Hotfix 7.8.1",
Link = "Update 7#Hotfix 7.8.1",
Aliases = { "7.8.1" },
ShortName = "H7.8.1",
Date = "2013-04-24",
Parent = "7.8",
ForumLink = "https://forums.warframe.com/topic/34366-update-781/",
ArchiveLink = "https://web.archive.org/web/20220131194919/https://forums.warframe.com/topic/34366-update-781/",
ArchiveDate = "2022-01-31",
Timestamp = 1366811235
},
{
Name = "Update 7.9",
Link = "Update 7#Update 7.9",
Aliases = { "7.9" },
ShortName = "U7.9",
Date = "2013-04-26",
Parent = "7.9",
ForumLink = "https://forums.warframe.com/topic/35529-update-790-the-glaive/",
ArchiveLink = "https://web.archive.org/web/20220131194926/https://forums.warframe.com/topic/35529-update-790-the-glaive/",
ArchiveDate = "2022-01-31",
Timestamp = 1367017002,
Subtitle = "Tenno Reinforcement: The Glaive"
},
{
Name = "Update 7.10",
Link = "Update 7#Update 7.10",
Aliases = { "7.10" },
ShortName = "U7.10",
Date = "2013-05-03",
Parent = "7.10",
ForumLink = "https://forums.warframe.com/topic/39130-update-7100-weekend-extermination-event/",
ArchiveLink = "https://web.archive.org/web/20220131195122/https://forums.warframe.com/topic/39130-update-7100-weekend-extermination-event/",
ArchiveDate = "2022-01-31",
Timestamp = 1367634536,
Subtitle = "Weekend Extermination Event!"
},
{
Name = "Hotfix 7.10.1",
Link = "Update 7#Hotfix 7.10.1",
Aliases = { "7.10.1" },
ShortName = "H7.10.1",
Date = "2013-05-06",
Parent = "7.10",
ForumLink = "https://forums.warframe.com/topic/40608-hotfix-7101/",
ArchiveLink = "https://web.archive.org/web/20220131195133/https://forums.warframe.com/topic/40608-hotfix-7101/",
ArchiveDate = "2022-01-31",
Timestamp = 1367861327
},
{
Name = "Hotfix 7.10.2",
Link = "Update 7#Hotfix 7.10.2",
Aliases = { "7.10.2" },
ShortName = "H7.10.2",
Date = "2013-05-08",
Parent = "7.10",
ForumLink = "https://forums.warframe.com/topic/41635-hotfix-7102/",
ArchiveLink = "https://web.archive.org/web/20220131195156/https://forums.warframe.com/topic/41635-hotfix-7102/",
ArchiveDate = "2022-01-31",
Timestamp = 1368032087
},
{
Name = "Hotfix 7.10.3",
Link = "Update 7#Hotfix 7.10.3",
Aliases = { "7.10.3" },
ShortName = "H7.10.3",
Date = "2013-05-09",
Parent = "7.10",
ForumLink = "https://forums.warframe.com/topic/42229-hotfix-7103-hotfix-7104/",
ArchiveLink = "https://web.archive.org/web/20220131195157/https://forums.warframe.com/topic/42229-hotfix-7103-hotfix-7104/",
ArchiveDate = "2022-01-31",
Timestamp = 1368120268
},
{
Name = "Hotfix 7.10.3.5",
Link = "Update 7#Hotfix 7.10.3.5",
Aliases = { "7.10.3.5" },
ShortName = "H7.10.3.5",
Date = "2013-05-10",
Parent = "7.10",
ForumLink = "https://forums.warframe.com/topic/42229-hotfix-7103-hotfix-7104/",
ArchiveLink = "https://web.archive.org/web/20220131195157/https://forums.warframe.com/topic/42229-hotfix-7103-hotfix-7104/",
ArchiveDate = "2022-01-31",
Timestamp = 1368120268
},
{
Name = "Hotfix 7.10.4",
Link = "Update 7#Hotfix 7.10.4",
Aliases = { "7.10.4" },
ShortName = "H7.10.4",
Date = "2013-05-10",
Parent = "7.10",
ForumLink = "https://forums.warframe.com/topic/42229-hotfix-7103-hotfix-7104/",
ArchiveLink = "https://web.archive.org/web/20220131195157/https://forums.warframe.com/topic/42229-hotfix-7103-hotfix-7104/",
ArchiveDate = "2022-01-31",
Timestamp = 1368120268
},
{
Name = "Hotfix 7.10.5",
Link = "Update 7#Hotfix 7.10.5",
Aliases = { "7.10.5" },
ShortName = "H7.10.5",
Date = "2013-05-13",
Parent = "7.10",
ForumLink = "https://forums.warframe.com/topic/44230-hotfix-7105-hotfix-7106-7107/",
ArchiveLink = "https://web.archive.org/web/20220131200404/https://forums.warframe.com/topic/44230-hotfix-7105-hotfix-7106-7107/",
ArchiveDate = "2022-01-31",
Timestamp = 1368477682
},
{
Name = "Hotfix 7.10.6",
Link = "Update 7#Hotfix 7.10.6",
Aliases = { "7.10.6" },
ShortName = "H7.10.6",
Date = "2013-05-14",
Parent = "7.10",
ForumLink = "https://forums.warframe.com/topic/44230-hotfix-7105-hotfix-7106-7107/",
ArchiveLink = "https://web.archive.org/web/20220131200404/https://forums.warframe.com/topic/44230-hotfix-7105-hotfix-7106-7107/",
ArchiveDate = "2022-01-31",
Timestamp = 1368477682
},
{
Name = "Hotfix 7.10.7",
Link = "Update 7#Hotfix 7.10.7",
Aliases = { "7.10.7" },
ShortName = "H7.10.7",
Date = "2013-05-15",
Parent = "7.10",
ForumLink = "https://forums.warframe.com/topic/44230-hotfix-7105-hotfix-7106-7107/",
ArchiveLink = "https://web.archive.org/web/20220131200404/https://forums.warframe.com/topic/44230-hotfix-7105-hotfix-7106-7107/",
ArchiveDate = "2022-01-31",
Timestamp = 1368477682
},
{
Name = "Update 7.11",
Link = "Update 7#Update 7.11",
Aliases = { "7.11" },
ShortName = "U7.11",
Date = "2013-05-17",
Parent = "7.11",
ForumLink = "https://forums.warframe.com/topic/45777-update-7110-vauban/",
ArchiveLink = "https://web.archive.org/web/20220131201855/https://forums.warframe.com/topic/45777-update-7110-vauban/",
ArchiveDate = "2022-01-31",
Timestamp = 1368823770,
Subtitle = "Vauban!"
},
{
Name = "Update 8.0",
Link = "Update 8#Update 8.0",
Aliases = { "8", "8.0", "Update 8" },
ShortName = "U8.0",
Date = "2013-05-23",
Parent = "8.0",
ForumLink = "https://forums.warframe.com/topic/49101-update-8-rise-of-the-warlords/",
ArchiveLink = "https://web.archive.org/web/20220131035042/https://forums.warframe.com/topic/49101-update-8-rise-of-the-warlords/",
ArchiveDate = "2022-01-31",
Timestamp = 1369347222,
Subtitle = "Rise Of The Warlords"
},
{
Name = "Hotfix 8.0.1",
Link = "Update 8#Hotfix 8.0.1",
Aliases = { "8.0.1" },
ShortName = "H8.0.1",
Date = "2013-05-23",
Parent = "8.0",
ForumLink = "https://forums.warframe.com/topic/49101-update-8-rise-of-the-warlords/",
ArchiveLink = "https://web.archive.org/web/20220131035042/https://forums.warframe.com/topic/49101-update-8-rise-of-the-warlords/",
ArchiveDate = "2022-01-31",
Timestamp = 1369347222
},
{
Name = "Hotfix 8.0.2",
Link = "Update 8#Hotfix 8.0.2",
Aliases = { "8.0.2" },
ShortName = "H8.0.2",
Date = "2013-05-24",
Parent = "8.0",
ForumLink = "https://forums.warframe.com/topic/49393-hotfix-802-comin-in-hot/",
ArchiveLink = "https://web.archive.org/web/20220131035058/https://forums.warframe.com/topic/49393-hotfix-802-comin-in-hot/",
ArchiveDate = "2022-01-31",
Timestamp = 1369356589,
Subtitle = "Comin' In Hot!"
},
{
Name = "Hotfix 8.0.3",
Link = "Update 8#Hotfix 8.0.3",
Aliases = { "8.0.3" },
ShortName = "H8.0.3",
Date = "2013-05-24",
Parent = "8.0",
ForumLink = "https://forums.warframe.com/topic/49588-hotfix-803-some-like-it-hotter/",
ArchiveLink = "https://web.archive.org/web/20220131035411/https://forums.warframe.com/topic/49588-hotfix-803-some-like-it-hotter/",
ArchiveDate = "2022-01-31",
Timestamp = 1369363676,
Subtitle = "Some Like It Hotter!"
},
{
Name = "Hotfix 8.0.4",
Link = "Update 8#Hotfix 8.0.4",
Aliases = { "8.0.4" },
ShortName = "H8.0.4",
Date = "2013-05-24",
Parent = "8.0",
ForumLink = "https://forums.warframe.com/topic/50567-hotfix-804-hit-me-with-your-best-hotfix/",
ArchiveLink = "https://web.archive.org/web/20220131035437/https://forums.warframe.com/topic/50567-hotfix-804-hit-me-with-your-best-hotfix/",
ArchiveDate = "2022-01-31",
Timestamp = 1369436042,
Subtitle = "Hit Me With Your Best Hot(Fix)"
},
{
Name = "Hotfix 8.0.5",
Link = "Update 8#Hotfix 8.0.5",
Aliases = { "8.0.5" },
ShortName = "H8.0.5",
Date = "2013-05-29",
Parent = "8.0",
ForumLink = "https://forums.warframe.com/topic/53908-805-its-getting-hotfix-in-here/",
ArchiveLink = "https://web.archive.org/web/20220131035539/https://forums.warframe.com/topic/53908-805-its-getting-hotfix-in-here/",
ArchiveDate = "2022-01-31",
Timestamp = 1369778997,
Subtitle = "It's Getting Hot(Fix) In Here"
},
{
Name = "Hotfix 8.0.5.1",
Link = "Update 8#Hotfix 8.0.5.1",
Aliases = { "8.0.5.1" },
ShortName = "H8.0.5.1",
Date = "2013-05-29",
Parent = "8.0",
ForumLink = "https://forums.warframe.com/topic/53908-805-its-getting-hotfix-in-here/",
ArchiveLink = "https://web.archive.org/web/20220131035539/https://forums.warframe.com/topic/53908-805-its-getting-hotfix-in-here/",
ArchiveDate = "2022-01-31",
Timestamp = 1369799700
},
{
Name = "Hotfix 8.0.6",
Link = "Update 8#Hotfix 8.0.6",
Aliases = { "8.0.6" },
ShortName = "H8.0.6",
Date = "2013-05-31",
Parent = "8.0",
ForumLink = "https://forums.warframe.com/topic/56204-hotfix-806/",
ArchiveLink = "https://web.archive.org/web/20220131035748/https://forums.warframe.com/topic/56204-hotfix-806/",
ArchiveDate = "2022-01-31",
Timestamp = 1370029946
},
{
Name = "Hotfix 8.0.6.1",
Link = "Update 8#Hotfix 8.0.6.1",
Aliases = { "8.0.6.1" },
ShortName = "H8.0.6.1",
Date = "2013-05-31",
Parent = "8.0",
ForumLink = "https://forums.warframe.com/topic/56204-hotfix-806/",
ArchiveLink = "https://web.archive.org/web/20220131035748/https://forums.warframe.com/topic/56204-hotfix-806/",
ArchiveDate = "2022-01-31",
Timestamp = 1370041800
},
{
Name = "Hotfix 8.0.7",
Link = "Update 8#Hotfix 8.0.7",
Aliases = { "8.0.7" },
ShortName = "H8.0.7",
Date = "2013-06-06",
Parent = "8.0",
ForumLink = "https://forums.warframe.com/topic/59853-hotfix-807/",
ArchiveLink = "https://web.archive.org/web/20220131040117/https://forums.warframe.com/topic/59853-hotfix-807/",
ArchiveDate = "2022-01-31",
Timestamp = 1370531480
},
{
Name = "Hotfix 8.0.7.1",
Link = "Update 8#Hotfix 8.0.7.1",
Aliases = { "8.0.7.1" },
ShortName = "H8.0.7.1",
Date = "2013-06-07",
Parent = "8.0",
ForumLink = "https://forums.warframe.com/topic/60106-hotfix-8071/",
ArchiveLink = "https://web.archive.org/web/20220131040048/https://forums.warframe.com/topic/60106-hotfix-8071/",
ArchiveDate = "2022-01-31",
Timestamp = 1370553014
},
{
Name = "Update 8.1",
Link = "Update 8#Update 8.1",
Aliases = { "8.1", "8.1.0" },
ShortName = "U8.1",
Date = "2013-06-07",
Parent = "8.1",
ForumLink = "https://forums.warframe.com/topic/60679-hotfix-810/",
ArchiveLink = "https://web.archive.org/web/20220131040222/https://forums.warframe.com/topic/60679-hotfix-810/",
ArchiveDate = "2022-01-31",
Timestamp = 1370639424,
Subtitle = "Tenno Reinforcements: Kestrel and Orthos"
},
{
Name = "Hotfix 8.1.1",
Link = "Update 8#Hotfix 8.1.1",
Aliases = { "8.1.1" },
ShortName = "H8.1.1",
Date = "2013-06-10",
Parent = "8.1",
ForumLink = "https://forums.warframe.com/topic/62817-hotfix-811/",
ArchiveLink = "https://web.archive.org/web/20220131040218/https://forums.warframe.com/topic/62817-hotfix-811/",
ArchiveDate = "2022-01-31",
Timestamp = 1370889752
},
{
Name = "Hotfix 8.1.2",
Link = "Update 8#Hotfix 8.1.2",
Aliases = { "8.1.2" },
ShortName = "H8.1.2",
Date = "2013-06-13",
Parent = "8.1",
ForumLink = "https://forums.warframe.com/topic/64338-hotfix-812/",
ArchiveLink = "https://web.archive.org/web/20220131040256/https://forums.warframe.com/topic/64338-hotfix-812/",
ArchiveDate = "2022-01-31",
Timestamp = 1371132172
},
{
Name = "Hotfix 8.1.3",
Link = "Update 8#Hotfix 8.1.3",
Aliases = { "8.1.3" },
ShortName = "H8.1.3",
Date = "2013-06-19",
Parent = "8.1",
ForumLink = "https://forums.warframe.com/topic/66795-hotfix-813/",
ArchiveLink = "https://web.archive.org/web/20220131040304/https://forums.warframe.com/topic/66795-hotfix-813/",
ArchiveDate = "2022-01-31",
Timestamp = 1371649431
},
{
Name = "Hotfix 8.1.4",
Link = "Update 8#Hotfix 8.1.4",
Aliases = { "8.1.4" },
ShortName = "H8.1.4",
Date = "2013-06-21",
Parent = "8.1",
ForumLink = "https://forums.warframe.com/topic/67864-hotfix-814/",
ArchiveLink = "https://web.archive.org/web/20220131040451/https://forums.warframe.com/topic/67864-hotfix-814/",
ArchiveDate = "2022-01-31",
Timestamp = 1371824864
},
{
Name = "Hotfix 8.1.5",
Link = "Update 8#Hotfix 8.1.5",
Aliases = { "8.1.5" },
ShortName = "H8.1.5",
Date = "2013-06-21",
Parent = "8.1",
ForumLink = "https://forums.warframe.com/topic/68042-hotfix-815/",
ArchiveLink = "https://web.archive.org/web/20220131040500/https://forums.warframe.com/topic/68042-hotfix-815/",
ArchiveDate = "2022-01-31",
Timestamp = 1371847810
},
{
Name = "Hotfix 8.1.6",
Link = "Update 8#Hotfix 8.1.6",
Aliases = { "8.1.6" },
ShortName = "H8.1.6",
Date = "2013-06-24",
Parent = "8.1",
ForumLink = "https://forums.warframe.com/topic/69308-hotfix-816/",
ArchiveLink = "https://web.archive.org/web/20220131040658/https://forums.warframe.com/topic/69308-hotfix-816/",
ArchiveDate = "2022-01-31",
Timestamp = 1372106487
},
{
Name = "Hotfix 8.1.7",
Link = "Update 8#Hotfix 8.1.7",
Aliases = { "8.1.7" },
ShortName = "H8.1.7",
Date = "2013-06-26",
Parent = "8.1",
ForumLink = "https://forums.warframe.com/topic/70155-hotfix-817-chat-optimizations-and-more/",
ArchiveLink = "https://web.archive.org/web/20220131040640/https://forums.warframe.com/topic/70155-hotfix-817-chat-optimizations-and-more/",
ArchiveDate = "2022-01-31",
Timestamp = 1372276089,
Subtitle = "Chat Optimizations And More!"
},
{
Name = "Update 8.2",
Link = "Update 8#Update 8.2",
Aliases = { "8.2" },
ShortName = "U8.2",
Date = "2013-06-28",
Parent = "8.2",
ForumLink = "https://forums.warframe.com/topic/70880-hotfix-82-tenno-reinforcement/",
ArchiveLink = "https://web.archive.org/web/20220131040804/https://forums.warframe.com/topic/70880-hotfix-82-tenno-reinforcement/",
ArchiveDate = "2022-01-31",
Timestamp = 1372439303,
Subtitle = "Tenno Reinforcement: Kogake"
},
{
Name = "Hotfix 8.2.1",
Link = "Update 8#Hotfix 8.2.1",
Aliases = { "8.2.1" },
ShortName = "H8.2.1",
Date = "2013-07-03",
Parent = "8.2",
ForumLink = "https://forums.warframe.com/topic/72746-hotfix-821/",
ArchiveLink = "https://web.archive.org/web/20220131040742/https://forums.warframe.com/topic/72746-hotfix-821/",
ArchiveDate = "2022-01-31",
Timestamp = 1372873514
},
{
Name = "Update 8.3",
Link = "Update 8#Update 8.3",
Aliases = { "8.3" },
ShortName = "U8.3",
Date = "2013-07-04",
Parent = "8.3",
ForumLink = "https://forums.warframe.com/topic/73282-hotfix-83/",
ArchiveLink = "https://web.archive.org/web/20220131040843/https://forums.warframe.com/topic/73282-hotfix-83/",
ArchiveDate = "2022-01-31",
Timestamp = 1372977950
},
{
Name = "Hotfix 8.3.1",
Link = "Update 8#Hotfix 8.3.1",
Aliases = { "8.3.1" },
ShortName = "H8.3.1",
Date = "2013-07-05",
Parent = "8.3",
ForumLink = "https://forums.warframe.com/topic/74108-hotfix-831/",
ArchiveLink = "https://web.archive.org/web/20220131040929/https://forums.warframe.com/topic/74108-hotfix-831/",
ArchiveDate = "2022-01-31",
Timestamp = 1373065832
},
{
Name = "Hotfix 8.3.2",
Link = "Update 8#Hotfix 8.3.2",
Aliases = { "8.3.2" },
ShortName = "H8.3.2",
Date = "2013-07-08",
Parent = "8.3",
ForumLink = "https://forums.warframe.com/topic/75604-hotfix-832/",
ArchiveLink = "https://web.archive.org/web/20220131040941/https://forums.warframe.com/topic/75604-hotfix-832/",
ArchiveDate = "2022-01-31",
Timestamp = 1373309368
},
{
Name = "Hotfix 8.3.3",
Link = "Update 8#Hotfix 8.3.3",
Aliases = { "8.3.3" },
ShortName = "H8.3.3",
Date = "2013-07-09",
Parent = "8.3",
ForumLink = "https://forums.warframe.com/topic/76141-hotfix-833/",
ArchiveLink = "https://web.archive.org/web/20220131041026/https://forums.warframe.com/topic/76141-hotfix-833/",
ArchiveDate = "2022-01-31",
Timestamp = 1373391808
},
{
Name = "Update 9.0",
Link = "Update 9#Update 9.0",
Aliases = { "Update 9", "9", "9.0" },
ShortName = "U9.0",
Date = "2013-07-13",
Parent = "9.0",
ForumLink = "https://forums.warframe.com/topic/77575-update-9-vors-revenge/",
ArchiveLink = "https://web.archive.org/web/20220130011722/https://forums.warframe.com/topic/77575-update-9-vors-revenge/",
ArchiveDate = "2022-01-30",
Timestamp = 1373680361,
Subtitle = "Vor's Revenge"
},
{
Name = "Update 9.1",
Link = "Update 9#Update 9.1",
Aliases = { "9.1" },
ShortName = "U9.1",
Date = "2013-07-14",
Parent = "9.1",
ForumLink = "https://forums.warframe.com/topic/78040-hotfix-91/",
ArchiveLink = "https://web.archive.org/web/20220130011504/https://forums.warframe.com/topic/78040-hotfix-91/",
ArchiveDate = "2022-01-30",
Timestamp = 1373701677
},
{
Name = "Hotfix 9.1.1",
Link = "Update 9#Hotfix 9.1.1",
Aliases = { "9.1.1" },
ShortName = "H9.1.1",
Date = "2013-07-15",
Parent = "9.1",
ForumLink = "https://forums.warframe.com/topic/80292-hotfix-911/",
ArchiveLink = "https://web.archive.org/web/20220130011500/https://forums.warframe.com/topic/80292-hotfix-911/",
ArchiveDate = "2022-01-30",
Timestamp = 1373927347
},
{
Name = "Hotfix 9.1.2",
Link = "Update 9#Hotfix 9.1.2",
Aliases = { "9.1.2" },
ShortName = "H9.1.2",
Date = "2013-07-15",
Parent = "9.1",
ForumLink = "https://forums.warframe.com/topic/80366-hotfix-912/",
ArchiveLink = "https://web.archive.org/web/20220130011455/https://forums.warframe.com/topic/80366-hotfix-912/",
ArchiveDate = "2022-01-30",
Timestamp = 1373932548
},
{
Name = "Hotfix 9.1.3",
Link = "Update 9#Hotfix 9.1.3",
Aliases = { "9.1.3" },
ShortName = "H9.1.3",
Date = "2013-07-15",
Parent = "9.1",
ForumLink = "https://forums.warframe.com/topic/80449-hotfix-913/",
ArchiveLink = "https://web.archive.org/web/20220130011454/https://forums.warframe.com/topic/80449-hotfix-913/",
ArchiveDate = "2022-01-30",
Timestamp = 1373939295
},
{
Name = "Hotfix 9.1.4",
Link = "Update 9#Hotfix 9.1.4",
Aliases = { "9.1.4" },
ShortName = "H9.1.4",
Date = "2013-07-16",
Parent = "9.1",
ForumLink = "https://forums.warframe.com/topic/81068-hotfix-914/",
ArchiveLink = "https://web.archive.org/web/20220130011230/https://forums.warframe.com/topic/81068-hotfix-914/",
ArchiveDate = "2022-01-30",
Timestamp = 1374010367
},
{
Name = "Hotfix 9.1.5",
Link = "Update 9#Hotfix 9.1.5",
Aliases = { "9.1.5" },
ShortName = "H9.1.5",
Date = "2013-07-17",
Parent = "9.1",
ForumLink = "https://forums.warframe.com/topic/81860-hotfix-915/",
ArchiveLink = "https://web.archive.org/web/20220130011304/https://forums.warframe.com/topic/81860-hotfix-915/",
ArchiveDate = "2022-01-30",
Timestamp = 1374096496
},
{
Name = "Update 9.2",
Link = "Update 9#Update 9.2",
Aliases = { "9.2.0", "9.2" },
ShortName = "U9.2",
Date = "2013-07-19",
Parent = "9.2",
ForumLink = "https://forums.warframe.com/topic/83114-hotfix-920/",
ArchiveLink = "https://web.archive.org/web/20220130011222/https://forums.warframe.com/topic/83114-hotfix-920/",
ArchiveDate = "2022-01-30",
Timestamp = 1374268163
},
{
Name = "Hotfix 9.2.1",
Link = "Update 9#Hotfix 9.2.1",
Aliases = { "9.2.1" },
ShortName = "H9.2.1",
Date = "2013-07-20",
Parent = "9.2",
ForumLink = "https://forums.warframe.com/topic/83179-hotfix-921/",
ArchiveLink = "https://web.archive.org/web/20220130011218/https://forums.warframe.com/topic/83179-hotfix-921/",
ArchiveDate = "2022-01-30",
Timestamp = 1374273282
},
{
Name = "Hotfix 9.2.2",
Link = "Update 9#Hotfix 9.2.2",
Aliases = { "9.2.2" },
ShortName = "H9.2.2",
Date = "2013-07-24",
Parent = "9.2",
ForumLink = "https://forums.warframe.com/topic/85484-hotfix-922/",
ArchiveLink = "https://web.archive.org/web/20220130010927/https://forums.warframe.com/topic/85484-hotfix-922/",
ArchiveDate = "2022-01-30",
Timestamp = 1374689122
},
{
Name = "Update 9.3",
Link = "Update 9#Update 9.3",
Aliases = { "9.3", "9.3.0" },
ShortName = "U9.3",
Date = "2013-07-26",
Parent = "9.3",
ForumLink = "https://forums.warframe.com/topic/86462-hotfix-93/",
ArchiveLink = "https://web.archive.org/web/20220130010922/https://forums.warframe.com/topic/86462-hotfix-93/",
ArchiveDate = "2022-01-30",
Timestamp = 1374873916,
Subtitle = "Operation Sling-Stone"
},
{
Name = "Hotfix 9.3.1",
Link = "Update 9#Hotfix 9.3.1",
Aliases = { "9.3.1" },
ShortName = "H9.3.1",
Date = "2013-07-26",
Parent = "9.3",
ForumLink = "https://forums.warframe.com/topic/86627-hotfix-931/",
ArchiveLink = "https://web.archive.org/web/20220130010917/https://forums.warframe.com/topic/86627-hotfix-931/",
ArchiveDate = "2022-01-30",
Timestamp = 1374890441
},
{
Name = "Hotfix 9.3.2",
Link = "Update 9#Hotfix 9.3.2",
Aliases = { "9.3.2" },
ShortName = "H9.3.2",
Date = "2013-07-26",
Parent = "9.3",
ForumLink = "https://forums.warframe.com/topic/86723-hotfix-932/",
ArchiveLink = "https://web.archive.org/web/20220130010913/https://forums.warframe.com/topic/86723-hotfix-932/",
ArchiveDate = "2022-01-30",
Timestamp = 1374899307
},
{
Name = "Hotfix 9.3.3",
Link = "Update 9#Hotfix 9.3.3",
Aliases = { "9.3.3" },
ShortName = "H9.3.3",
Date = "2013-07-29",
Parent = "9.3",
ForumLink = "https://forums.warframe.com/topic/87914-hotfix-933/",
ArchiveLink = "https://web.archive.org/web/20220130010545/https://forums.warframe.com/topic/87914-hotfix-933/",
ArchiveDate = "2022-01-30",
Timestamp = 1375115602
},
{
Name = "Hotfix 9.3.4",
Link = "Update 9#Hotfix 9.3.4",
Aliases = { "9.3.4" },
ShortName = "H9.3.4",
Date = "2013-07-29",
Parent = "9.3",
ForumLink = "https://forums.warframe.com/topic/88013-hotfix-934/",
ArchiveLink = "https://web.archive.org/web/20220130010541/https://forums.warframe.com/topic/88013-hotfix-934/",
ArchiveDate = "2022-01-30",
Timestamp = 1375123365
},
{
Name = "Update 9.4",
Link = "Update 9#Update 9.4",
Aliases = { "9.4", "9.4.0" },
ShortName = "U9.4",
Date = "2013-08-02",
Parent = "9.4",
ForumLink = "https://forums.warframe.com/topic/89853-hotfix-94-double-affinity-weekend/",
ArchiveLink = "https://web.archive.org/web/20220130010536/https://forums.warframe.com/topic/89853-hotfix-94-double-affinity-weekend/",
ArchiveDate = "2022-01-30",
Timestamp = 1375461448,
Subtitle = "Double Affinity Weekend!"
},
{
Name = "Hotfix 9.4.1",
Link = "Update 9#Hotfix 9.4.1",
Aliases = { "9.4.1" },
ShortName = "H9.4.1",
Date = "2013-08-02",
Parent = "9.4",
ForumLink = "https://forums.warframe.com/topic/90015-hotfix-941-double-affinity-weekend/",
ArchiveLink = "https://web.archive.org/web/20220130010532/https://forums.warframe.com/topic/90015-hotfix-941-double-affinity-weekend/",
ArchiveDate = "2022-01-30",
Timestamp = 1375483183
},
{
Name = "Update 9.5",
Link = "Update 9#Update 9.5",
Aliases = { "9.5", "9.5.0" },
ShortName = "U9.5",
Date = "2013-08-09",
Parent = "9.5",
ForumLink = "https://forums.warframe.com/topic/92568-update-95-operation-arid-fear/",
ArchiveLink = "https://web.archive.org/web/20220130010404/https://forums.warframe.com/topic/92568-update-95-operation-arid-fear/",
ArchiveDate = "2022-01-30",
Timestamp = 1376083386,
Subtitle = "Operation Arid Fear"
},
{
Name = "Hotfix 9.5.1",
Link = "Update 9#Hotfix 9.5.1",
Aliases = { "9.5.1" },
ShortName = "H9.5.1",
Date = "2013-08-10",
Parent = "9.5",
ForumLink = "https://forums.warframe.com/topic/92756-hotfix-951/",
ArchiveLink = "https://web.archive.org/web/20220130010334/https://forums.warframe.com/topic/92756-hotfix-951/",
ArchiveDate = "2022-01-30",
Timestamp = 1376096455
},
{
Name = "Hotfix 9.5.2",
Link = "Update 9#Hotfix 9.5.2",
Aliases = { "9.5.2" },
ShortName = "H9.5.2",
Date = "2013-08-12",
Parent = "9.5",
ForumLink = "https://forums.warframe.com/topic/94214-hotfix-952/",
ArchiveLink = "https://web.archive.org/web/20220130010330/https://forums.warframe.com/topic/94214-hotfix-952/",
ArchiveDate = "2022-01-30",
Timestamp = 1376337926
},
{
Name = "Hotfix 9.5.3",
Link = "Update 9#Hotfix 9.5.3",
Aliases = { "9.5.3" },
ShortName = "H9.5.3",
Date = "2013-08-14",
Parent = "9.5",
ForumLink = "https://forums.warframe.com/topic/95311-hotfix-953/",
ArchiveLink = "https://web.archive.org/web/20220130010324/https://forums.warframe.com/topic/95311-hotfix-953/",
ArchiveDate = "2022-01-30",
Timestamp = 1376499257
},
{
Name = "Update 9.6",
Link = "Update 9#Update 9.6",
Aliases = { "9.6", "9.6.0" },
ShortName = "U9.6",
Date = "2013-08-16",
Parent = "9.6",
ForumLink = "https://forums.warframe.com/topic/96343-update-96/",
ArchiveLink = "https://web.archive.org/web/20220130010125/https://forums.warframe.com/topic/96343-update-96/",
ArchiveDate = "2022-01-30",
Timestamp = 1376682423,
Subtitle = "Tenno Reinforcements: Hind"
},
{
Name = "Hotfix 9.6.1",
Link = "Update 9#Hotfix 9.6.1",
Aliases = { "9.6.1" },
ShortName = "H9.6.1",
Date = "2013-08-23",
Parent = "9.6",
ForumLink = "https://forums.warframe.com/topic/98468-hotfix-961/",
ArchiveLink = "https://web.archive.org/web/20220130010119/https://forums.warframe.com/topic/98468-hotfix-961/",
ArchiveDate = "2022-01-30",
Timestamp = 1377207744
},
{
Name = "Update 9.7",
Link = "Update 9#Update 9.7",
Aliases = { "9.7", "9.7.0" },
ShortName = "U9.7",
Date = "2013-08-30",
Parent = "9.7",
ForumLink = "https://forums.warframe.com/topic/100482-update-97/",
ArchiveLink = "https://web.archive.org/web/20220130010113/https://forums.warframe.com/topic/100482-update-97/",
ArchiveDate = "2022-01-30",
Timestamp = 1377878466,
Subtitle = "Survival Weekend"
},
{
Name = "Hotfix 9.7.1",
Link = "Update 9#Hotfix 9.7.1",
Aliases = { "9.7.1" },
ShortName = "H9.7.1",
Date = "2013-08-30",
Parent = "9.7",
ForumLink = "https://forums.warframe.com/topic/100556-hotfix-971/",
ArchiveLink = "https://web.archive.org/web/20220130010110/https://forums.warframe.com/topic/100556-hotfix-971/",
ArchiveDate = "2022-01-30",
Timestamp = 1377890586
},
{
Name = "Hotfix 9.7.2",
Link = "Update 9#Hotfix 9.7.2",
Aliases = { "9.7.2" },
ShortName = "H9.7.2",
Date = "2013-09-03",
Parent = "9.7",
ForumLink = "https://forums.warframe.com/topic/101769-hotfix-972-the-reward-ening/",
ArchiveLink = "https://web.archive.org/web/20220129235322/https://forums.warframe.com/topic/101769-hotfix-972-the-reward-ening/",
ArchiveDate = "2022-01-29",
Timestamp = 1378230578,
Subtitle = "The Reward-Ening"
},
{
Name = "Hotfix 9.7.3",
Link = "Update 9#Hotfix 9.7.3",
Aliases = { "9.7.3" },
ShortName = "H9.7.3",
Date = "2013-09-03",
Parent = "9.7",
ForumLink = "https://forums.warframe.com/topic/101864-hotfix-973/",
ArchiveLink = "https://web.archive.org/web/20220129235315/https://forums.warframe.com/topic/101864-hotfix-973/",
ArchiveDate = "2022-01-29",
Timestamp = 1378246716
},
{
Name = "Update 9.8",
Link = "Update 9#Update 9.8",
Aliases = { "9.8", "9.8.0" },
ShortName = "U9.8",
Date = "2013-09-03",
Parent = "9.8",
ForumLink = "https://forums.warframe.com/topic/102835-update-98/",
ArchiveLink = "https://web.archive.org/web/20220129235256/https://forums.warframe.com/topic/102835-update-98/",
ArchiveDate = "2022-01-29",
Timestamp = 1378492221
},
{
Name = "Hotfix 9.8.1",
Link = "Update 9#Hotfix 9.8.1",
Aliases = { "9.8.1" },
ShortName = "H9.8.1",
Date = "2013-09-03",
Parent = "9.8",
ForumLink = "https://forums.warframe.com/topic/102978-hotfix-981/",
ArchiveLink = "https://web.archive.org/web/20220129235252/https://forums.warframe.com/topic/102978-hotfix-981/",
ArchiveDate = "2022-01-29",
Timestamp = 1378508289
},
{
Name = "Hotfix 9.8.2",
Link = "Update 9#Hotfix 9.8.2",
Aliases = { "9.8.2" },
ShortName = "H9.8.2",
Date = "2013-09-03",
Parent = "9.8",
ForumLink = "https://forums.warframe.com/topic/102999-hotfix-982/",
ArchiveLink = "https://web.archive.org/web/20220129234918/https://forums.warframe.com/topic/102999-hotfix-982/",
ArchiveDate = "2022-01-29",
Timestamp = 1378510147
},
{
Name = "Hotfix 9.8.3",
Link = "Update 9#Hotfix 9.8.3",
Aliases = { "9.8.3" },
ShortName = "H9.8.3",
Date = "2013-09-07",
Parent = "9.8",
ForumLink = "https://forums.warframe.com/topic/103384-hotfix-983/",
ArchiveLink = "https://web.archive.org/web/20220129234846/https://forums.warframe.com/topic/103384-hotfix-983/",
ArchiveDate = "2022-01-29",
Timestamp = 1378571738
},
{
Name = "Hotfix 9.8.4",
Link = "Update 9#Hotfix 9.8.4",
Aliases = { "9.8.4" },
ShortName = "H9.8.4",
Date = "2013-09-09",
Parent = "9.8",
ForumLink = "https://forums.warframe.com/topic/104222-hotfix-984/",
ArchiveLink = "https://web.archive.org/web/20220129234854/https://forums.warframe.com/topic/104222-hotfix-984/",
ArchiveDate = "2022-01-29",
Timestamp = 1378751433
},
{
Name = "Hotfix 9.8.5",
Link = "Update 9#Hotfix 9.8.5",
Aliases = { "9.8.5" },
ShortName = "H9.8.5",
Date = "2013-09-09",
Parent = "9.8",
ForumLink = "https://forums.warframe.com/topic/104304-hotfix-985/",
ArchiveLink = "https://web.archive.org/web/20220129234831/https://forums.warframe.com/topic/104304-hotfix-985/",
ArchiveDate = "2022-01-29",
Timestamp = 1378765270
},
{
Name = "Update 10.0",
Link = "Update 10#Update 10.0",
Aliases = { "Update 10", "10", "10.0" },
ShortName = "U10.0",
Date = "2013-09-13",
Parent = "10.0",
ForumLink = "https://forums.warframe.com/topic/105648-update-10-shadows-of-the-dead/",
ArchiveLink = "https://web.archive.org/web/20220129223938/https://forums.warframe.com/topic/105648-update-10-shadows-of-the-dead/",
ArchiveDate = "2022-01-29",
Timestamp = 1379122770,
Subtitle = "Shadows Of The Dead"
},
{
Name = "Hotfix 10.0.1",
Link = "Update 10#Hotfix 10.0.1",
Aliases = { "10.0.1" },
ShortName = "H10.0.1",
Date = "2013-09-14",
Parent = "10.0",
ForumLink = "https://forums.warframe.com/topic/105954-hotfix-1001/",
ArchiveLink = "https://web.archive.org/web/20220129223952/https://forums.warframe.com/topic/105954-hotfix-1001/",
ArchiveDate = "2022-01-29",
Timestamp = 1379135548
},
{
Name = "Hotfix 10.0.2",
Link = "Update 10#Hotfix 10.0.2",
Aliases = { "10.0.2" },
ShortName = "H10.0.2",
Date = "2013-09-14",
Parent = "10.0",
ForumLink = "https://forums.warframe.com/topic/106032-hotfix-1002/",
ArchiveLink = "https://web.archive.org/web/20220129223958/https://forums.warframe.com/topic/106032-hotfix-1002/",
ArchiveDate = "2022-01-29",
Timestamp = 1379139666
},
{
Name = "Hotfix 10.0.3",
Link = "Update 10#Hotfix 10.0.3",
Aliases = { "10.0.3" },
ShortName = "H10.0.3",
Date = "2013-09-14",
Parent = "10.0",
ForumLink = "https://forums.warframe.com/topic/106722-hotfix-1003/",
ArchiveLink = "https://web.archive.org/web/20220129224020/https://forums.warframe.com/topic/106722-hotfix-1003/",
ArchiveDate = "2022-01-29",
Timestamp = 1379195665
},
{
Name = "Hotfix 10.0.4",
Link = "Update 10#Hotfix 10.0.4",
Aliases = { "10.0.4" },
ShortName = "H10.0.4",
Date = "2013-09-17",
Parent = "10.0",
ForumLink = "https://forums.warframe.com/topic/108751-hotfix-1004/",
ArchiveLink = "https://web.archive.org/web/20220129224449/https://forums.warframe.com/topic/108751-hotfix-1004/",
ArchiveDate = "2022-01-29",
Timestamp = 1379450816
},
{
Name = "Hotfix 10.0.5",
Link = "Update 10#Hotfix 10.0.5",
Aliases = { "10.0.5" },
ShortName = "H10.0.5",
Date = "2013-09-18",
Parent = "10.0",
ForumLink = "https://forums.warframe.com/topic/109386-hotfix-1005-hotfix-1006/",
ArchiveLink = "https://web.archive.org/web/20220129224450/https://forums.warframe.com/topic/109386-hotfix-1005-hotfix-1006/",
ArchiveDate = "2022-01-29",
Timestamp = 1379539029
},
{
Name = "Hotfix 10.0.6",
Link = "Update 10#Hotfix 10.0.6",
Aliases = { "10.0.6" },
ShortName = "H10.0.6",
Date = "2013-09-18",
Parent = "10.0",
ForumLink = "https://forums.warframe.com/topic/109386-hotfix-1005-hotfix-1006/",
ArchiveLink = "https://web.archive.org/web/20220129224450/https://forums.warframe.com/topic/109386-hotfix-1005-hotfix-1006/",
ArchiveDate = "2022-01-29",
Timestamp = 1379539029
},
{
Name = "Hotfix 10.0.7",
Link = "Update 10#Hotfix 10.0.7",
Aliases = { "10.0.7" },
ShortName = "H10.0.7",
Date = "2013-09-19",
Parent = "10.0",
ForumLink = "https://forums.warframe.com/topic/110005-hotfix-1007/",
ArchiveLink = "https://web.archive.org/web/20220129224459/https://forums.warframe.com/topic/110005-hotfix-1007/",
ArchiveDate = "2022-01-29",
Timestamp = 1379628218
},
{
Name = "Update 10.1",
Link = "Update 10#Update 10.1",
Aliases = { "10.1.0", "10.1" },
ShortName = "U10.1",
Date = "2013-09-20",
Parent = "10.1",
ForumLink = "https://forums.warframe.com/topic/110525-update-1010/",
ArchiveLink = "https://web.archive.org/web/20220129224508/https://forums.warframe.com/topic/110525-update-1010/",
ArchiveDate = "2022-01-29",
Timestamp = 1379708136
},
{
Name = "Hotfix 10.1.1",
Link = "Update 10#Hotfix 10.1.1",
Aliases = { "10.1.1" },
ShortName = "H10.1.1",
Date = "2013-09-23",
Parent = "10.1",
ForumLink = "https://forums.warframe.com/topic/112182-update-1011/",
ArchiveLink = "https://web.archive.org/web/20220129224802/https://forums.warframe.com/topic/112182-update-1011/",
ArchiveDate = "2022-01-29",
Timestamp = 1379974426
},
{
Name = "Hotfix 10.1.2",
Link = "Update 10#Hotfix 10.1.2",
Aliases = { "10.1.2" },
ShortName = "H10.1.2",
Date = "2013-09-24",
Parent = "10.1",
ForumLink = "https://forums.warframe.com/topic/112656-hotfix-1012/",
ArchiveLink = "https://web.archive.org/web/20220129224809/https://forums.warframe.com/topic/112656-hotfix-1012/",
ArchiveDate = "2022-01-29",
Timestamp = 1380062472
},
{
Name = "Hotfix 10.1.3",
Link = "Update 10#Hotfix 10.1.3",
Aliases = { "10.1.3" },
ShortName = "H10.1.3",
Date = "2013-09-25",
Parent = "10.1",
ForumLink = "https://forums.warframe.com/topic/113027-hotfix-1013/",
ArchiveLink = "https://web.archive.org/web/20220129224744/https://forums.warframe.com/topic/113027-hotfix-1013/",
ArchiveDate = "2022-01-29",
Timestamp = 1380142202
},
{
Name = "Update 10.2",
Link = "Update 10#Update 10.2",
Aliases = { "10.2.0", "10.2" },
ShortName = "U10.2",
Date = "2013-09-27",
Parent = "10.2",
ForumLink = "https://forums.warframe.com/topic/113787-update-1020/",
ArchiveLink = "https://web.archive.org/web/20220129224752/https://forums.warframe.com/topic/113787-update-1020/",
ArchiveDate = "2022-01-29",
Timestamp = 1380311548,
Subtitle = "Tenno Reinforcements: Galatine"
},
{
Name = "Hotfix 10.2.1",
Link = "Update 10#Hotfix 10.2.1",
Aliases = { "10.2.1" },
ShortName = "H10.2.1",
Date = "2013-10-04",
Parent = "10.2",
ForumLink = "https://forums.warframe.com/topic/116270-hotfix-1021/",
ArchiveLink = "https://web.archive.org/web/20220129225003/https://forums.warframe.com/topic/116270-hotfix-1021/",
ArchiveDate = "2022-01-29",
Timestamp = 1380919026
},
{
Name = "Update 10.3",
Link = "Update 10#Update 10.3",
Aliases = { "10.3.0", "10.3" },
ShortName = "U10.3",
Date = "2013-10-09",
Parent = "10.3",
ForumLink = "https://forums.warframe.com/topic/117806-update-1030-hump-day/",
ArchiveLink = "https://web.archive.org/web/20220129225008/https://forums.warframe.com/topic/117806-update-1030-hump-day/",
ArchiveDate = "2022-01-29",
Timestamp = 1381356724,
Subtitle = "Hump Day!"
},
{
Name = "Hotfix 10.3.1",
Link = "Update 10#Hotfix 10.3.1",
Aliases = { "10.3.1" },
ShortName = "H10.3.1",
Date = "2013-10-09",
Parent = "10.3",
ForumLink = "https://forums.warframe.com/topic/118024-hotfix-1031-10311-10312-humpier-day/",
ArchiveLink = "https://web.archive.org/web/20220129225013/https://forums.warframe.com/topic/118024-hotfix-1031-10311-10312-humpier-day/",
ArchiveDate = "2022-01-29",
Timestamp = 1381373359,
Subtitle = "Humpier Day!"
},
{
Name = "Hotfix 10.3.1.1",
Link = "Update 10#Hotfix 10.3.1.1",
Aliases = { "10.3.1.1" },
ShortName = "H10.3.1.1",
Date = "2013-10-09",
Parent = "10.3",
ForumLink = "https://forums.warframe.com/topic/118024-hotfix-1031-10311-10312-humpier-day/",
ArchiveLink = "https://web.archive.org/web/20220129225013/https://forums.warframe.com/topic/118024-hotfix-1031-10311-10312-humpier-day/",
ArchiveDate = "2022-01-29",
Timestamp = 1381373359
},
{
Name = "Hotfix 10.3.1.2",
Link = "Update 10#Hotfix 10.3.1.2",
Aliases = { "10.3.1.2" },
ShortName = "H10.3.1.2",
Date = "2013-10-09",
Parent = "10.3",
ForumLink = "https://forums.warframe.com/topic/118024-hotfix-1031-10311-10312-humpier-day/",
ArchiveLink = "https://web.archive.org/web/20220129225013/https://forums.warframe.com/topic/118024-hotfix-1031-10311-10312-humpier-day/",
ArchiveDate = "2022-01-29",
Timestamp = 1381373359
},
{
Name = "Hotfix 10.3.2",
Link = "Update 10#Hotfix 10.3.2",
Aliases = { "10.3.2" },
ShortName = "H10.3.2",
Date = "2013-10-10",
Parent = "10.3",
ForumLink = "https://forums.warframe.com/topic/118455-hotfix-1032/",
ArchiveLink = "https://web.archive.org/web/20220129225053/https://forums.warframe.com/topic/118455-hotfix-1032/",
ArchiveDate = "2022-01-29",
Timestamp = 1381436701
},
{
Name = "Hotfix 10.3.3",
Link = "Update 10#Hotfix 10.3.3",
Aliases = { "10.3.3" },
ShortName = "H10.3.3",
Date = "2013-10-12",
Parent = "10.3",
ForumLink = "https://forums.warframe.com/topic/118923-hotfix-1033-1034/",
ArchiveLink = "https://web.archive.org/web/20220129225240/https://forums.warframe.com/topic/118923-hotfix-1033-1034/",
ArchiveDate = "2022-01-29",
Timestamp = 1381523770
},
{
Name = "Hotfix 10.3.4",
Link = "Update 10#Hotfix 10.3.4",
Aliases = { "10.3.4" },
ShortName = "H10.3.4",
Date = "2013-10-12",
Parent = "10.3",
ForumLink = "https://forums.warframe.com/topic/118923-hotfix-1033-1034/",
ArchiveLink = "https://web.archive.org/web/20220129225240/https://forums.warframe.com/topic/118923-hotfix-1033-1034/",
ArchiveDate = "2022-01-29",
Timestamp = 1381523770
},
{
Name = "Update 10.4",
Link = "Update 10#Update 10.4",
Aliases = { "10.4.0", "10.4" },
ShortName = "U10.4",
Date = "2013-10-16",
Parent = "10.4",
ForumLink = "https://forums.warframe.com/topic/120557-update-1040/",
ArchiveLink = "https://web.archive.org/web/20220129225258/https://forums.warframe.com/topic/120557-update-1040/",
ArchiveDate = "2022-01-29",
Timestamp = 1381963440,
Subtitle = "Tenno Reinforcements: Ballistica"
},
{
Name = "Hotfix 10.4.1",
Link = "Update 10#Hotfix 10.4.1",
Aliases = { "10.4.1" },
ShortName = "H10.4.1",
Date = "2013-10-18",
Parent = "10.4",
ForumLink = "https://forums.warframe.com/topic/121173-hotfix-1041/",
ArchiveLink = "https://web.archive.org/web/20220129225254/https://forums.warframe.com/topic/121173-hotfix-1041/",
ArchiveDate = "2022-01-29",
Timestamp = 1382118294
},
{
Name = "Update 10.5",
Link = "Update 10#Update 10.5",
Aliases = { "10.5.0", "10.5" },
ShortName = "U10.5",
Date = "2013-10-23",
Parent = "10.5",
ForumLink = "https://forums.warframe.com/topic/122841-update-1050-the-gradivus-dilemma/",
ArchiveLink = "https://web.archive.org/web/20220129225259/https://forums.warframe.com/topic/122841-update-1050-the-gradivus-dilemma/",
ArchiveDate = "2022-01-29",
Timestamp = 1382586925,
Subtitle = "The Gradivus Dilemma"
},
{
Name = "Hotfix 10.5.1",
Link = "Update 10#Hotfix 10.5.1",
Aliases = { "10.5.1" },
ShortName = "H10.5.1",
Date = "2013-10-24",
Parent = "10.5",
ForumLink = "https://forums.warframe.com/topic/123306-hotfix-1051/",
ArchiveLink = "https://web.archive.org/web/20220129234006/https://forums.warframe.com/topic/123306-hotfix-1051/",
ArchiveDate = "2022-01-29",
Timestamp = 1382644239
},
{
Name = "Hotfix 10.5.2",
Link = "Update 10#Hotfix 10.5.2",
Aliases = { "10.5.2" },
ShortName = "H10.5.2",
Date = "2013-10-24",
Parent = "10.5",
ForumLink = "https://forums.warframe.com/topic/123417-hotfix-1052/",
ArchiveLink = "https://web.archive.org/web/20220129234012/https://forums.warframe.com/topic/123417-hotfix-1052/",
ArchiveDate = "2022-01-29",
Timestamp = 1382655155
},
{
Name = "Hotfix 10.5.3",
Link = "Update 10#Hotfix 10.5.3",
Aliases = { "10.5.3" },
ShortName = "H10.5.3",
Date = "2013-10-25",
Parent = "10.5",
ForumLink = "https://forums.warframe.com/topic/123878-hotfix-1053/",
ArchiveLink = "https://web.archive.org/web/20220129234010/https://forums.warframe.com/topic/123878-hotfix-1053/",
ArchiveDate = "2022-01-29",
Timestamp = 1382731596
},
{
Name = "Hotfix 10.5.4",
Link = "Update 10#Hotfix 10.5.4",
Aliases = { "10.5.4" },
ShortName = "H10.5.4",
Date = "2013-10-27",
Parent = "10.5",
ForumLink = "https://forums.warframe.com/topic/124720-hotfix-1054/",
ArchiveLink = "https://web.archive.org/web/20220129234018/https://forums.warframe.com/topic/124720-hotfix-1054/",
ArchiveDate = "2022-01-29",
Timestamp = 1382888019
},
{
Name = "Hotfix 10.5.5",
Link = "Update 10#Hotfix 10.5.5",
Aliases = { "10.5.5" },
ShortName = "H10.5.5",
Date = "2013-10-28",
Parent = "10.5",
ForumLink = "https://forums.warframe.com/topic/125283-hotfix-1055/",
ArchiveLink = "https://web.archive.org/web/20220129234217/https://forums.warframe.com/topic/125283-hotfix-1055/",
ArchiveDate = "2022-01-29",
Timestamp = 1382996312
},
{
Name = "Hotfix 10.5.6",
Link = "Update 10#Hotfix 10.5.6",
Aliases = { "10.5.6" },
ShortName = "H10.5.6",
Date = "2013-10-29",
Parent = "10.5",
ForumLink = "https://forums.warframe.com/topic/125633-hotfix-1056/",
ArchiveLink = "https://web.archive.org/web/20220129234220/https://forums.warframe.com/topic/125633-hotfix-1056/",
ArchiveDate = "2022-01-29",
Timestamp = 1383067211
},
{
Name = "Update 10.6",
Link = "Update 10#Update 10.6",
Aliases = { "10.6.0", "10.6" },
ShortName = "U10.6",
Date = "2013-10-30",
Parent = "10.6",
ForumLink = "https://forums.warframe.com/topic/126269-update-1060-the-vectis/",
ArchiveLink = "https://web.archive.org/web/20220129234225/https://forums.warframe.com/topic/126269-update-1060-the-vectis/",
ArchiveDate = "2022-01-29",
Timestamp = 1383184610,
Subtitle = "Tenno Reinforcement: Vectis"
},
{
Name = "Hotfix 10.6.1",
Link = "Update 10#Hotfix 10.6.1",
Aliases = { "10.6.1" },
ShortName = "H10.6.1",
Date = "2013-11-01",
Parent = "10.6",
ForumLink = "https://forums.warframe.com/topic/127121-hotfix-1061-10611/",
ArchiveLink = "https://web.archive.org/web/20220129234256/https://forums.warframe.com/topic/127121-hotfix-1061-10611/",
ArchiveDate = "2022-01-29",
Timestamp = 1383347958
},
{
Name = "Hotfix 10.6.1.1",
Link = "Update 10#Hotfix 10.6.1.1",
Aliases = { "10.6.1.1" },
ShortName = "H10.6.1.1",
Date = "2013-11-01",
Parent = "10.6",
ForumLink = "https://forums.warframe.com/topic/127121-hotfix-1061-10611/",
ArchiveLink = "https://web.archive.org/web/20220129234256/https://forums.warframe.com/topic/127121-hotfix-1061-10611/",
ArchiveDate = "2022-01-29",
Timestamp = 1383347958
},
{
Name = "Hotfix 10.6.2",
Link = "Update 10#Hotfix 10.6.2",
Aliases = { "10.6.2" },
ShortName = "H10.6.2",
Date = "2013-11-05",
Parent = "10.6",
ForumLink = "https://forums.warframe.com/topic/128406-hotfix-1062/",
ArchiveLink = "https://web.archive.org/web/20220129234434/https://forums.warframe.com/topic/128406-hotfix-1062/",
ArchiveDate = "2022-01-29",
Timestamp = 1383670942
},
{
Name = "Update 10.7",
Link = "Update 10#Update 10.7",
Aliases = { "10.7.0", "10.7" },
ShortName = "U10.7",
Date = "2013-11-06",
Parent = "10.7",
ForumLink = "https://forums.warframe.com/topic/128768-update-1070/",
ArchiveLink = "https://web.archive.org/web/20220129234452/https://forums.warframe.com/topic/128768-update-1070/",
ArchiveDate = "2022-01-29",
Timestamp = 1383774236,
Subtitle = "Tenno Reinforcement: Obex"
},
{
Name = "Hotfix 10.7.1",
Link = "Update 10#Hotfix 10.7.1",
Aliases = { "10.7.1" },
ShortName = "H10.7.1",
Date = "2013-11-08",
Parent = "10.7",
ForumLink = "https://forums.warframe.com/topic/129289-hotfix-1071-double-resource-weekend/",
ArchiveLink = "https://web.archive.org/web/20220129234501/https://forums.warframe.com/topic/129289-hotfix-1071-double-resource-weekend/",
ArchiveDate = "2022-01-29",
Timestamp = 1383938736,
Subtitle = "Double Resource Weekend!"
},
{
Name = "Update 10.8",
Link = "Update 10#Update 10.8",
Aliases = { "10.8.0", "10.8" },
ShortName = "U10.8",
Date = "2013-11-13",
Parent = "10.8",
ForumLink = "https://forums.warframe.com/topic/130600-update-1080/",
ArchiveLink = "https://web.archive.org/web/20220129234449/https://forums.warframe.com/topic/130600-update-1080/",
ArchiveDate = "2022-01-29",
Timestamp = 1384368481,
Subtitle = "Nekros/Nova Cosmetic Helmets"
},
{
Name = "Update 11.0",
Link = "Update 11#Update 11.0",
Aliases = { "11", "11.0", "Update 11" },
ShortName = "U11.0",
Date = "2013-11-20",
Parent = "11.0",
ForumLink = "https://forums.warframe.com/topic/132825-update-11-valkyr-unleashed/",
ArchiveLink = "https://web.archive.org/web/20220129223613/https://forums.warframe.com/topic/132825-update-11-valkyr-unleashed/",
ArchiveDate = "2022-01-29",
Timestamp = 1384993412,
Subtitle = "Valkyr Unleashed"
},
{
Name = "Hotfix 11.0.1",
Link = "Update 11#Hotfix 11.0.1",
Aliases = { "11.0.1" },
ShortName = "H11.0.1",
Date = "2013-11-20",
Parent = "11.0",
ForumLink = "https://forums.warframe.com/topic/133329-hotfix-1101/",
ArchiveLink = "https://web.archive.org/web/20220129223555/https://forums.warframe.com/topic/133329-hotfix-1101/",
ArchiveDate = "2022-01-29",
Timestamp = 1385013279
},
{
Name = "Hotfix 11.0.2",
Link = "Update 11#Hotfix 11.0.2",
Aliases = { "11.0.2" },
ShortName = "H11.0.2",
Date = "2013-11-20",
Parent = "11.0",
ForumLink = "https://forums.warframe.com/topic/133476-hotfix-1102/",
ArchiveLink = "https://web.archive.org/web/20220129223437/https://forums.warframe.com/topic/133476-hotfix-1102/",
ArchiveDate = "2022-01-29",
Timestamp = 1385021325
},
{
Name = "Hotfix 11.0.3",
Link = "Update 11#Hotfix 11.0.3",
Aliases = { "11.0.3" },
ShortName = "H11.0.3",
Date = "2013-11-22",
Parent = "11.0",
ForumLink = "https://forums.warframe.com/topic/135065-hotfix-1103-hotter-than-ruk%E2%80%99s-guns/",
ArchiveLink = "https://web.archive.org/web/20220129223331/https://forums.warframe.com/topic/135065-hotfix-1103-hotter-than-ruk%E2%80%99s-guns/",
ArchiveDate = "2022-01-29",
Timestamp = 1385145893,
Subtitle = "Hotter Than Ruk's Guns!"
},
{
Name = "Hotfix 11.0.4",
Link = "Update 11#Hotfix 11.0.4",
Aliases = { "11.0.4" },
ShortName = "H11.0.4",
Date = "2013-11-22",
Parent = "11.0",
ForumLink = "https://forums.warframe.com/topic/135352-hotfix-1104/",
ArchiveLink = "https://web.archive.org/web/20220129223420/https://forums.warframe.com/topic/135352-hotfix-1104/",
ArchiveDate = "2022-01-29",
Timestamp = 1385165281
},
{
Name = "Hotfix 11.0.5",
Link = "Update 11#Hotfix 11.0.5",
Aliases = { "11.0.5" },
ShortName = "H11.0.5",
Date = "2013-11-23",
Parent = "11.0",
ForumLink = "https://forums.warframe.com/topic/135447-hotfix-1105/",
ArchiveLink = "https://web.archive.org/web/20220129223105/https://forums.warframe.com/topic/135447-hotfix-1105/",
ArchiveDate = "2022-01-29",
Timestamp = 1385171864
},
{
Name = "Hotfix 11.0.6",
Link = "Update 11#Hotfix 11.0.6",
Aliases = { "11.0.6" },
ShortName = "H11.0.6",
Date = "2013-11-25",
Parent = "11.0",
ForumLink = "https://forums.warframe.com/topic/137755-hotfix-1106/",
ArchiveLink = "https://web.archive.org/web/20220129223143/https://forums.warframe.com/topic/137755-hotfix-1106/",
ArchiveDate = "2022-01-29",
Timestamp = 1385413650
},
{
Name = "Hotfix 11.0.7",
Link = "Update 11#Hotfix 11.0.7",
Aliases = { "11.0.7" },
ShortName = "H11.0.7",
Date = "2013-11-26",
Parent = "11.0",
ForumLink = "https://forums.warframe.com/topic/137891-hotfix-1107/",
ArchiveLink = "https://web.archive.org/web/20220129222943/https://forums.warframe.com/topic/137891-hotfix-1107/",
ArchiveDate = "2022-01-29",
Timestamp = 1385422336
},
{
Name = "Update 11.1",
Link = "Update 11#Update 11.1",
Aliases = { "11.1.0", "11.1" },
ShortName = "U11.1",
Date = "2013-11-27",
Parent = "11.1",
ForumLink = "https://forums.warframe.com/topic/139326-update-1110/",
ArchiveLink = "https://web.archive.org/web/20220129222934/https://forums.warframe.com/topic/139326-update-1110/",
ArchiveDate = "2022-01-29",
Timestamp = 1385592648,
Subtitle = "Tenno Reinforcements: Cernos, Dual Kamas, Aklex"
},
{
Name = "Hotfix 11.1.1",
Link = "Update 11#Hotfix 11.1.1",
Aliases = { "11.1.1" },
ShortName = "H11.1.1",
Date = "2013-11-28",
Parent = "11.1",
ForumLink = "https://forums.warframe.com/topic/139996-hotfix-1111/",
ArchiveLink = "https://web.archive.org/web/20220129222827/https://forums.warframe.com/topic/139996-hotfix-1111/",
ArchiveDate = "2022-01-29",
Timestamp = 1385660526
},
{
Name = "Hotfix 11.1.2",
Link = "Update 11#Hotfix 11.1.2",
Aliases = { "11.1.2" },
ShortName = "H11.1.2",
Date = "2013-11-29",
Parent = "11.1",
ForumLink = "https://forums.warframe.com/topic/140638-hotfix-1112/",
ArchiveLink = "https://web.archive.org/web/20220129222818/https://forums.warframe.com/topic/140638-hotfix-1112/",
ArchiveDate = "2022-01-29",
Timestamp = 1385747749
},
{
Name = "Hotfix 11.1.3",
Link = "Update 11#Hotfix 11.1.3",
Aliases = { "11.1.3" },
ShortName = "H11.1.3",
Date = "2013-11-29",
Parent = "11.1",
ForumLink = "https://forums.warframe.com/topic/140820-hotfix-1113/",
ArchiveLink = "https://web.archive.org/web/20220129222659/https://forums.warframe.com/topic/140820-hotfix-1113/",
ArchiveDate = "2022-01-29",
Timestamp = 1385764715
},
{
Name = "Update 11.2",
Link = "Update 11#Update 11.2",
Aliases = { "11.2.0", "11.2" },
ShortName = "U11.2",
Date = "2013-12-04",
Parent = "11.2",
ForumLink = "https://forums.warframe.com/topic/143351-update-1120/",
ArchiveLink = "https://web.archive.org/web/20220129222705/https://forums.warframe.com/topic/143351-update-1120/",
ArchiveDate = "2022-01-29",
Timestamp = 1386185912,
Subtitle = "Tenno Reinforcements: Magnus"
},
{
Name = "Hotfix 11.2.1",
Link = "Update 11#Hotfix 11.2.1",
Aliases = { "11.2.1" },
ShortName = "H11.2.1",
Date = "2013-12-06",
Parent = "11.2",
ForumLink = "https://forums.warframe.com/topic/144314-hotfix-1121/",
ArchiveLink = "https://web.archive.org/web/20220129222523/https://forums.warframe.com/topic/144314-hotfix-1121/",
ArchiveDate = "2022-01-29",
Timestamp = 1386361363
},
{
Name = "Update 11.3",
Link = "Update 11#Update 11.3",
Aliases = { "11.3.0", "11.3" },
ShortName = "U11.3",
Date = "2013-12-12",
Parent = "11.3",
ForumLink = "https://forums.warframe.com/topic/146580-update-1130/",
ArchiveLink = "https://web.archive.org/web/20220129222623/https://forums.warframe.com/topic/146580-update-1130/",
ArchiveDate = "2022-01-29",
Timestamp = 1386817687,
Subtitle = "Tenno Reinforcements: Penta"
},
{
Name = "Hotfix 11.3.1",
Link = "Update 11#Hotfix 11.3.1",
Aliases = { "11.3.1" },
ShortName = "H11.3.1",
Date = "2013-12-12",
Parent = "11.3",
ForumLink = "https://forums.warframe.com/topic/146731-hotfix-1131/",
ArchiveLink = "https://web.archive.org/web/20220129222400/https://forums.warframe.com/topic/146731-hotfix-1131/",
ArchiveDate = "2022-01-29",
Timestamp = 1386829386
},
{
Name = "Hotfix 11.3.2",
Link = "Update 11#Hotfix 11.3.2",
Aliases = { "11.3.2" },
ShortName = "H11.3.2",
Date = "2013-12-13",
Parent = "11.3",
ForumLink = "https://forums.warframe.com/topic/147238-hotfix-1132/",
ArchiveLink = "https://web.archive.org/web/20220129222427/https://forums.warframe.com/topic/147238-hotfix-1132/",
ArchiveDate = "2022-01-29",
Timestamp = 1386890025
},
{
Name = "Hotfix 11.3.3",
Link = "Update 11#Hotfix 11.3.3",
Aliases = { "11.3.3" },
ShortName = "H11.3.3",
Date = "2013-12-13",
Parent = "11.3",
ForumLink = "https://forums.warframe.com/topic/147899-hotfix-1133/",
ArchiveLink = "https://web.archive.org/web/20220129222234/https://forums.warframe.com/topic/147899-hotfix-1133/",
ArchiveDate = "2022-01-29",
Timestamp = 1386976927
},
{
Name = "Update 11.5",
Link = "Update 11#Update 11.5",
Aliases = { "11.5.0", "11.5" },
ShortName = "U11.5",
Date = "2013-12-19",
Parent = "11.5",
ForumLink = "https://forums.warframe.com/topic/150623-update-1150-the-cicero-crisis/",
ArchiveLink = "https://web.archive.org/web/20220129222249/https://forums.warframe.com/topic/150623-update-1150-the-cicero-crisis/",
ArchiveDate = "2022-01-29",
Timestamp = 1387429518,
Subtitle = "The Cicero Crisis"
},
{
Name = "Hotfix 11.5.1",
Link = "Update 11#Hotfix 11.5.1",
Aliases = { "11.5.1" },
ShortName = "H11.5.1",
Date = "2013-12-19",
Parent = "11.5",
ForumLink = "https://forums.warframe.com/topic/150720-hotfix-1151/",
ArchiveLink = "https://web.archive.org/web/20220129222133/https://forums.warframe.com/topic/150720-hotfix-1151/",
ArchiveDate = "2022-01-29",
Timestamp = 1387434702
},
{
Name = "Hotfix 11.5.2",
Link = "Update 11#Hotfix 11.5.2",
Aliases = { "11.5.2" },
ShortName = "H11.5.2",
Date = "2013-12-20",
Parent = "11.5",
ForumLink = "https://forums.warframe.com/topic/151302-hotfix-1152/",
ArchiveLink = "https://web.archive.org/web/20220129222126/https://forums.warframe.com/topic/151302-hotfix-1152/",
ArchiveDate = "2022-01-29",
Timestamp = 1387494462
},
{
Name = "Hotfix 11.5.3",
Link = "Update 11#Hotfix 11.5.3",
Aliases = { "11.5.3" },
ShortName = "H11.5.3",
Date = "2013-12-21",
Parent = "11.5",
ForumLink = "https://forums.warframe.com/topic/152081-hotfix-1153/",
ArchiveLink = "https://web.archive.org/web/20220129221939/https://forums.warframe.com/topic/152081-hotfix-1153/",
ArchiveDate = "2022-01-29",
Timestamp = 1387577175
},
{
Name = "Hotfix 11.5.4",
Link = "Update 11#Hotfix 11.5.4",
Aliases = { "11.5.4" },
ShortName = "H11.5.4",
Date = "2013-12-22",
Parent = "11.5",
ForumLink = "https://forums.warframe.com/topic/152924-hotfix-1154/",
ArchiveLink = "https://web.archive.org/web/20220129221938/https://forums.warframe.com/topic/152924-hotfix-1154/",
ArchiveDate = "2022-01-29",
Timestamp = 1387674102
},
{
Name = "Hotfix 11.5.5",
Link = "Update 11#Hotfix 11.5.5",
Aliases = { "11.5.5" },
ShortName = "H11.5.5",
Date = "2013-12-31",
Parent = "11.5",
ForumLink = "https://forums.warframe.com/topic/157009-hotfix-1155/",
ArchiveLink = "https://web.archive.org/web/20220129221734/https://forums.warframe.com/topic/157009-hotfix-1155/",
ArchiveDate = "2022-01-29",
Timestamp = 1388444397
},
{
Name = "Hotfix 11.5.6",
Link = "Update 11#Hotfix 11.5.6",
Aliases = { "11.5.6" },
ShortName = "H11.5.6",
Date = "2014-01-02",
Parent = "11.5",
ForumLink = "https://forums.warframe.com/topic/158190-hotfix-1156/",
ArchiveLink = "https://web.archive.org/web/20220129221811/https://forums.warframe.com/topic/158190-hotfix-1156/",
ArchiveDate = "2022-01-29",
Timestamp = 1388696299
},
{
Name = "Hotfix 11.5.7",
Link = "Update 11#Hotfix 11.5.7",
Aliases = { "11.5.7" },
ShortName = "H11.5.7",
Date = "2014-01-03",
Parent = "11.5",
ForumLink = "https://forums.warframe.com/topic/158705-hotfix-1157/",
ArchiveLink = "https://web.archive.org/web/20220129221540/https://forums.warframe.com/topic/158705-hotfix-1157/",
ArchiveDate = "2022-01-29",
Timestamp = 1388787963
},
{
Name = "Hotfix 11.5.8",
Link = "Update 11#Hotfix 11.5.8",
Aliases = { "11.5.8" },
ShortName = "H11.5.8",
Date = "2014-01-06",
Parent = "11.5",
ForumLink = "https://forums.warframe.com/topic/160058-hotfix-1158/",
ArchiveLink = "https://web.archive.org/web/20220129221547/https://forums.warframe.com/topic/160058-hotfix-1158/",
ArchiveDate = "2022-01-29",
Timestamp = 1389037987
},
{
Name = "Update 11.6",
Link = "Update 11#Update 11.6",
Aliases = { "11.6.0", "11.6" },
ShortName = "U11.6",
Date = "2014-01-08",
Parent = "11.6",
ForumLink = "https://forums.warframe.com/topic/161101-update-1160/",
ArchiveLink = "https://web.archive.org/web/20220129221504/https://forums.warframe.com/topic/161101-update-1160/",
ArchiveDate = "2022-01-29",
Timestamp = 1389220420,
Subtitle = "Tenno Reinforcements: Drakgoon"
},
{
Name = "Hotfix 11.6.1",
Link = "Update 11#Hotfix 11.6.1",
Aliases = { "11.6.1" },
ShortName = "H11.6.1",
Date = "2014-01-10",
Parent = "11.6",
ForumLink = "https://forums.warframe.com/topic/161944-hotfix-1161/",
ArchiveLink = "https://web.archive.org/web/20220129221311/https://forums.warframe.com/topic/161944-hotfix-1161/",
ArchiveDate = "2022-01-29",
Timestamp = 1389378630
},
{
Name = "Hotfix 11.6.1.1",
Link = "Update 11#Hotfix 11.6.1.1",
Aliases = { "11.6.1.1" },
ShortName = "H11.6.1.1",
Date = "2014-01-11",
Parent = "11.6",
ForumLink = "https://forums.warframe.com/topic/162202-hotfix-11611/",
ArchiveLink = "https://web.archive.org/web/20220129221301/https://forums.warframe.com/topic/162202-hotfix-11611/",
ArchiveDate = "2022-01-29",
Timestamp = 1389418593
},
{
Name = "Update 11.7",
Link = "Update 11#Update 11.7",
Aliases = { "11.7.0", "11.7" },
ShortName = "U11.7",
Date = "2014-01-15",
Parent = "11.7",
ForumLink = "https://forums.warframe.com/topic/164093-update-1170-1171/",
ArchiveLink = "https://web.archive.org/web/20220129220908/https://forums.warframe.com/topic/164093-update-1170-1171/",
ArchiveDate = "2022-01-29",
Timestamp = 1389824744,
Subtitle = "Tenno Reinforcements: Tysis"
},
{
Name = "Hotfix 11.7.1",
Link = "Update 11#Hotfix 11.7.1",
Aliases = { "11.7.1" },
ShortName = "H11.7.1",
Date = "2014-01-15",
Parent = "11.7",
ForumLink = "https://forums.warframe.com/topic/164093-update-1170-1171/",
ArchiveLink = "https://web.archive.org/web/20220129220908/https://forums.warframe.com/topic/164093-update-1170-1171/",
ArchiveDate = "2022-01-29",
Timestamp = 1389824744
},
{
Name = "Hotfix 11.7.2",
Link = "Update 11#Hotfix 11.7.2",
Aliases = { "11.7.2" },
ShortName = "H11.7.2",
Date = "2014-01-16",
Parent = "11.7",
ForumLink = "https://forums.warframe.com/topic/164261-hotfix-1172/",
ArchiveLink = "https://web.archive.org/web/20220129220901/https://forums.warframe.com/topic/164261-hotfix-1172/",
ArchiveDate = "2022-01-29",
Timestamp = 1389847320
},
{
Name = "Hotfix 11.7.3",
Link = "Update 11#Hotfix 11.7.3",
Aliases = { "11.7.3" },
ShortName = "H11.7.3",
Date = "2014-01-17",
Parent = "11.7",
ForumLink = "https://forums.warframe.com/topic/164930-hotfix-1173/",
ArchiveLink = "https://web.archive.org/web/20220129220735/https://forums.warframe.com/topic/164930-hotfix-1173/",
ArchiveDate = "2022-01-29",
Timestamp = 1389999656
},
{
Name = "Update 11.8",
Link = "Update 11#Update 11.8",
Aliases = { "11.8.0", "11.8" },
ShortName = "U11.8",
Date = "2014-01-22",
Parent = "11.8",
ForumLink = "https://forums.warframe.com/topic/166879-update-1180/",
ArchiveLink = "https://web.archive.org/web/20220129220742/https://forums.warframe.com/topic/166879-update-1180/",
ArchiveDate = "2022-01-29",
Timestamp = 1390416956,
Subtitle = "Tenno Reinforcements: Tetra"
},
{
Name = "Hotfix 11.8.1",
Link = "Update 11#Hotfix 11.8.1",
Aliases = { "11.8.1" },
ShortName = "H11.8.1",
Date = "2014-01-22",
Parent = "11.8",
ForumLink = "https://forums.warframe.com/topic/166934-hotfix-1181/",
ArchiveLink = "https://web.archive.org/web/20220129220618/https://forums.warframe.com/topic/166934-hotfix-1181/",
ArchiveDate = "2022-01-29",
Timestamp = 1390425040
},
{
Name = "Hotfix 11.8.2",
Link = "Update 11#Hotfix 11.8.2",
Aliases = { "11.8.2" },
ShortName = "H11.8.2",
Date = "2014-01-22",
Parent = "11.8",
ForumLink = "https://forums.warframe.com/topic/166989-hotfix-1182/",
ArchiveLink = "https://web.archive.org/web/20220129220623/https://forums.warframe.com/topic/166989-hotfix-1182/",
ArchiveDate = "2022-01-29",
Timestamp = 1390432772
},
{
Name = "Hotfix 11.8.3",
Link = "Update 11#Hotfix 11.8.3",
Aliases = { "11.8.3" },
ShortName = "H11.8.3",
Date = "2014-01-24",
Parent = "11.8",
ForumLink = "https://forums.warframe.com/topic/167720-hotfix-1183/",
ArchiveLink = "https://web.archive.org/web/20220129220518/https://forums.warframe.com/topic/167720-hotfix-1183/",
ArchiveDate = "2022-01-29",
Timestamp = 1390592384
},
{
Name = "Update 11.9",
Link = "Update 11#Update 11.9",
Aliases = { "11.9.0", "11.9" },
ShortName = "U11.9",
Date = "2014-01-29",
Parent = "11.9",
ForumLink = "https://forums.warframe.com/topic/169833-update-1190-1191-operation-oxium-espionage/",
ArchiveLink = "https://web.archive.org/web/20220129220450/https://forums.warframe.com/topic/169833-update-1190-1191-operation-oxium-espionage/",
ArchiveDate = "2022-01-29",
Timestamp = 1391032906,
Subtitle = "Operation Oxium Espionage"
},
{
Name = "Hotfix 11.9.1",
Link = "Update 11#Hotfix 11.9.1",
Aliases = { "11.9.1" },
ShortName = "H11.9.1",
Date = "2014-01-29",
Parent = "11.9",
ForumLink = "https://forums.warframe.com/topic/169833-update-1190-1191-operation-oxium-espionage/",
ArchiveLink = "https://web.archive.org/web/20220129220450/https://forums.warframe.com/topic/169833-update-1190-1191-operation-oxium-espionage/",
ArchiveDate = "2022-01-29",
Timestamp = 1391032906
},
{
Name = "Hotfix 11.9.2",
Link = "Update 11#Hotfix 11.9.2",
Aliases = { "11.9.2" },
ShortName = "H11.9.2",
Date = "2014-01-30",
Parent = "11.9",
ForumLink = "https://forums.warframe.com/topic/170183-hotfix-1192/",
ArchiveLink = "https://web.archive.org/web/20220129220406/https://forums.warframe.com/topic/170183-hotfix-1192/",
ArchiveDate = "2022-01-29",
Timestamp = 1391106731
},
{
Name = "Update 12.0",
Link = "Update 12#Update 12.0",
Aliases = { "Update 12", "12", "12.0" },
ShortName = "U12.0",
Date = "2014-02-05",
Parent = "12.0",
ForumLink = "https://forums.warframe.com/topic/172913-update-12-zephyr-rises/",
ArchiveLink = "https://web.archive.org/web/20220127043708/https://forums.warframe.com/topic/172913-update-12-zephyr-rises/",
ArchiveDate = "2022-01-27",
Timestamp = 1391656799,
Subtitle = "Zephyr Rises"
},
{
Name = "Hotfix 12.0.1",
Link = "Update 12#Hotfix 12.0.1",
Aliases = { "12.0.1" },
ShortName = "H12.0.1",
Date = "2014-02-06",
Parent = "12.0",
ForumLink = "https://forums.warframe.com/topic/173291-hotfix-1201/",
ArchiveLink = "https://web.archive.org/web/20220127043637/https://forums.warframe.com/topic/173291-hotfix-1201/",
ArchiveDate = "2022-01-27",
Timestamp = 1391671753
},
{
Name = "Hotfix 12.0.2",
Link = "Update 12#Hotfix 12.0.2",
Aliases = { "12.0.2" },
ShortName = "H12.0.2",
Date = "2014-02-06",
Parent = "12.0",
ForumLink = "https://forums.warframe.com/topic/174127-hotfix-1202/",
ArchiveLink = "https://web.archive.org/web/20220127043648/https://forums.warframe.com/topic/174127-hotfix-1202/",
ArchiveDate = "2022-01-27",
Timestamp = 1391728102
},
{
Name = "Hotfix 12.0.3",
Link = "Update 12#Hotfix 12.0.3",
Aliases = { "12.0.3" },
ShortName = "H12.0.3",
Date = "2014-02-07",
Parent = "12.0",
ForumLink = "https://forums.warframe.com/topic/174833-hotfix-1203/",
ArchiveLink = "https://web.archive.org/web/20220127043652/https://forums.warframe.com/topic/174833-hotfix-1203/",
ArchiveDate = "2022-01-27",
Timestamp = 1391794318
},
{
Name = "Hotfix 12.0.4",
Link = "Update 12#Hotfix 12.0.4",
Aliases = { "12.0.4" },
ShortName = "H12.0.4",
Date = "2014-02-07",
Parent = "12.0",
ForumLink = "https://forums.warframe.com/topic/175069-hotfix-1204/",
ArchiveLink = "https://web.archive.org/web/20220127043803/https://forums.warframe.com/topic/175069-hotfix-1204/",
ArchiveDate = "2022-01-27",
Timestamp = 1391812997
},
{
Name = "Hotfix 12.0.5",
Link = "Update 12#Hotfix 12.0.5",
Aliases = { "12.0.5" },
ShortName = "H12.0.5",
Date = "2014-02-10",
Parent = "12.0",
ForumLink = "https://forums.warframe.com/topic/177262-hotfix-1205/",
ArchiveLink = "https://web.archive.org/web/20220127043810/https://forums.warframe.com/topic/177262-hotfix-1205/",
ArchiveDate = "2022-01-27",
Timestamp = 1392073953
},
{
Name = "Update 12.1",
Link = "Update 12#Update 12.1",
Aliases = { "12.1", "12.1.0" },
ShortName = "U12.1",
Date = "2014-02-13",
Parent = "12.1",
ForumLink = "https://forums.warframe.com/topic/178607-update-1210-grinlok/",
ArchiveLink = "https://web.archive.org/web/20220127043815/https://forums.warframe.com/topic/178607-update-1210-grinlok/",
ArchiveDate = "2022-01-27",
Timestamp = 1392260639,
Subtitle = "Tenno Reinforcements: Grinlok"
},
{
Name = "Hotfix 12.1.1",
Link = "Update 12#Hotfix 12.1.1",
Aliases = { "12.1.1" },
ShortName = "H12.1.1",
Date = "2014-02-13",
Parent = "12.1",
ForumLink = "https://forums.warframe.com/topic/179019-hotfix-1211/",
ArchiveLink = "https://web.archive.org/web/20220127043820/https://forums.warframe.com/topic/179019-hotfix-1211/",
ArchiveDate = "2022-01-27",
Timestamp = 1392317678
},
{
Name = "Hotfix 12.1.2",
Link = "Update 12#Hotfix 12.1.2",
Aliases = { "12.1.2" },
ShortName = "H12.1.2",
Date = "2014-02-14",
Parent = "12.1",
ForumLink = "https://forums.warframe.com/topic/179717-hotfix-1212/",
ArchiveLink = "https://web.archive.org/web/20220127043921/https://forums.warframe.com/topic/179717-hotfix-1212/",
ArchiveDate = "2022-01-27",
Timestamp = 1392419257
},
{
Name = "Update 12.2",
Link = "Update 12#Update 12.2",
Aliases = { "12.2", "12.2.0" },
ShortName = "U12.2",
Date = "2014-02-19",
Parent = "12.2",
ForumLink = "https://forums.warframe.com/topic/182229-update-1220-castanas/",
ArchiveLink = "https://web.archive.org/web/20220127044014/https://forums.warframe.com/topic/182229-update-1220-castanas/",
ArchiveDate = "2022-01-27",
Timestamp = 1392848673,
Subtitle = "Tenno Reinforcements: Castanas"
},
{
Name = "Hotfix 12.2.1",
Link = "Update 12#Hotfix 12.2.1",
Aliases = { "12.2.1" },
ShortName = "H12.2.1",
Date = "2014-02-20",
Parent = "12.2",
ForumLink = "https://forums.warframe.com/topic/182504-hotfix-1221/",
ArchiveLink = "https://web.archive.org/web/20220127044015/https://forums.warframe.com/topic/182504-hotfix-1221/",
ArchiveDate = "2022-01-27",
Timestamp = 1392862916
},
{
Name = "Update 12.3",
Link = "Update 12#Update 12.3",
Aliases = { "12.3" },
ShortName = "U12.3",
Date = "2014-02-27",
Parent = "12.3",
ForumLink = "https://forums.warframe.com/topic/186244-update-1230-the-grustrag-three/",
ArchiveLink = "https://web.archive.org/web/20220127044021/https://forums.warframe.com/topic/186244-update-1230-the-grustrag-three/",
ArchiveDate = "2022-01-27",
Timestamp = 1393477312,
Subtitle = "The Grustrag Three"
},
{
Name = "Hotfix 12.3.1",
Link = "Update 12#Hotfix 12.3.1",
Aliases = { "12.3.1" },
ShortName = "H12.3.1",
Date = "2014-02-27",
Parent = "12.3",
ForumLink = "https://forums.warframe.com/topic/186309-hotfix-1231/",
ArchiveLink = "https://web.archive.org/web/20220127044140/https://forums.warframe.com/topic/186309-hotfix-1231/",
ArchiveDate = "2022-01-27",
Timestamp = 1393481677
},
{
Name = "Hotfix 12.3.2",
Link = "Update 12#Hotfix 12.3.2",
Aliases = { "12.3.2" },
ShortName = "H12.3.2",
Date = "2014-02-27",
Parent = "12.3",
ForumLink = "https://forums.warframe.com/topic/186716-hotfix-1232/",
ArchiveLink = "https://web.archive.org/web/20220127044136/https://forums.warframe.com/topic/186716-hotfix-1232/",
ArchiveDate = "2022-01-27",
Timestamp = 1393531660
},
{
Name = "Update 12.4",
Link = "Update 12#Update 12.4",
Aliases = { "12.4", "12.4.0" },
ShortName = "U12.4",
Date = "2014-03-05",
Parent = "12.4",
ForumLink = "https://forums.warframe.com/topic/189809-update-1240/",
ArchiveLink = "https://web.archive.org/web/20220127044228/https://forums.warframe.com/topic/189809-update-1240/",
ArchiveDate = "2022-01-27",
Timestamp = 1394073281,
Subtitle = "Tethra's Doom"
},
{
Name = "Hotfix 12.4.1",
Link = "Update 12#Hotfix 12.4.1",
Aliases = { "12.4.1" },
ShortName = "H12.4.1",
Date = "2014-03-06",
Parent = "12.4",
ForumLink = "https://forums.warframe.com/topic/190653-hotfix-1241/",
ArchiveLink = "https://web.archive.org/web/20220127044144/https://forums.warframe.com/topic/190653-hotfix-1241/",
ArchiveDate = "2022-01-27",
Timestamp = 1394150162
},
{
Name = "Hotfix 12.4.2",
Link = "Update 12#Hotfix 12.4.2",
Aliases = { "12.4.2" },
ShortName = "H12.4.2",
Date = "2014-03-07",
Parent = "12.4",
ForumLink = "https://forums.warframe.com/topic/191237-hotfix-1242/",
ArchiveLink = "https://web.archive.org/web/20220127044243/https://forums.warframe.com/topic/191237-hotfix-1242/",
ArchiveDate = "2022-01-27",
Timestamp = 1394221453
},
{
Name = "Hotfix 12.4.3",
Link = "Update 12#Hotfix 12.4.3",
Aliases = { "12.4.3" },
ShortName = "H12.4.3",
Date = "2014-03-10",
Parent = "12.4",
ForumLink = "https://forums.warframe.com/topic/193399-hotfix-1243/",
ArchiveLink = "https://web.archive.org/web/20220127044334/https://forums.warframe.com/topic/193399-hotfix-1243/",
ArchiveDate = "2022-01-27",
Timestamp = 1394489901
},
{
Name = "Hotfix 12.4.4",
Link = "Update 12#Hotfix 12.4.4",
Aliases = { "12.4.4" },
ShortName = "H12.4.4",
Date = "2014-03-10",
Parent = "12.4",
ForumLink = "https://forums.warframe.com/topic/193552-hotfix-1244/",
ArchiveLink = "https://web.archive.org/web/20220127044338/https://forums.warframe.com/topic/193552-hotfix-1244/",
ArchiveDate = "2022-01-27",
Timestamp = 1394505576
},
{
Name = "Hotfix 12.4.5",
Link = "Update 12#Hotfix 12.4.5",
Aliases = { "12.4.5" },
ShortName = "H12.4.5",
Date = "2014-03-12",
Parent = "12.4",
ForumLink = "https://forums.warframe.com/topic/194749-hotfix-1245/",
ArchiveLink = "https://web.archive.org/web/20220127044350/https://forums.warframe.com/topic/194749-hotfix-1245/",
ArchiveDate = "2022-01-27",
Timestamp = 1394677636
},
{
Name = "Hotfix 12.4.6",
Link = "Update 12#Hotfix 12.4.6",
Aliases = { "12.4.6" },
ShortName = "H12.4.6",
Date = "2014-03-17",
Parent = "12.4",
ForumLink = "https://forums.warframe.com/topic/197103-hotfix-1246-luck-o-the-lotus/",
ArchiveLink = "https://web.archive.org/web/20220127044359/https://forums.warframe.com/topic/197103-hotfix-1246-luck-o-the-lotus/",
ArchiveDate = "2022-01-27",
Timestamp = 1395072414,
Subtitle = "Luck O' The Lotus!"
},
{
Name = "Update 12.5",
Link = "Update 12#Update 12.5",
Aliases = { "12.5", "12.5.0" },
ShortName = "U12.5",
Date = "2014-03-19",
Parent = "12.5",
ForumLink = "https://forums.warframe.com/topic/198137-update-1250-helios/",
ArchiveLink = "https://web.archive.org/web/20220127044451/https://forums.warframe.com/topic/198137-update-1250-helios/",
ArchiveDate = "2022-01-27",
Timestamp = 1395268913,
Subtitle = "Tenno Reinforcements: Imperator Syandana & Helios"
},
{
Name = "Hotfix 12.5.1",
Link = "Update 12#Hotfix 12.5.1",
Aliases = { "12.5.1" },
ShortName = "H12.5.1",
Date = "2014-03-19",
Parent = "12.5",
ForumLink = "https://forums.warframe.com/topic/198348-hotfix-1251/",
ArchiveLink = "https://web.archive.org/web/20220127044524/https://forums.warframe.com/topic/198348-hotfix-1251/",
ArchiveDate = "2022-01-27",
Timestamp = 1395286112
},
{
Name = "Hotfix 12.5.2",
Link = "Update 12#Hotfix 12.5.2",
Aliases = { "12.5.2" },
ShortName = "H12.5.2",
Date = "2014-03-21",
Parent = "12.5",
ForumLink = "https://forums.warframe.com/topic/199117-hotfix-1252/",
ArchiveLink = "https://web.archive.org/web/20220127044459/https://forums.warframe.com/topic/199117-hotfix-1252/",
ArchiveDate = "2022-01-27",
Timestamp = 1395425007
},
{
Name = "Hotfix 12.5.3",
Link = "Update 12#Hotfix 12.5.3",
Aliases = { "12.5.3" },
ShortName = "H12.5.3",
Date = "2014-03-24",
Parent = "12.5",
ForumLink = "https://forums.warframe.com/topic/200550-hotfix-1253/",
ArchiveLink = "https://web.archive.org/web/20220127044504/https://forums.warframe.com/topic/200550-hotfix-1253/",
ArchiveDate = "2022-01-27",
Timestamp = 1395697341
},
{
Name = "Update 12.6",
Link = "Update 12#Update 12.6",
Aliases = { "12.6", "12.6.0" },
ShortName = "U12.6",
Date = "2014-03-26",
Parent = "12.6",
ForumLink = "https://forums.warframe.com/topic/201473-update-1260-dex-furis-limited-time-gift/",
ArchiveLink = "https://web.archive.org/web/20220127044523/https://forums.warframe.com/topic/201473-update-1260-dex-furis-limited-time-gift/",
ArchiveDate = "2022-01-27",
Timestamp = 1395868291,
Subtitle = "Tenno Reinforcements (First Anniversary Edition): Dex Furis"
},
{
Name = "Hotfix 12.6.1",
Link = "Update 12#Hotfix 12.6.1",
Aliases = { "12.6.1" },
ShortName = "H12.6.1",
Date = "2014-03-26",
Parent = "12.6",
ForumLink = "https://forums.warframe.com/topic/201557-hotfix-1261/",
ArchiveLink = "https://web.archive.org/web/20220127044551/https://forums.warframe.com/topic/201557-hotfix-1261/",
ArchiveDate = "2022-01-27",
Timestamp = 1395873634
},
{
Name = "Update 13.0",
Link = "Update 13#Update 13.0",
Aliases = { "Update 13", "13", "13.0" },
ShortName = "U13.0",
Date = "2014-04-09",
Parent = "13.0",
ForumLink = "https://forums.warframe.com/index.php?/topic/209324-update-13-dark-sectors/",
ArchiveLink = "https://web.archive.org/web/20220127041809/https://forums.warframe.com/topic/209324-update-13-dark-sectors/",
ArchiveDate = "2022-01-27",
Timestamp = 1397107694,
Subtitle = "Dark Sectors"
},
{
Name = "Hotfix 13.0.1",
Link = "Update 13#Hotfix 13.0.1",
Aliases = { "13.0.1" },
ShortName = "H13.0.1",
Date = "2014-04-10",
Parent = "13.0",
ForumLink = "https://forums.warframe.com/topic/209535-hotfix-1301/",
ArchiveLink = "https://web.archive.org/web/20220127041740/https://forums.warframe.com/topic/209535-hotfix-1301/",
ArchiveDate = "2022-01-27",
Timestamp = 1397116642
},
{
Name = "Hotfix 13.0.2",
Link = "Update 13#Hotfix 13.0.2",
Aliases = { "13.0.2" },
ShortName = "H13.0.2",
Date = "2014-04-10",
Parent = "13.0",
ForumLink = "https://forums.warframe.com/topic/210258-hotfix-1302/",
ArchiveLink = "https://web.archive.org/web/20220127041736/https://forums.warframe.com/topic/210258-hotfix-1302/",
ArchiveDate = "2022-01-27",
Timestamp = 1397150932
},
{
Name = "Hotfix 13.0.3",
Link = "Update 13#Hotfix 13.0.3",
Aliases = { "13.0.3" },
ShortName = "H13.0.3",
Date = "2014-04-10",
Parent = "13.0",
ForumLink = "https://forums.warframe.com/topic/210693-hotfix-1303/",
ArchiveLink = "https://web.archive.org/web/20220127041540/https://forums.warframe.com/topic/210693-hotfix-1303/",
ArchiveDate = "2022-01-27",
Timestamp = 1397169320
},
{
Name = "Hotfix 13.0.4",
Link = "Update 13#Hotfix 13.0.4",
Aliases = { "13.0.4" },
ShortName = "H13.0.4",
Date = "2014-04-11",
Parent = "13.0",
ForumLink = "https://forums.warframe.com/topic/212197-hotfix-1304/",
ArchiveLink = "https://web.archive.org/web/20220127041508/https://forums.warframe.com/topic/212197-hotfix-1304/",
ArchiveDate = "2022-01-27",
Timestamp = 1397281110
},
{
Name = "Hotfix 13.0.5",
Link = "Update 13#Hotfix 13.0.5",
Aliases = { "13.0.5" },
ShortName = "H13.0.5",
Date = "2014-04-13",
Parent = "13.0",
ForumLink = "https://forums.warframe.com/topic/214088-hotfix-1305/",
ArchiveLink = "https://web.archive.org/web/20220127041404/https://forums.warframe.com/topic/214088-hotfix-1305/",
ArchiveDate = "2022-01-27",
Timestamp = 1397446117
},
{
Name = "Hotfix 13.0.6",
Link = "Update 13#Hotfix 13.0.6",
Aliases = { "13.0.6" },
ShortName = "H13.0.6",
Date = "2014-04-17",
Parent = "13.0",
ForumLink = "https://forums.warframe.com/topic/217108-hotfix-1306130713071/",
ArchiveLink = "https://web.archive.org/web/20220127041242/https://forums.warframe.com/topic/217108-hotfix-1306130713071/",
ArchiveDate = "2022-01-27",
Timestamp = 1397754704
},
{
Name = "Hotfix 13.0.7",
Link = "Update 13#Hotfix 13.0.7",
Aliases = { "13.0.7" },
ShortName = "H13.0.7",
Date = "2014-04-17",
Parent = "13.0",
ForumLink = "https://forums.warframe.com/topic/217108-hotfix-1306130713071/",
ArchiveLink = "https://web.archive.org/web/20220127041242/https://forums.warframe.com/topic/217108-hotfix-1306130713071/",
ArchiveDate = "2022-01-27",
Timestamp = 1397754704
},
{
Name = "Hotfix 13.0.7.1",
Link = "Update 13#Hotfix 13.0.7.1",
Aliases = { "13.0.7.1" },
ShortName = "H13.0.7.1",
Date = "2014-04-17",
Parent = "13.0",
ForumLink = "https://forums.warframe.com/topic/217108-hotfix-1306130713071/",
ArchiveLink = "https://web.archive.org/web/20220127041242/https://forums.warframe.com/topic/217108-hotfix-1306130713071/",
ArchiveDate = "2022-01-27",
Timestamp = 1397769276
},
{
Name = "Update 13.1",
Link = "Update 13#Update 13.1.0",
Aliases = { "13.1.0", "13.1" },
ShortName = "U13.1.0",
Date = "2014-04-23",
Parent = "13.1",
ForumLink = "https://forums.warframe.com/topic/220848-update-1310-amprex/",
ArchiveLink = "https://web.archive.org/web/20220127041125/https://forums.warframe.com/topic/220848-update-1310-amprex/",
ArchiveDate = "2022-01-27",
Timestamp = 1398288133,
Subtitle = "Tenno Reinforcements: Amprex and Sprite & Carabus Skins"
},
{
Name = "Hotfix 13.1.1",
Link = "Update 13#Hotfix 13.1.1",
Aliases = { "13.1.1" },
ShortName = "H13.1.1",
Date = "2014-04-23",
Parent = "13.1",
ForumLink = "https://forums.warframe.com/topic/220915-hotfix-1311/",
ArchiveLink = "https://web.archive.org/web/20220127041045/https://forums.warframe.com/topic/220915-hotfix-1311/",
ArchiveDate = "2022-01-27",
Timestamp = 1398293582
},
{
Name = "Hotfix 13.1.2",
Link = "Update 13#Hotfix 13.1.2",
Aliases = { "13.1.2" },
ShortName = "H13.1.2",
Date = "2014-04-25",
Parent = "13.1",
ForumLink = "https://forums.warframe.com/topic/222026-hotfix-1312/",
ArchiveLink = "https://web.archive.org/web/20220127040910/https://forums.warframe.com/topic/222026-hotfix-1312/",
ArchiveDate = "2022-01-27",
Timestamp = 1398467227
},
{
Name = "Update 13.2",
Link = "Update 13#Update 13.2",
Aliases = { "13.2", "13.2.0" },
ShortName = "U13.2",
Date = "2014-05-01",
Parent = "13.2",
ForumLink = "https://forums.warframe.com/topic/224977-update-1320-specters-of-liberty/",
ArchiveLink = "https://web.archive.org/web/20220127040742/https://forums.warframe.com/topic/224977-update-1320-specters-of-liberty/",
ArchiveDate = "2022-01-27",
Timestamp = 1398972332,
Subtitle = "Specters Of Liberty"
},
{
Name = "Hotfix 13.2.1",
Link = "Update 13#Hotfix 13.2.1",
Aliases = { "13.2.1" },
ShortName = "H13.2.1",
Date = "2014-05-01",
Parent = "13.2",
ForumLink = "https://forums.warframe.com/topic/225192-hotfix-1321/",
ArchiveLink = "https://web.archive.org/web/20220127040950/https://forums.warframe.com/topic/225192-hotfix-1321/",
ArchiveDate = "2022-01-27",
Timestamp = 1398985313
},
{
Name = "Hotfix 13.2.2",
Link = "Update 13#Hotfix 13.2.2",
Aliases = { "13.2.2" },
ShortName = "H13.2.2",
Date = "2014-05-02",
Parent = "13.2",
ForumLink = "https://forums.warframe.com/topic/225898-hotfix-132213221/",
ArchiveLink = "https://web.archive.org/web/20220127040623/https://forums.warframe.com/topic/225898-hotfix-132213221/",
ArchiveDate = "2022-01-27",
Timestamp = 1399065003
},
{
Name = "Hotfix 13.2.2.1",
Link = "Update 13#Hotfix 13.2.2.1",
Aliases = { "13.2.2.1" },
ShortName = "H13.2.2.1",
Date = "2014-05-02",
Parent = "13.2",
ForumLink = "https://forums.warframe.com/topic/225898-hotfix-132213221/",
ArchiveLink = "https://web.archive.org/web/20220127040623/https://forums.warframe.com/topic/225898-hotfix-132213221/",
ArchiveDate = "2022-01-27",
Timestamp = 1399068232
},
{
Name = "Hotfix 13.2.3",
Link = "Update 13#Hotfix 13.2.3",
Aliases = { "13.2.3" },
ShortName = "H13.2.3",
Date = "2014-05-07",
Parent = "13.2",
ForumLink = "https://forums.warframe.com/topic/228310-hotfix-1323/",
ArchiveLink = "https://web.archive.org/web/20220127040525/https://forums.warframe.com/topic/228310-hotfix-1323/",
ArchiveDate = "2022-01-27",
Timestamp = 1399500518
},
{
Name = "Hotfix 13.2.4",
Link = "Update 13#Hotfix 13.2.4",
Aliases = { "13.2.4" },
ShortName = "H13.2.4",
Date = "2014-05-09",
Parent = "13.2",
ForumLink = "https://forums.warframe.com/topic/229195-hotfix-1324/",
ArchiveLink = "https://web.archive.org/web/20220127040440/https://forums.warframe.com/topic/229195-hotfix-1324/",
ArchiveDate = "2022-01-27",
Timestamp = 1399662850
},
{
Name = "Update 13.3",
Link = "Update 13#Update 13.3",
Aliases = { "13.3.0", "13.3" },
ShortName = "U13.3",
Date = "2014-05-14",
Parent = "13.3",
ForumLink = "https://forums.warframe.com/topic/231590-update-1330-pack-hunters/",
ArchiveLink = "https://web.archive.org/web/20220127040350/https://forums.warframe.com/topic/231590-update-1330-pack-hunters/",
ArchiveDate = "2022-01-27",
Timestamp = 1400110431,
Subtitle = "Pack Hunters"
},
{
Name = "Hotfix 13.3.1",
Link = "Update 13#Hotfix 13.3.1",
Aliases = { "13.3.1" },
ShortName = "H13.3.1",
Date = "2014-05-15",
Parent = "13.3",
ForumLink = "https://forums.warframe.com/topic/232152-hotfix-1331/",
ArchiveLink = "https://web.archive.org/web/20220127040315/https://forums.warframe.com/topic/232152-hotfix-1331/",
ArchiveDate = "2022-01-27",
Timestamp = 1400182414
},
{
Name = "Update 13.4",
Link = "Update 13#Update 13.4",
Aliases = { "13.4.0", "13.4" },
ShortName = "U13.4",
Date = "2014-05-21",
Parent = "13.4",
ForumLink = "https://forums.warframe.com/topic/234889-1340-serro-psa/",
ArchiveLink = "https://web.archive.org/web/20220127040239/https://forums.warframe.com/topic/234889-1340-serro-psa/",
ArchiveDate = "2022-01-27",
Timestamp = 1400710731,
Subtitle = "Tenno Reinforcements: Serro + Psa!"
},
{
Name = "Hotfix 13.4.1",
Link = "Update 13#Hotfix 13.4.1",
Aliases = { "13.4.1" },
ShortName = "H13.4.1",
Date = "2014-05-23",
Parent = "13.4",
ForumLink = "https://forums.warframe.com/topic/235797-hotfix-1341/",
ArchiveLink = "https://web.archive.org/web/20220127040207/https://forums.warframe.com/topic/235797-hotfix-1341/",
ArchiveDate = "2022-01-27",
Timestamp = 1400868002
},
{
Name = "Update 13.5",
Link = "Update 13#Update 13.5.0",
Aliases = { "13.5", "13.5" },
ShortName = "U13.5.0",
Date = "2014-05-28",
Parent = "13.5",
ForumLink = "https://forums.warframe.com/topic/238069-update-1350-edo-armor-nami-solo/",
ArchiveLink = "https://web.archive.org/web/20220127040131/https://forums.warframe.com/topic/238069-update-1350-edo-armor-nami-solo/",
ArchiveDate = "2022-01-27",
Timestamp = 1401318358,
Subtitle = "Tenno Reinforcements: Edo Armor & Nami Solo"
},
{
Name = "Hotfix 13.5.1",
Link = "Update 13#Hotfix 13.5.1",
Aliases = { "13.5.1" },
ShortName = "H13.5.1",
Date = "2014-05-30",
Parent = "13.5",
ForumLink = "https://forums.warframe.com/topic/238867-hotfix-1351/",
ArchiveLink = "https://web.archive.org/web/20220127035927/https://forums.warframe.com/topic/238867-hotfix-1351/",
ArchiveDate = "2022-01-27",
Timestamp = 1401463205
},
{
Name = "Hotfix 13.5.2",
Link = "Update 13#Hotfix 13.5.2",
Aliases = { "13.5.2" },
ShortName = "H13.5.2",
Date = "2014-05-30",
Parent = "13.5",
ForumLink = "https://forums.warframe.com/topic/239114-hotfix-1352-1353/",
ArchiveLink = "https://web.archive.org/web/20220127035754/https://forums.warframe.com/topic/239114-hotfix-1352-1353/",
ArchiveDate = "2022-01-27",
Timestamp = 1401492828
},
{
Name = "Hotfix 13.5.3",
Link = "Update 13#Hotfix 13.5.3",
Aliases = { "13.5.3" },
ShortName = "H13.5.3",
Date = "2014-05-30",
Parent = "13.5",
ForumLink = "https://forums.warframe.com/topic/239114-hotfix-1352-1353/",
ArchiveLink = "https://web.archive.org/web/20220127035754/https://forums.warframe.com/topic/239114-hotfix-1352-1353/",
ArchiveDate = "2022-01-27",
Timestamp = 1401492828
},
{
Name = "Update 13.6",
Link = "Update 13#Update 13.6",
Aliases = { "13.6", "13.6.0" },
ShortName = "U13.6",
Date = "2014-06-04",
Parent = "13.6",
ForumLink = "https://forums.warframe.com/topic/241372-update-1360-13601-pyrana/",
ArchiveLink = "https://web.archive.org/web/20220127035655/https://forums.warframe.com/topic/241372-update-1360-13601-pyrana/",
ArchiveDate = "2022-01-27",
Timestamp = 1401910030,
Subtitle = "Tenno Reinforcements: Pyrana"
},
{
Name = "Hotfix 13.6.0.1",
Link = "Update 13#Hotfix 13.6.0.1",
Aliases = { "13.6.0.1" },
ShortName = "H13.6.0.1",
Date = "2014-06-04",
Parent = "13.6",
ForumLink = "https://forums.warframe.com/topic/241372-update-1360-13601-pyrana/",
ArchiveLink = "https://web.archive.org/web/20220127035655/https://forums.warframe.com/topic/241372-update-1360-13601-pyrana/",
ArchiveDate = "2022-01-27",
Timestamp = 1401910030
},
{
Name = "Hotfix 13.6.1",
Link = "Update 13#Hotfix 13.6.1",
Aliases = { "13.6.1" },
ShortName = "H13.6.1",
Date = "2014-06-06",
Parent = "13.6",
ForumLink = "https://forums.warframe.com/topic/242306-hotfix-1361/",
ArchiveLink = "https://web.archive.org/web/20220127035618/https://forums.warframe.com/topic/242306-hotfix-1361/",
ArchiveDate = "2022-01-27",
Timestamp = 1402083198
},
{
Name = "Update 13.7",
Link = "Update 13#Update 13.7",
Aliases = { "13.7.0", "13.7" },
ShortName = "U13.7",
Date = "2014-06-11",
Parent = "13.7",
ForumLink = "https://forums.warframe.com/topic/244507-update-1370-13701-depths-of-the-void/",
ArchiveLink = "https://web.archive.org/web/20220127035424/https://forums.warframe.com/topic/244507-update-1370-13701-depths-of-the-void/",
ArchiveDate = "2022-01-27",
Timestamp = 1402529136,
Subtitle = "Depths Of The Void & Loki Prime"
},
{
Name = "Hotfix 13.7.0.1",
Link = "Update 13#Hotfix 13.7.0.1",
Aliases = { "13.7.0.1" },
ShortName = "H13.7.0.1",
Date = "2014-06-11",
Parent = "13.7",
ForumLink = "https://forums.warframe.com/topic/244507-update-1370-13701-depths-of-the-void/",
ArchiveLink = "https://web.archive.org/web/20220127035424/https://forums.warframe.com/topic/244507-update-1370-13701-depths-of-the-void/",
ArchiveDate = "2022-01-27",
Timestamp = 1402529136
},
{
Name = "Hotfix 13.7.1",
Link = "Update 13#Hotfix 13.7.1",
Aliases = { "13.7.1" },
ShortName = "H13.7.1",
Date = "2014-06-12",
Parent = "13.7",
ForumLink = "https://forums.warframe.com/topic/245171-update-1371/",
ArchiveLink = "https://web.archive.org/web/20220127035509/https://forums.warframe.com/topic/245171-update-1371/",
ArchiveDate = "2022-01-27",
Timestamp = 1402602733
},
{
Name = "Hotfix 13.7.2",
Link = "Update 13#Hotfix 13.7.2",
Aliases = { "13.7.2" },
ShortName = "H13.7.2",
Date = "2014-06-13",
Parent = "13.7",
ForumLink = "https://forums.warframe.com/topic/245835-hotfix-1372/",
ArchiveLink = "https://web.archive.org/web/20220127035317/https://forums.warframe.com/topic/245835-hotfix-1372/",
ArchiveDate = "2022-01-27",
Timestamp = 1402691959
},
{
Name = "Update 13.8",
Link = "Update 13#Update 13.8",
Aliases = { "13.8.0", "13.8" },
ShortName = "U13.8",
Date = "2014-06-19",
Parent = "13.8",
ForumLink = "https://forums.warframe.com/topic/249133-update-1380-breeding-grounds/",
ArchiveLink = "https://web.archive.org/web/20220127035240/https://forums.warframe.com/topic/249133-update-1380-breeding-grounds/",
ArchiveDate = "2022-01-27",
Timestamp = 1403213096,
Subtitle = "Operation: Breeding Grounds"
},
{
Name = "Hotfix 13.8.1",
Link = "Update 13#Hotfix 13.8.1",
Aliases = { "13.8.1" },
ShortName = "H13.8.1",
Date = "2014-06-19",
Parent = "13.8",
ForumLink = "https://forums.warframe.com/topic/249338-hotfix-1381/",
ArchiveLink = "https://web.archive.org/web/20220127035205/https://forums.warframe.com/topic/249338-hotfix-1381/",
ArchiveDate = "2022-01-27",
Timestamp = 1403231135
},
{
Name = "Hotfix 13.8.2",
Link = "Update 13#Hotfix 13.8.2",
Aliases = { "13.8.2" },
ShortName = "H13.8.2",
Date = "2014-06-20",
Parent = "13.8",
ForumLink = "https://forums.warframe.com/topic/249718-hotfix-1382/",
ArchiveLink = "https://web.archive.org/web/20220127035103/https://forums.warframe.com/topic/249718-hotfix-1382/",
ArchiveDate = "2022-01-27",
Timestamp = 1403282370
},
{
Name = "Hotfix 13.8.3",
Link = "Update 13#Hotfix 13.8.3",
Aliases = { "13.8.3" },
ShortName = "H13.8.3",
Date = "2014-06-20",
Parent = "13.8",
ForumLink = "https://forums.warframe.com/topic/249999-hotfix-1383/",
ArchiveLink = "https://web.archive.org/web/20220127035022/https://forums.warframe.com/topic/249999-hotfix-1383/",
ArchiveDate = "2022-01-27",
Timestamp = 1403305342
},
{
Name = "Hotfix 13.8.4",
Link = "Update 13#Hotfix 13.8.4",
Aliases = { "13.8.4" },
ShortName = "H13.8.4",
Date = "2014-06-23",
Parent = "13.8",
ForumLink = "https://forums.warframe.com/topic/251648-hotfix-1384/",
ArchiveLink = "https://web.archive.org/web/20220127034934/https://forums.warframe.com/topic/251648-hotfix-1384/",
ArchiveDate = "2022-01-27",
Timestamp = 1403552303
},
{
Name = "Hotfix 13.8.5",
Link = "Update 13#Hotfix 13.8.5",
Aliases = { "13.8.5" },
ShortName = "H13.8.5",
Date = "2014-06-24",
Parent = "13.8",
ForumLink = "https://forums.warframe.com/topic/252015-hotfix-1385/",
ArchiveLink = "https://web.archive.org/web/20220127034846/https://forums.warframe.com/topic/252015-hotfix-1385/",
ArchiveDate = "2022-01-27",
Timestamp = 1403617284
},
{
Name = "Update 13.9",
Link = "Update 13#Update 13.9",
Aliases = { "13.9.0", "13.9" },
ShortName = "U13.9",
Date = "2014-06-25",
Parent = "13.9",
ForumLink = "https://forums.warframe.com/topic/252764-1390-13901-the-venka/",
ArchiveLink = "https://web.archive.org/web/20210228005159/https://forums.warframe.com/topic/252764-1390-13901-the-venka/",
ArchiveDate = "2021-02-28",
Timestamp = 1403740619,
Subtitle = "Tenno Reinforcements: Venka & Pyra Syandana"
},
{
Name = "Hotfix 13.9.0.1",
Link = "Update 13#Hotfix 13.9.0.1",
Aliases = { "13.9.0.1" },
ShortName = "H13.9.0.1",
Date = "2014-06-25",
Parent = "13.9",
ForumLink = "https://forums.warframe.com/topic/252764-1390-13901-the-venka/",
ArchiveLink = "https://web.archive.org/web/20210228005159/https://forums.warframe.com/topic/252764-1390-13901-the-venka/",
ArchiveDate = "2021-02-28",
Timestamp = 1403740619
},
{
Name = "Hotfix 13.9.0.2",
Link = "Update 13#Hotfix 13.9.0.2",
Aliases = { "13.9.0.2" },
ShortName = "H13.9.0.2",
Date = "2014-06-26",
Parent = "13.9",
ForumLink = "https://forums.warframe.com/topic/253345-hotfix-13902/",
ArchiveLink = "https://web.archive.org/web/20191028160425/https://forums.warframe.com/topic/253345-hotfix-13902/",
ArchiveDate = "2019-10-28",
Timestamp = 1403816796
},
{
Name = "Hotfix 13.9.1",
Link = "Update 13#Hotfix 13.9.1",
Aliases = { "13.9.1" },
ShortName = "H13.9.1",
Date = "2014-07-02",
Parent = "13.9",
ForumLink = "https://forums.warframe.com/index.php?/topic/256210-hotfix-1391/",
ArchiveLink = "https://web.archive.org/web/20220127034549/https://forums.warframe.com/topic/256210-hotfix-1391/",
ArchiveDate = "2022-01-27",
Timestamp = 1404345147
},
{
Name = "Hotfix 13.9.1.1",
Link = "Update 13#Hotfix 13.9.1.1",
Aliases = { "13.9.1.1" },
ShortName = "H13.9.1.1",
Date = "2014-07-03",
Parent = "13.9",
ForumLink = "https://forums.warframe.com/topic/256615-hotfix-13911/",
ArchiveLink = "https://web.archive.org/web/20210303023941/https://forums.warframe.com/topic/256615-hotfix-13911/",
ArchiveDate = "2021-03-03",
Timestamp = 1404427536
},
{
Name = "Hotfix 13.9.2",
Link = "Update 13#Hotfix 13.9.2",
Aliases = { "13.9.2" },
ShortName = "H13.9.2",
Date = "2014-07-09",
Parent = "13.9",
ForumLink = "https://forums.warframe.com/topic/259187-hotfix-1392/",
ArchiveLink = "https://web.archive.org/web/20220127034335/https://forums.warframe.com/topic/259187-hotfix-1392/",
ArchiveDate = "2022-01-27",
Timestamp = 1404936852
},
{
Name = "Hotfix 13.9.3.1",
Link = "Update 13#Hotfix 13.9.3.1",
Aliases = { "13.9.3.1" },
ShortName = "H13.9.3.1",
Date = "2014-07-11",
Parent = "13.9",
ForumLink = "https://forums.warframe.com/topic/260180-hotfix-13931/",
ArchiveLink = "https://web.archive.org/web/20220127034237/https://forums.warframe.com/topic/260180-hotfix-13931/",
ArchiveDate = "2022-01-27",
Timestamp = 1405118076
},
{
Name = "Update 14.0",
Link = "Update 14#Update 14.0",
Aliases = { "Update 14", "14", "14.0" },
ShortName = "U14.0",
Date = "2014-07-18",
Parent = "14.0",
ForumLink = "https://forums.warframe.com/topic/263213-update-14-the-mad-cephalon/",
ArchiveLink = "https://web.archive.org/web/20201111203345/https://forums.warframe.com/topic/263213-update-14-the-mad-cephalon/",
ArchiveDate = "2020-11-11",
Timestamp = 1405676692,
Subtitle = "The Mad Cephalon"
},
{
Name = "Hotfix 14.0.1",
Link = "Update 14#Hotfix 14.0.1",
Aliases = { "14.0.1" },
ShortName = "H14.0.1",
Date = "2014-07-18",
Parent = "14.0",
ForumLink = "https://forums.warframe.com/topic/264446-hotfix-1401/",
ArchiveLink = "https://web.archive.org/web/20210303152311/https://forums.warframe.com/topic/264446-hotfix-1401/",
ArchiveDate = "2021-03-03",
Timestamp = 1405723877
},
{
Name = "Hotfix 14.0.2",
Link = "Update 14#Hotfix 14.0.2",
Aliases = { "14.0.2" },
ShortName = "H14.0.2",
Date = "2014-07-19",
Parent = "14.0",
ForumLink = "https://forums.warframe.com/topic/266200-hotfix-1402/",
ArchiveLink = "https://web.archive.org/web/20200923200519/https://forums.warframe.com/topic/266200-hotfix-1402/",
ArchiveDate = "2020-09-23",
Timestamp = 1405809563
},
{
Name = "Hotfix 14.0.3",
Link = "Update 14#Hotfix 14.0.3",
Aliases = { "14.0.3" },
ShortName = "H14.0.3",
Date = "2014-07-20",
Parent = "14.0",
ForumLink = "https://forums.warframe.com/topic/266549-hotfix-1403/",
ArchiveLink = "https://web.archive.org/web/20191028160454/https://forums.warframe.com/topic/266549-hotfix-1403/",
ArchiveDate = "2019-10-28",
Timestamp = 1405824990
},
{
Name = "Hotfix 14.0.4",
Link = "Update 14#Hotfix 14.0.4",
Aliases = { "14.0.4" },
ShortName = "H14.0.4",
Date = "2014-07-21",
Parent = "14.0",
ForumLink = "https://forums.warframe.com/topic/267655-hotfix-1404/",
ArchiveLink = "https://web.archive.org/web/20191028160404/https://forums.warframe.com/topic/267655-hotfix-1404/",
ArchiveDate = "2019-10-28",
Timestamp = 1405892048
},
{
Name = "Hotfix 14.0.5",
Link = "Update 14#Hotfix 14.0.5",
Aliases = { "14.0.5" },
ShortName = "H14.0.5",
Date = "2014-07-21",
Parent = "14.0",
ForumLink = "https://forums.warframe.com/topic/269089-hotfix-1405/",
ArchiveLink = "https://web.archive.org/web/20210309030416/https://forums.warframe.com/topic/269089-hotfix-1405/",
ArchiveDate = "2021-03-09",
Timestamp = 1405986153
},
{
Name = "Hotfix 14.0.6",
Link = "Update 14#Hotfix 14.0.6",
Aliases = { "14.0.6" },
ShortName = "H14.0.6",
Date = "2014-07-22",
Parent = "14.0",
ForumLink = "https://forums.warframe.com/topic/270031-hotfix-1406/",
ArchiveLink = "https://web.archive.org/web/20160411024247/https://forums.warframe.com/topic/270031-hotfix-1406/",
ArchiveDate = "2016-04-11",
Timestamp = 1406052564
},
{
Name = "Hotfix 14.0.7",
Link = "Update 14#Hotfix 14.0.7",
Aliases = { "14.0.7" },
ShortName = "H14.0.7",
Date = "2014-07-22",
Parent = "14.0",
ForumLink = "https://forums.warframe.com/topic/270543-hotfix-1407-14071/",
ArchiveLink = "https://web.archive.org/web/20201112005248/https://forums.warframe.com/topic/270543-hotfix-1407-14071/",
ArchiveDate = "2020-11-12",
Timestamp = 1406076577
},
{
Name = "Hotfix 14.0.7.1",
Link = "Update 14#Hotfix 14.0.7.1",
Aliases = { "14.0.7.1" },
ShortName = "H14.0.7.1",
Date = "2014-07-22",
Parent = "14.0",
ForumLink = "https://forums.warframe.com/topic/270543-hotfix-1407-14071/",
ArchiveLink = "https://web.archive.org/web/20201112005248/https://forums.warframe.com/topic/270543-hotfix-1407-14071/",
ArchiveDate = "2020-11-12",
Timestamp = 1406076577
},
{
Name = "Hotfix 14.0.8",
Link = "Update 14#Hotfix 14.0.8",
Aliases = { "14.0.8" },
ShortName = "H14.0.8",
Date = "2014-07-24",
Parent = "14.0",
ForumLink = "https://forums.warframe.com/topic/272088-hotfix-1408/",
ArchiveLink = "https://web.archive.org/web/20191028160359/https://forums.warframe.com/topic/272088-hotfix-1408/",
ArchiveDate = "2019-10-28",
Timestamp = 1406155199
},
{
Name = "Hotfix 14.0.9",
Link = "Update 14#Hotfix 14.0.9",
Aliases = { "14.0.9" },
ShortName = "H14.0.9",
Date = "2014-07-26",
Parent = "14.0",
ForumLink = "https://forums.warframe.com/topic/273702-hotfix-1409/",
ArchiveLink = "https://web.archive.org/web/20210122164437/https://forums.warframe.com/topic/273702-hotfix-1409/",
ArchiveDate = "2021-01-22",
Timestamp = 1406336614
},
{
Name = "Hotfix 14.0.10",
Link = "Update 14#Hotfix 14.0.10",
Aliases = { "14.0.10" },
ShortName = "H14.0.10",
Date = "2014-07-28",
Parent = "14.0",
ForumLink = "https://forums.warframe.com/topic/276638-hotfix-14010/",
ArchiveLink = "https://web.archive.org/web/20191028160417/https://forums.warframe.com/topic/276638-hotfix-14010/",
ArchiveDate = "2019-10-28",
Timestamp = 1406564617
},
{
Name = "Hotfix 14.0.11",
Link = "Update 14#Hotfix 14.0.11",
Aliases = { "14.0.11" },
ShortName = "H14.0.11",
Date = "2014-07-30",
Parent = "14.0",
ForumLink = "https://forums.warframe.com/topic/278042-hotfix-14011/",
ArchiveLink = "https://web.archive.org/web/20160411030218/https://forums.warframe.com/topic/278042-hotfix-14011/",
ArchiveDate = "2016-04-11",
Timestamp = 1406671699
},
{
Name = "Update 14.1",
Link = "Update 14#Update 14.1",
Aliases = { "14.1", "14.1.0" },
ShortName = "U14.1",
Date = "2014-07-30",
Parent = "14.1",
ForumLink = "https://forums.warframe.com/topic/279074-update-1410-quanta-dendra/",
ArchiveLink = "https://web.archive.org/web/20201111164450/https://forums.warframe.com/topic/279074-update-1410-quanta-dendra/",
ArchiveDate = "2020-11-11",
Timestamp = 1406760247,
Subtitle = "Tenno Reinforcements: Quanta & Dentra Armor"
},
{
Name = "Hotfix 14.1.1",
Link = "Update 14#Hotfix 14.1.1",
Aliases = { "14.1.1" },
ShortName = "H14.1.1",
Date = "2014-07-30",
Parent = "14.1",
ForumLink = "https://forums.warframe.com/topic/279252-hotfix-1411/",
ArchiveLink = "https://web.archive.org/web/20160411030322/https://forums.warframe.com/topic/279252-hotfix-1411/",
ArchiveDate = "2016-04-11",
Timestamp = 1406769746
},
{
Name = "Hotfix 14.1.2",
Link = "Update 14#Hotfix 14.1.2",
Aliases = { "14.1.2" },
ShortName = "H14.1.2",
Date = "2014-08-01",
Parent = "14.1",
ForumLink = "https://forums.warframe.com/topic/280072-hotfix-1412-14121/",
ArchiveLink = "https://web.archive.org/web/20191028160402/https://forums.warframe.com/topic/280072-hotfix-1412-14121/",
ArchiveDate = "2019-10-28",
Timestamp = 1406843577
},
{
Name = "Hotfix 14.1.2.1",
Link = "Update 14#Hotfix 14.1.2.1",
Aliases = { "14.1.2.1" },
ShortName = "H14.1.2.1",
Date = "2014-08-01",
Parent = "14.1",
ForumLink = "https://forums.warframe.com/topic/280072-hotfix-1412-14121/",
ArchiveLink = "https://web.archive.org/web/20191028160402/https://forums.warframe.com/topic/280072-hotfix-1412-14121/",
ArchiveDate = "2019-10-28",
Timestamp = 1406843577
},
{
Name = "Hotfix 14.1.3",
Link = "Update 14#Hotfix 14.1.3",
Aliases = { "14.1.3" },
ShortName = "H14.1.3",
Date = "2014-08-02",
Parent = "14.1",
ForumLink = "https://forums.warframe.com/topic/280774-hotfix-1413/",
ArchiveLink = "https://web.archive.org/web/20160411031042/https://forums.warframe.com/topic/280774-hotfix-1413/",
ArchiveDate = "2016-04-11",
Timestamp = 1406920183
},
{
Name = "Hotfix 14.1.4",
Link = "Update 14#Hotfix 14.1.4",
Aliases = { "14.1.4" },
ShortName = "H14.1.4",
Date = "2014-08-06",
Parent = "14.1",
ForumLink = "https://forums.warframe.com/topic/284750-hotfix-1414/",
ArchiveLink = "https://web.archive.org/web/20191028160359/https://forums.warframe.com/topic/284750-hotfix-1414/",
ArchiveDate = "2019-10-28",
Timestamp = 1407363227
},
{
Name = "Update 14.2",
Link = "Update 14#Update 14.2",
Aliases = { "14.2.0", "14.2" },
ShortName = "U14.2",
Date = "2014-08-13",
Parent = "14.2",
ForumLink = "https://forums.warframe.com/topic/289522-update-1420-avalanche-offensive/",
ArchiveLink = "https://web.archive.org/web/20210226183524/https://forums.warframe.com/topic/289522-update-1420-avalanche-offensive/",
ArchiveDate = "2021-02-26",
Timestamp = 1407969541,
Subtitle = "Avalanche Offensive + Tenno Reinforcements: Karyst"
},
{
Name = "Hotfix 14.2.1",
Link = "Update 14#Hotfix 14.2.1",
Aliases = { "14.2.1" },
ShortName = "H14.2.1",
Date = "2014-08-14",
Parent = "14.2",
ForumLink = "https://forums.warframe.com/topic/290225-hotfix-1421/",
ArchiveLink = "https://web.archive.org/web/20160411040901/https://forums.warframe.com/topic/290225-hotfix-1421/",
ArchiveDate = "2016-04-11",
Timestamp = 1408039876
},
{
Name = "Hotfix 14.2.2",
Link = "Update 14#Hotfix 14.2.2",
Aliases = { "14.2.2" },
ShortName = "H14.2.2",
Date = "2014-08-15",
Parent = "14.2",
ForumLink = "https://forums.warframe.com/topic/291076-hotfix-1422/",
ArchiveLink = "https://web.archive.org/web/20210513104014/https://forums.warframe.com/topic/291076-hotfix-1422/",
ArchiveDate = "2021-05-13",
Timestamp = 1408141556
},
{
Name = "Hotfix 14.2.3",
Link = "Update 14#Hotfix 14.2.3",
Aliases = { "14.2.3" },
ShortName = "H14.2.3",
Date = "2014-08-21",
Parent = "14.2",
ForumLink = "https://forums.warframe.com/topic/294208-hotfix-1423/",
ArchiveLink = "https://web.archive.org/web/20201111185403/https://forums.warframe.com/topic/294208-hotfix-1423/",
ArchiveDate = "2020-11-11",
Timestamp = 1408571882
},
{
Name = "Hotfix 14.2.4",
Link = "Update 14#Hotfix 14.2.4",
Aliases = { "14.2.4" },
ShortName = "H14.2.4",
Date = "2014-08-23",
Parent = "14.2",
ForumLink = "https://forums.warframe.com/topic/295581-hotfix-1424-tactical-alert-hyena-facility/",
ArchiveLink = "https://web.archive.org/web/20191028160313/https://forums.warframe.com/topic/295581-hotfix-1424-tactical-alert-hyena-facility/",
ArchiveDate = "2019-10-28",
Timestamp = 1408743468,
Subtitle = "Tactical Alert - Hyena Facility"
},
{
Name = "Update 14.5",
Link = "Update 14#Update 14.5",
Aliases = { "14.5.0", "14.5" },
ShortName = "U14.5",
Date = "2014-08-28",
Parent = "14.5",
ForumLink = "https://forums.warframe.com/topic/298960-update-145-operation-cryotic-front/",
ArchiveLink = "https://web.archive.org/web/20201111203613/https://forums.warframe.com/topic/298960-update-145-operation-cryotic-front/",
ArchiveDate = "2020-11-11",
Timestamp = 1409233174,
Subtitle = "Operation Cryotic Front"
},
{
Name = "Hotfix 14.5.0.1",
Link = "Update 14#Hotfix 14.5.0.1",
Aliases = { "14.5.0.1" },
ShortName = "H14.5.0.1",
Date = "2014-08-28",
Parent = "14.5",
ForumLink = "https://forums.warframe.com/topic/299228-hotfix-14501-14502/",
ArchiveLink = "https://web.archive.org/web/20210127173947/https://forums.warframe.com/topic/299228-hotfix-14501-14502/",
ArchiveDate = "2021-01-27",
Timestamp = 1409249579
},
{
Name = "Hotfix 14.5.0.2",
Link = "Update 14#Hotfix 14.5.0.2",
Aliases = { "14.5.0.2" },
ShortName = "H14.5.0.2",
Date = "2014-08-28",
Parent = "14.5",
ForumLink = "https://forums.warframe.com/topic/299228-hotfix-14501-14502/",
ArchiveLink = "https://web.archive.org/web/20210127173947/https://forums.warframe.com/topic/299228-hotfix-14501-14502/",
ArchiveDate = "2021-01-27",
Timestamp = 1409262726
},
{
Name = "Hotfix 14.5.0.3",
Link = "Update 14#Hotfix 14.5.0.3",
Aliases = { "14.5.0.3" },
ShortName = "H14.5.0.3",
Date = "2014-08-29",
Parent = "14.5",
ForumLink = "https://forums.warframe.com/topic/300082-hotfix-14503/",
ArchiveLink = "https://web.archive.org/web/20160411044743/https://forums.warframe.com/topic/300082-hotfix-14503/",
ArchiveDate = "2016-04-11",
Timestamp = 1409327562
},
{
Name = "Hotfix 14.5.1",
Link = "Update 14#Hotfix 14.5.1",
Aliases = { "14.5.1" },
ShortName = "H14.5.1",
Date = "2014-08-30",
Parent = "14.5",
ForumLink = "https://forums.warframe.com/topic/300491-hotfix-145114511/",
ArchiveLink = "https://web.archive.org/web/20191028160322/https://forums.warframe.com/topic/300491-hotfix-145114511/",
ArchiveDate = "2019-10-28",
Timestamp = 1409363108
},
{
Name = "Hotfix 14.5.1.1",
Link = "Update 14#Hotfix 14.5.1.1",
Aliases = { "14.5.1.1" },
ShortName = "H14.5.1.1",
Date = "2014-08-31",
Parent = "14.5",
ForumLink = "https://forums.warframe.com/topic/300491-hotfix-145114511/",
ArchiveLink = "https://web.archive.org/web/20191028160322/https://forums.warframe.com/topic/300491-hotfix-145114511/",
ArchiveDate = "2019-10-28",
Timestamp = 1409363108
},
{
Name = "Hotfix 14.5.2",
Link = "Update 14#Hotfix 14.5.2",
Aliases = { "14.5.2" },
ShortName = "H14.5.2",
Date = "2014-09-03",
Parent = "14.5",
ForumLink = "https://forums.warframe.com/topic/303889-hotfix-1452/",
ArchiveLink = "https://web.archive.org/web/20191028160248/https://forums.warframe.com/topic/303889-hotfix-1452/",
ArchiveDate = "2019-10-28",
Timestamp = 1409783516
},
{
Name = "Update 14.6",
Link = "Update 14#Update 14.6",
Aliases = { "14.6.0", "14.6" },
ShortName = "U14.6",
Date = "2014-09-11",
Parent = "14.6",
ForumLink = "https://forums.warframe.com/topic/307792-update-1460/",
ArchiveLink = "https://web.archive.org/web/20201111212402/https://forums.warframe.com/topic/307792-update-1460/",
ArchiveDate = "2020-11-11",
Timestamp = 1410384986,
Subtitle = "Tenno Reinforcements: Harkonar Armor"
},
{
Name = "Hotfix 14.6.1",
Link = "Update 14#Hotfix 14.6.1",
Aliases = { "14.6.1" },
ShortName = "H14.6.1",
Date = "2014-09-11",
Parent = "14.6",
ForumLink = "https://forums.warframe.com/topic/308432-hotfix-1461/",
ArchiveLink = "https://web.archive.org/web/20160411051725/https://forums.warframe.com/topic/308432-hotfix-1461/",
ArchiveDate = "2016-04-11",
Timestamp = 1410469385
},
{
Name = "Update 14.7",
Link = "Update 14#Update 14.7",
Aliases = { "14.7.0", "14.7" },
ShortName = "U14.7",
Date = "2014-09-17",
Parent = "14.7",
ForumLink = "https://forums.warframe.com/topic/311669-update-1470-operation-gate-crash/",
ArchiveLink = "https://web.archive.org/web/20200808002023/https://forums.warframe.com/topic/311669-update-1470-operation-gate-crash/",
ArchiveDate = "2020-08-08",
Timestamp = 1411012275,
Subtitle = "Operation Gate Crash"
},
{
Name = "Hotfix 14.7.1",
Link = "Update 14#Hotfix 14.7.1",
Aliases = { "14.7.1" },
ShortName = "H14.7.1",
Date = "2014-09-18",
Parent = "14.7",
ForumLink = "https://forums.warframe.com/topic/311712-hotfix-1471/",
ArchiveLink = "https://web.archive.org/web/20160411052646/https://forums.warframe.com/topic/311712-hotfix-1471/",
ArchiveDate = "2016-04-11",
Timestamp = 1411020738
},
{
Name = "Hotfix 14.7.2",
Link = "Update 14#Hotfix 14.7.2",
Aliases = { "14.7.2" },
ShortName = "H14.7.2",
Date = "2014-09-18",
Parent = "14.7",
ForumLink = "https://forums.warframe.com/topic/312035-hotfix-1472/",
ArchiveLink = "https://web.archive.org/web/20160411052723/https://forums.warframe.com/topic/312035-hotfix-1472/",
ArchiveDate = "2016-04-11",
Timestamp = 1411070484
},
{
Name = "Hotfix 14.7.3",
Link = "Update 14#Hotfix 14.7.3",
Aliases = { "14.7.3" },
ShortName = "H14.7.3",
Date = "2014-09-19",
Parent = "14.7",
ForumLink = "https://forums.warframe.com/topic/312092-hotfix-1473-14731/",
ArchiveLink = "https://web.archive.org/web/20201112040501/https://forums.warframe.com/topic/312092-hotfix-1473-14731/",
ArchiveDate = "2020-11-12",
Timestamp = 1411077666
},
{
Name = "Hotfix 14.7.3.1",
Link = "Update 14#Hotfix 14.7.3.1",
Aliases = { "14.7.3.1" },
ShortName = "H14.7.3.1",
Date = "2014-09-19",
Parent = "14.7",
ForumLink = "https://forums.warframe.com/topic/312092-hotfix-1473-14731/",
ArchiveLink = "https://web.archive.org/web/20201112040501/https://forums.warframe.com/topic/312092-hotfix-1473-14731/",
ArchiveDate = "2020-11-12",
Timestamp = 1411077666
},
{
Name = "Hotfix 14.7.4",
Link = "Update 14#Hotfix 14.7.4",
Aliases = { "14.7.4" },
ShortName = "H14.7.4",
Date = "2014-09-20",
Parent = "14.7",
ForumLink = "https://forums.warframe.com/topic/312574-hotfix-1474/",
ArchiveLink = "https://web.archive.org/web/20191028160227/https://forums.warframe.com/topic/312574-hotfix-1474/",
ArchiveDate = "2019-10-28",
Timestamp = 1411160794
},
{
Name = "Update 14.8",
Link = "Update 14#Update 14.8",
Aliases = { "14.8.0", "14.8" },
ShortName = "U14.8",
Date = "2014-09-24",
Parent = "14.8",
ForumLink = "https://forums.warframe.com/topic/314372-update-1480-nyx-prime/",
ArchiveLink = "https://web.archive.org/web/20190820000119/https://forums.warframe.com/topic/314372-update-1480-nyx-prime/",
ArchiveDate = "2019-08-20",
Timestamp = 1411500773,
Subtitle = "Nyx Prime"
},
{
Name = "Hotfix 14.8.1",
Link = "Update 14#Hotfix 14.8.1",
Aliases = { "14.8.1" },
ShortName = "H14.8.1",
Date = "2014-09-25",
Parent = "14.8",
ForumLink = "https://forums.warframe.com/topic/315127-hotfix-1481/",
ArchiveLink = "https://web.archive.org/web/20191028160233/https://forums.warframe.com/topic/315127-hotfix-1481/",
ArchiveDate = "2019-10-28",
Timestamp = 1411596657
},
{
Name = "Update 14.9",
Link = "Update 14#Update 14.9",
Aliases = { "14.9.0", "14.9" },
ShortName = "U14.9",
Date = "2014-10-01",
Parent = "14.9",
ForumLink = "https://forums.warframe.com/topic/318500-update-1490/",
ArchiveLink = "https://web.archive.org/web/20210511200850/https://forums.warframe.com/topic/318500-update-1490/",
ArchiveDate = "2021-05-11",
Timestamp = 1412199561,
Subtitle = "Tenno Reinforcements: Slipstream & Enigma Helmets and Tiberon"
},
{
Name = "Hotfix 14.9.1",
Link = "Update 14#Hotfix 14.9.1",
Aliases = { "14.9.1" },
ShortName = "H14.9.1",
Date = "2014-10-02",
Parent = "14.9",
ForumLink = "https://forums.warframe.com/topic/318912-hotfix-1491/",
ArchiveLink = "https://web.archive.org/web/20191028160246/https://forums.warframe.com/topic/318912-hotfix-1491/",
ArchiveDate = "2019-10-28",
Timestamp = 1412272278
},
{
Name = "Hotfix 14.9.2",
Link = "Update 14#Hotfix 14.9.2",
Aliases = { "14.9.2" },
ShortName = "H14.9.2",
Date = "2014-10-03",
Parent = "14.9",
ForumLink = "https://forums.warframe.com/topic/319485-hotfix-1492/",
ArchiveLink = "https://web.archive.org/web/20191028160230/https://forums.warframe.com/topic/319485-hotfix-1492/",
ArchiveDate = "2019-10-28",
Timestamp = 1412370596
},
{
Name = "Hotfix 14.9.2.1",
Link = "Update 14#Hotfix 14.9.2.1",
Aliases = { "14.9.2.1" },
ShortName = "H14.9.2.1",
Date = "2014-10-03",
Parent = "14.9",
ForumLink = "https://forums.warframe.com/topic/319485-hotfix-1492/",
ArchiveLink = "https://web.archive.org/web/20191028160230/https://forums.warframe.com/topic/319485-hotfix-1492/",
ArchiveDate = "2019-10-28",
Timestamp = 1412370596
},
{
Name = "Update 14.10",
Link = "Update 14#Update 14.10",
Aliases = { "14.10.0", "14.10" },
ShortName = "U14.10",
Date = "2014-10-08",
Parent = "14.10",
ForumLink = "https://forums.warframe.com/topic/321746-update-14100/",
ArchiveLink = "https://web.archive.org/web/20201111203743/https://forums.warframe.com/topic/321746-update-14100/",
ArchiveDate = "2020-11-11",
Timestamp = 1412805600,
Subtitle = "Excavation Has Returned"
},
{
Name = "Hotfix 14.10.1",
Link = "Update 14#Hotfix 14.10.1",
Aliases = { "14.10.1" },
ShortName = "H14.10.1",
Date = "2014-10-09",
Parent = "14.10",
ForumLink = "https://forums.warframe.com/topic/322132-hotfix-14101/",
ArchiveLink = "https://web.archive.org/web/20160409113729/https://forums.warframe.com/topic/322132-hotfix-14101/",
ArchiveDate = "2016-04-09",
Timestamp = 1412872914
},
{
Name = "Hotfix 14.10.2",
Link = "Update 14#Hotfix 14.10.2",
Aliases = { "14.10.2" },
ShortName = "H14.10.2",
Date = "2014-10-10",
Parent = "14.10",
ForumLink = "https://forums.warframe.com/topic/322655-hotfix-14102-141021/",
ArchiveLink = "https://web.archive.org/web/20160411061923/https://forums.warframe.com/topic/322655-hotfix-14102-141021/",
ArchiveDate = "2016-04-11",
Timestamp = 1412976561
},
{
Name = "Hotfix 14.10.2.1",
Link = "Update 14#Hotfix 14.10.2.1",
Aliases = { "14.10.2.1" },
ShortName = "H14.10.2.1",
Date = "2014-10-10",
Parent = "14.10",
ForumLink = "https://forums.warframe.com/topic/322655-hotfix-14102-141021/",
ArchiveLink = "https://web.archive.org/web/20160411061923/https://forums.warframe.com/topic/322655-hotfix-14102-141021/",
ArchiveDate = "2016-04-11",
Timestamp = 1412984440
},
{
Name = "Hotfix 14.10.3",
Link = "Update 14#Hotfix 14.10.3",
Aliases = { "14.10.3" },
ShortName = "H14.10.3",
Date = "2014-10-15",
Parent = "14.10",
ForumLink = "https://forums.warframe.com/topic/324763-hotfix-14103/",
ArchiveLink = "https://web.archive.org/web/20191028160146/https://forums.warframe.com/topic/324763-hotfix-14103/",
ArchiveDate = "2019-10-28",
Timestamp = 1413410749
},
{
Name = "Update 15.0",
Link = "Update 15#Update 15.0",
Aliases = { "15.0", "15", "Archwing", "Update 15" },
ShortName = "U15.0",
Date = "2014-10-24",
Parent = "15.0",
ForumLink = "https://forums.warframe.com/topic/328727-warframe-archwing/",
ArchiveLink = "https://web.archive.org/web/20201112000341/https://forums.warframe.com/topic/328727-warframe-archwing/",
ArchiveDate = "2020-11-12",
Timestamp = 1414155128,
Subtitle = "Warframe: Archwing"
},
{
Name = "Hotfix 15.0.1",
Link = "Update 15#Hotfix 15.0.1",
Aliases = { "15.0.1" },
ShortName = "H15.0.1",
Date = "2014-10-24",
Parent = "15.0",
ForumLink = "https://forums.warframe.com/topic/329586-hotfix-1501/",
ArchiveLink = "https://web.archive.org/web/20210228012427/https://forums.warframe.com/topic/329586-hotfix-1501/",
ArchiveDate = "2021-02-28",
Timestamp = 1414184381
},
{
Name = "Hotfix 15.0.2",
Link = "Update 15#Hotfix 15.0.2",
Aliases = { "15.0.2" },
ShortName = "H15.0.2",
Date = "2014-10-24",
Parent = "15.0",
ForumLink = "https://forums.warframe.com/topic/329893-hotfix-1502/",
ArchiveLink = "https://web.archive.org/web/20200923201641/https://forums.warframe.com/topic/329893-hotfix-1502/",
ArchiveDate = "2020-09-23",
Timestamp = 1414194414
},
{
Name = "Hotfix 15.0.3",
Link = "Update 15#Hotfix 15.0.3",
Aliases = { "15.0.3" },
ShortName = "H15.0.3",
Date = "2014-10-24",
Parent = "15.0",
ForumLink = "https://forums.warframe.com/topic/330379-hotfix-1503/",
ArchiveLink = "https://web.archive.org/web/20201112023704/https://forums.warframe.com/topic/330379-hotfix-1503/",
ArchiveDate = "2020-11-12",
Timestamp = 1414212787
},
{
Name = "Hotfix 15.0.4",
Link = "Update 15#Hotfix 15.0.4",
Aliases = { "15.0.4" },
ShortName = "H15.0.4",
Date = "2014-10-25",
Parent = "15.0",
ForumLink = "https://forums.warframe.com/topic/331599-hotfix-1504/",
ArchiveLink = "https://web.archive.org/web/20201112031252/https://forums.warframe.com/topic/331599-hotfix-1504/",
ArchiveDate = "2020-11-12",
Timestamp = 1414281277
},
{
Name = "Hotfix 15.0.5",
Link = "Update 15#Hotfix 15.0.5",
Aliases = { "15.0.5" },
ShortName = "H15.0.5",
Date = "2014-10-27",
Parent = "15.0",
ForumLink = "https://forums.warframe.com/topic/333619-hotfix-1505/",
ArchiveLink = "https://web.archive.org/web/20191028160135/https://forums.warframe.com/topic/333619-hotfix-1505/",
ArchiveDate = "2019-10-28",
Timestamp = 1414435858
},
{
Name = "Hotfix 15.0.6",
Link = "Update 15#Hotfix 15.0.6",
Aliases = { "15.0.6" },
ShortName = "H15.0.6",
Date = "2014-10-27",
Parent = "15.0",
ForumLink = "https://forums.warframe.com/topic/333871-hotfix-1506/",
ArchiveLink = "https://web.archive.org/web/20160411070049/https://forums.warframe.com/topic/333871-hotfix-1506/",
ArchiveDate = "2016-04-11",
Timestamp = 1414449951
},
{
Name = "Hotfix 15.0.7",
Link = "Update 15#Hotfix 15.0.7",
Aliases = { "15.0.7" },
ShortName = "H15.0.7",
Date = "2014-10-28",
Parent = "15.0",
ForumLink = "https://forums.warframe.com/topic/334873-hotfix-1507/",
ArchiveLink = "https://web.archive.org/web/20201028195224/https://forums.warframe.com/topic/334873-hotfix-1507/",
ArchiveDate = "2020-10-28",
Timestamp = 1414537444
},
{
Name = "Hotfix 15.0.8",
Link = "Update 15#Hotfix 15.0.8",
Aliases = { "15.0.8" },
ShortName = "H15.0.8",
Date = "2014-10-29",
Parent = "15.0",
ForumLink = "https://forums.warframe.com/topic/335717-hotfix-1508/",
ArchiveLink = "https://web.archive.org/web/20160411072621/https://forums.warframe.com/topic/335717-hotfix-1508/",
ArchiveDate = "2016-04-11",
Timestamp = 1414625555
},
{
Name = "Hotfix 15.0.9",
Link = "Update 15#Hotfix 15.0.9",
Aliases = { "15.0.9" },
ShortName = "H15.0.9",
Date = "2014-10-30",
Parent = "15.0",
ForumLink = "https://forums.warframe.com/topic/336430-hotfix-1509/",
ArchiveLink = "https://web.archive.org/web/20191028160142/https://forums.warframe.com/topic/336430-hotfix-1509/",
ArchiveDate = "2019-10-28",
Timestamp = 1414707746
},
{
Name = "Update 15.1",
Link = "Update 15#Update 15.1",
Aliases = { "15.1.0", "15.1" },
ShortName = "U15.1",
Date = "2014-11-05",
Parent = "15.1",
ForumLink = "https://forums.warframe.com/topic/340143-update-151015101/",
ArchiveLink = "https://web.archive.org/web/20210304221027/https://forums.warframe.com/topic/340143-update-151015101/",
ArchiveDate = "2021-03-04",
Timestamp = 1415227576
},
{
Name = "Hotfix 15.1.0.1",
Link = "Update 15#Hotfix 15.1.0.1",
Aliases = { "15.1.01", "15.1.0.1", "Hotfix 15.1.01" },
ShortName = "H15.1.01",
Date = "2014-11-05",
Parent = "15.1",
ForumLink = "https://forums.warframe.com/topic/340143-update-151015101/",
ArchiveLink = "https://web.archive.org/web/20210304221027/https://forums.warframe.com/topic/340143-update-151015101/",
ArchiveDate = "2021-03-04",
Timestamp = 1415236490
},
{
Name = "Hotfix 15.1.1",
Link = "Update 15#Hotfix 15.1.1",
Aliases = { "15.1.1" },
ShortName = "H15.1.1",
Date = "2014-11-06",
Parent = "15.1",
ForumLink = "https://forums.warframe.com/topic/340842-hotfix-1511/",
ArchiveLink = "https://web.archive.org/web/20200806132607/https://forums.warframe.com/topic/340842-hotfix-1511/",
ArchiveDate = "2020-08-06",
Timestamp = 1415310486
},
{
Name = "Hotfix 15.1.2",
Link = "Update 15#Hotfix 15.1.2",
Aliases = { "15.1.2" },
ShortName = "H15.1.2",
Date = "2014-11-08",
Parent = "15.1",
ForumLink = "https://forums.warframe.com/topic/341594-hotfix-1512/",
ArchiveLink = "https://web.archive.org/web/20201111163458/https://forums.warframe.com/topic/341594-hotfix-1512/",
ArchiveDate = "2020-11-11",
Timestamp = 1415405182
},
{
Name = "Hotfix 15.1.3",
Link = "Update 15#Hotfix 15.1.3",
Aliases = { "15.1.3" },
ShortName = "H15.1.3",
Date = "2014-11-08",
Parent = "15.1",
ForumLink = "https://forums.warframe.com/topic/343682-hotfix-1513/",
ArchiveLink = "https://web.archive.org/web/20200813030415/https://forums.warframe.com/topic/343682-hotfix-1513/",
ArchiveDate = "2020-08-13",
Timestamp = 1415723352
},
{
Name = "Update 15.2",
Link = "Update 15#Update 15.2",
Aliases = { "15.2.0", "15.2" },
ShortName = "U15.2",
Date = "2014-11-13",
Parent = "15.2",
ForumLink = "https://forums.warframe.com/topic/344505-update-1520/",
ArchiveLink = "https://web.archive.org/web/20210122221705/https://forums.warframe.com/topic/344505-update-1520/",
ArchiveDate = "2021-01-22",
Timestamp = 1415840405,
Subtitle = "Tenno Reinforcements: Rathbone and Velocitus"
},
{
Name = "Hotfix 15.2.1",
Link = "Update 15#Hotfix 15.2.1",
Aliases = { "15.2.1" },
ShortName = "H15.2.1",
Date = "2014-11-14",
Parent = "15.2",
ForumLink = "https://forums.warframe.com/topic/345935-hotfix-1521-1522/",
ArchiveLink = "https://web.archive.org/web/20160411075909/https://forums.warframe.com/topic/345935-hotfix-1521-1522/",
ArchiveDate = "2016-04-11",
Timestamp = 1415990200
},
{
Name = "Hotfix 15.2.2",
Link = "Update 15#Hotfix 15.2.2",
Aliases = { "15.2.2" },
ShortName = "H15.2.2",
Date = "2014-11-14",
Parent = "15.2",
ForumLink = "https://forums.warframe.com/topic/345935-hotfix-1521-1522/",
ArchiveLink = "https://web.archive.org/web/20160411075909/https://forums.warframe.com/topic/345935-hotfix-1521-1522/",
ArchiveDate = "2016-04-11",
Timestamp = 1415990200
},
{
Name = "Update 15.3",
Link = "Update 15#Update 15.3",
Aliases = { "15.3.0", "15.3" },
ShortName = "U15.3",
Date = "2014-11-20",
Parent = "15.3",
ForumLink = "https://forums.warframe.com/topic/349166-update-1530/",
ArchiveLink = "https://web.archive.org/web/20160411081741/https://forums.warframe.com/topic/349166-update-1530/",
ArchiveDate = "2016-04-11",
Timestamp = 1416506268
},
{
Name = "Hotfix 15.3.1",
Link = "Update 15#Hotfix 15.3.1",
Aliases = { "15.3.1" },
ShortName = "H15.3.1",
Date = "2014-11-20",
Parent = "15.3",
ForumLink = "https://forums.warframe.com/topic/349380-hotfix-1531/",
ArchiveLink = "https://web.archive.org/web/20191028160158/https://forums.warframe.com/topic/349380-hotfix-1531/",
ArchiveDate = "2019-10-28",
Timestamp = 1416521959
},
{
Name = "Hotfix 15.3.2",
Link = "Update 15#Hotfix 15.3.2",
Aliases = { "15.3.2" },
ShortName = "H15.3.2",
Date = "2014-11-21",
Parent = "15.3",
ForumLink = "https://forums.warframe.com/topic/349994-hotfix-1532/",
ArchiveLink = "https://web.archive.org/web/20191028160159/https://forums.warframe.com/topic/349994-hotfix-1532/",
ArchiveDate = "2019-10-28",
Timestamp = 1416599528
},
{
Name = "Hotfix 15.3.3",
Link = "Update 15#Hotfix 15.3.3",
Aliases = { "15.3.3" },
ShortName = "H15.3.3",
Date = "2014-11-25",
Parent = "15.3",
ForumLink = "https://forums.warframe.com/topic/351670-hotfix-1533/",
ArchiveLink = "https://web.archive.org/web/20210513084027/https://forums.warframe.com/topic/351670-hotfix-1533/",
ArchiveDate = "2021-05-13",
Timestamp = 1416874805
},
{
Name = "Update 15.5",
Link = "Update 15#Update 15.5",
Aliases = { "15.5", "15.5.0" },
ShortName = "U15.5",
Date = "2014-11-27",
Parent = "15.5",
ForumLink = "https://forums.warframe.com/topic/352963-mesa-update/",
ArchiveLink = "https://web.archive.org/web/20210304195127/https://forums.warframe.com/topic/352963-mesa-update/",
ArchiveDate = "2021-03-04",
Timestamp = 1417109405,
Subtitle = "Mesa Update"
},
{
Name = "Hotfix 15.5.1",
Link = "Update 15#Hotfix 15.5.1",
Aliases = { "15.5.1" },
ShortName = "H15.5.1",
Date = "2014-11-27",
Parent = "15.5",
ForumLink = "https://forums.warframe.com/topic/353150-hotfix-1551/",
ArchiveLink = "https://web.archive.org/web/20160411084431/https://forums.warframe.com/topic/353150-hotfix-1551/",
ArchiveDate = "2016-04-11",
Timestamp = 1417120847
},
{
Name = "Hotfix 15.5.2",
Link = "Update 15#Hotfix 15.5.2",
Aliases = { "15.5.2" },
ShortName = "H15.5.2",
Date = "2014-11-27",
Parent = "15.5",
ForumLink = "https://forums.warframe.com/topic/353312-hotfix-1552/",
ArchiveLink = "https://web.archive.org/web/20220111225138/https://forums.warframe.com/topic/353312-hotfix-1552/",
ArchiveDate = "2022-01-11",
Timestamp = 1417132072
},
{
Name = "Hotfix 15.5.3",
Link = "Update 15#Hotfix 15.5.3",
Aliases = { "15.5.3" },
ShortName = "H15.5.3",
Date = "2014-11-28",
Parent = "15.5",
ForumLink = "https://forums.warframe.com/topic/354003-hotfix-1553/",
ArchiveLink = "https://web.archive.org/web/20200811091352/https://forums.warframe.com/topic/354003-hotfix-1553/",
ArchiveDate = "2020-08-11",
Timestamp = 1417203604
},
{
Name = "Hotfix 15.5.4",
Link = "Update 15#Hotfix 15.5.4",
Aliases = { "15.5.4" },
ShortName = "H15.5.4",
Date = "2014-11-29",
Parent = "15.5",
ForumLink = "https://forums.warframe.com/topic/354796-hotfix-1554/",
ArchiveLink = "https://web.archive.org/web/20200813033540/https://forums.warframe.com/topic/354796-hotfix-1554/",
ArchiveDate = "2020-08-13",
Timestamp = 1417287791
},
{
Name = "Hotfix 15.5.5",
Link = "Update 15#Hotfix 15.5.5",
Aliases = { "15.5.5" },
ShortName = "H15.5.5",
Date = "2014-12-01",
Parent = "15.5",
ForumLink = "https://forums.warframe.com/topic/356440-hotfix-1555/",
ArchiveLink = "https://web.archive.org/web/20201024154856/https://forums.warframe.com/topic/356440-hotfix-1555/",
ArchiveDate = "2020-10-24",
Timestamp = 1417475362
},
{
Name = "Hotfix 15.5.6",
Link = "Update 15#Hotfix 15.5.6",
Aliases = { "15.5.6" },
ShortName = "H15.5.6",
Date = "2014-12-02",
Parent = "15.5",
ForumLink = "https://forums.warframe.com/topic/357182-hotfix-1556/",
ArchiveLink = "https://web.archive.org/web/20160411090651/https://forums.warframe.com/topic/357182-hotfix-1556/",
ArchiveDate = "2016-04-11",
Timestamp = 1417563206
},
{
Name = "Hotfix 15.5.7",
Link = "Update 15#Hotfix 15.5.7",
Aliases = { "15.5.7" },
ShortName = "H15.5.7",
Date = "2014-12-03",
Parent = "15.5",
ForumLink = "https://forums.warframe.com/topic/357864-hotfix-155715571/",
ArchiveLink = "https://web.archive.org/web/20211105101637/https://forums.warframe.com/topic/357864-hotfix-155715571/",
ArchiveDate = "2021-11-05",
Timestamp = 1417643734
},
{
Name = "Hotfix 15.5.7.1",
Link = "Update 15#Hotfix 15.5.7.1",
Aliases = { "15.5.7.1" },
ShortName = "H15.5.7.1",
Date = "2014-12-03",
Parent = "15.5",
ForumLink = "https://forums.warframe.com/topic/357864-hotfix-155715571/",
ArchiveLink = "https://web.archive.org/web/20211105101637/https://forums.warframe.com/topic/357864-hotfix-155715571/",
ArchiveDate = "2021-11-05",
Timestamp = 1417650557
},
{
Name = "Hotfix 15.5.8",
Link = "Update 15#Hotfix 15.5.8",
Aliases = { "15.5.8" },
ShortName = "H15.5.8",
Date = "2014-12-05",
Parent = "15.5",
ForumLink = "https://forums.warframe.com/topic/359419-hotfix-1558/",
ArchiveLink = "https://web.archive.org/web/20191028160032/https://forums.warframe.com/topic/359419-hotfix-1558/",
ArchiveDate = "2019-10-28",
Timestamp = 1417821469
},
{
Name = "Hotfix 15.5.9",
Link = "Update 15#Hotfix 15.5.9",
Aliases = { "15.5.9" },
ShortName = "H15.5.9",
Date = "2014-12-08",
Parent = "15.5",
ForumLink = "https://forums.warframe.com/topic/361470-hotfix-1559/",
ArchiveLink = "https://web.archive.org/web/20160411091617/https://forums.warframe.com/topic/361470-hotfix-1559/",
ArchiveDate = "2016-04-11",
Timestamp = 1418085025
},
{
Name = "Update 15.6",
Link = "Update 15#Update 15.6",
Aliases = { "15.6.0", "15.6" },
ShortName = "U15.6",
Date = "2014-12-11",
Parent = "15.6",
ForumLink = "https://forums.warframe.com/topic/363216-update-1560/",
ArchiveLink = "https://web.archive.org/web/20210312030919/https://forums.warframe.com/topic/363216-update-1560/",
ArchiveDate = "2021-03-12",
Timestamp = 1418335466,
Subtitle = "Tenno Reinforcements: Kohm and Tenno Relays"
},
{
Name = "Hotfix 15.6.1",
Link = "Update 15#Hotfix 15.6.1",
Aliases = { "15.6.1" },
ShortName = "H15.6.1",
Date = "2014-12-11",
Parent = "15.6",
ForumLink = "https://forums.warframe.com/topic/363373-hotfix-1561/",
ArchiveLink = "https://web.archive.org/web/20160411092205/https://forums.warframe.com/topic/363373-hotfix-1561/",
ArchiveDate = "2016-04-11",
Timestamp = 1418343257
},
{
Name = "Hotfix 15.6.2",
Link = "Update 15#Hotfix 15.6.2",
Aliases = { "15.6.2" },
ShortName = "H15.6.2",
Date = "2014-12-12",
Parent = "15.6",
ForumLink = "https://forums.warframe.com/topic/364042-hotfix-1562/",
ArchiveLink = "https://web.archive.org/web/20160411092428/https://forums.warframe.com/topic/364042-hotfix-1562/",
ArchiveDate = "2016-04-11",
Timestamp = 1418405097
},
{
Name = "Hotfix 15.6.3",
Link = "Update 15#Hotfix 15.6.3",
Aliases = { "15.6.3" },
ShortName = "H15.6.3",
Date = "2014-12-12",
Parent = "15.6",
ForumLink = "https://forums.warframe.com/topic/364174-hotfix-1563-15631/",
ArchiveLink = "https://web.archive.org/web/20201130143024/https://forums.warframe.com/topic/364174-hotfix-1563-15631/",
ArchiveDate = "2020-11-30",
Timestamp = 1418413371
},
{
Name = "Hotfix 15.6.3.1",
Link = "Update 15#Hotfix 15.6.3.1",
Aliases = { "15.6.3.1" },
ShortName = "H15.6.3.1",
Date = "2014-12-12",
Parent = "15.6",
ForumLink = "https://forums.warframe.com/topic/364174-hotfix-1563-15631/",
ArchiveLink = "https://web.archive.org/web/20201130143024/https://forums.warframe.com/topic/364174-hotfix-1563-15631/",
ArchiveDate = "2020-11-30",
Timestamp = 1418413371
},
{
Name = "Hotfix 15.6.4",
Link = "Update 15#Hotfix 15.6.4",
Aliases = { "15.6.4" },
ShortName = "H15.6.4",
Date = "2014-12-12",
Parent = "15.6",
ForumLink = "https://forums.warframe.com/topic/364431-hotfix-1564/",
ArchiveLink = "https://web.archive.org/web/20201126235119/https://forums.warframe.com/topic/364431-hotfix-1564/",
ArchiveDate = "2020-11-26",
Timestamp = 1418428774
},
{
Name = "Update 15.7",
Link = "Update 15#Update 15.7",
Aliases = { "15.7.0", "15.7" },
ShortName = "U15.7",
Date = "2014-12-17",
Parent = "15.7",
ForumLink = "https://forums.warframe.com/topic/367069-update-1570-nova-prime/",
ArchiveLink = "https://web.archive.org/web/20210507132034/https://forums.warframe.com/topic/367069-update-1570-nova-prime/",
ArchiveDate = "2021-05-07",
Timestamp = 1418756335,
Subtitle = "Nova Prime"
},
{
Name = "Hotfix 15.7.1",
Link = "Update 15#Hotfix 15.7.1",
Aliases = { "15.7.1" },
ShortName = "H15.7.1",
Date = "2014-12-17",
Parent = "15.7",
ForumLink = "https://forums.warframe.com/topic/367247-hotfix-1571/",
ArchiveLink = "https://web.archive.org/web/20201129133746/https://forums.warframe.com/topic/367247-hotfix-1571/",
ArchiveDate = "2020-11-29",
Timestamp = 1418767130
},
{
Name = "Hotfix 15.7.2",
Link = "Update 15#Hotfix 15.7.2",
Aliases = { "15.7.2" },
ShortName = "H15.7.2",
Date = "2014-12-19",
Parent = "15.7",
ForumLink = "https://forums.warframe.com/topic/369418-update-1572-15721/",
ArchiveLink = "https://web.archive.org/web/20160411094530/https://forums.warframe.com/topic/369418-update-1572-15721/",
ArchiveDate = "2016-04-11",
Timestamp = 1419012583
},
{
Name = "Hotfix 15.7.2.1",
Link = "Update 15#Hotfix 15.7.2.1",
Aliases = { "15.7.2.1" },
ShortName = "H15.7.2.1",
Date = "2014-12-19",
Parent = "15.7",
ForumLink = "https://forums.warframe.com/topic/369418-update-1572-15721/",
ArchiveLink = "https://web.archive.org/web/20160411094530/https://forums.warframe.com/topic/369418-update-1572-15721/",
ArchiveDate = "2016-04-11",
Timestamp = 1419012583
},
{
Name = "Update 15.8",
Link = "Update 15#Update 15.8",
Aliases = { "15.8.0", "15.8" },
ShortName = "U15.8",
Date = "2014-12-19",
Parent = "15.8",
ForumLink = "https://forums.warframe.com/topic/369665-update-1580/",
ArchiveLink = "https://web.archive.org/web/20201111225038/https://forums.warframe.com/topic/369665-update-1580/",
ArchiveDate = "2020-11-11",
Timestamp = 1419031677,
Subtitle = "Operation Eyes Of Blight"
},
{
Name = "Hotfix 15.8.1",
Link = "Update 15#Hotfix 15.8.1",
Aliases = { "15.8.1" },
ShortName = "H15.8.1",
Date = "2014-12-20",
Parent = "15.8",
ForumLink = "https://forums.warframe.com/topic/370424-hotfix-1581/",
ArchiveLink = "https://web.archive.org/web/20201112011859/https://forums.warframe.com/topic/370424-hotfix-1581/",
ArchiveDate = "2020-11-12",
Timestamp = 1419113039
},
{
Name = "Update 15.9",
Link = "Update 15#Update 15.9",
Aliases = { "15.9.0", "15.9" },
ShortName = "U15.9",
Date = "2015-01-08",
Parent = "15.9",
ForumLink = "https://forums.warframe.com/topic/381637-update-159/",
ArchiveLink = "https://web.archive.org/web/20210122224042/https://forums.warframe.com/topic/381637-update-159/",
ArchiveDate = "2021-01-22",
Timestamp = 1420753150,
Subtitle = "Tenno Reinforcements: Tipedo"
},
{
Name = "Update 15.10",
Link = "Update 15#Update 15.10",
Aliases = { "15.10.0", "15.10" },
ShortName = "U15.10",
Date = "2015-01-15",
Parent = "15.10",
ForumLink = "https://forums.warframe.com/topic/385108-update-15100/",
ArchiveLink = "https://web.archive.org/web/20200815140726/https://forums.warframe.com/topic/385108-update-15100/",
ArchiveDate = "2020-08-15",
Timestamp = 1421281051,
Subtitle = "Tenno Reinforcements: Panthera"
},
{
Name = "Hotfix 15.10.1",
Link = "Update 15#Hotfix 15.10.1",
Aliases = { "15.10.1" },
ShortName = "H15.10.1",
Date = "2015-01-16",
Parent = "15.10",
ForumLink = "https://forums.warframe.com/topic/385712-hotfix-15101/",
ArchiveLink = "https://web.archive.org/web/20200806135101/https://forums.warframe.com/topic/385712-hotfix-15101/",
ArchiveDate = "2020-08-06",
Timestamp = 1421362101
},
{
Name = "Hotfix 15.10.2",
Link = "Update 15#Hotfix 15.10.2",
Aliases = { "15.10.2" },
ShortName = "H15.10.2",
Date = "2015-01-16",
Parent = "15.10",
ForumLink = "https://forums.warframe.com/topic/386288-hotfix-15102/",
ArchiveLink = "https://web.archive.org/web/20191028155940/https://forums.warframe.com/topic/386288-hotfix-15102/",
ArchiveDate = "2019-10-28",
Timestamp = 1421447020
},
{
Name = "Update 15.11",
Link = "Update 15#Update 15.11",
Aliases = { "15.11.0", "15.11" },
ShortName = "U15.11",
Date = "2015-01-21",
Parent = "15.11",
ForumLink = "https://forums.warframe.com/topic/388964-update-1511/",
ArchiveLink = "https://web.archive.org/web/20160411121705/https://forums.warframe.com/topic/388964-update-1511/",
ArchiveDate = "2016-04-11",
Timestamp = 1421884333,
Subtitle = "Wyrmius"
},
{
Name = "Hotfix 15.11.1",
Link = "Update 15#Hotfix 15.11.1",
Aliases = { "15.11.1" },
ShortName = "H15.11.1",
Date = "2015-01-22",
Parent = "15.11",
ForumLink = "https://forums.warframe.com/topic/389459-hotfix-15111/",
ArchiveLink = "https://web.archive.org/web/20160411122616/https://forums.warframe.com/topic/389459-hotfix-15111/",
ArchiveDate = "2016-04-11",
Timestamp = 1421961534
},
{
Name = "Hotfix 15.11.2",
Link = "Update 15#Hotfix 15.11.2",
Aliases = { "15.11.2" },
ShortName = "H15.11.2",
Date = "2015-01-23",
Parent = "15.11",
ForumLink = "https://forums.warframe.com/topic/390009-hotfix-15112/",
ArchiveLink = "https://web.archive.org/web/20160411122617/https://forums.warframe.com/topic/390009-hotfix-15112/",
ArchiveDate = "2016-04-11",
Timestamp = 1422042751
},
{
Name = "Update 15.12",
Link = "Update 15#Update 15.12",
Aliases = { "15.12.0", "15.12" },
ShortName = "U15.12",
Date = "2015-01-30",
Parent = "15.12",
ForumLink = "https://forums.warframe.com/topic/393115-update-15120/",
ArchiveLink = "https://web.archive.org/web/20160411123901/https://forums.warframe.com/topic/393115-update-15120/",
ArchiveDate = "2016-04-11",
Timestamp = 1422569669
},
{
Name = "Hotfix 15.12.2",
Link = "Update 15#Hotfix 15.12.2",
Aliases = { "15.12.2" },
ShortName = "H15.12.2",
Date = "2015-01-30",
Parent = "15.12",
ForumLink = "https://forums.warframe.com/topic/393586-hotfix-15122/",
ArchiveLink = "https://web.archive.org/web/20160411124120/https://forums.warframe.com/topic/393586-hotfix-15122/",
ArchiveDate = "2016-04-11",
Timestamp = 1422645144
},
{
Name = "Hotfix 15.12.3",
Link = "Update 15#Hotfix 15.12.3",
Aliases = { "15.12.3" },
ShortName = "H15.12.3",
Date = "2015-01-31",
Parent = "15.12",
ForumLink = "https://forums.warframe.com/topic/393709-hotfix-15123/",
ArchiveLink = "https://web.archive.org/web/20191028155943/https://forums.warframe.com/topic/393709-hotfix-15123/",
ArchiveDate = "2019-10-28",
Timestamp = 1422660442
},
{
Name = "Update 15.13",
Link = "Update 15#Update 15.13",
Aliases = { "15.13.0", "15.13" },
ShortName = "U15.13",
Date = "2015-02-05",
Parent = "15.13",
ForumLink = "https://forums.warframe.com/topic/396379-update-1513/",
ArchiveLink = "https://web.archive.org/web/20201125230903/https://forums.warframe.com/topic/396379-update-1513/",
ArchiveDate = "2020-11-25",
Timestamp = 1423170481,
Subtitle = "Tenno Reinforcements: Uru Sugatra and Akjagara + Stolen Dreams Quest"
},
{
Name = "Hotfix 15.13.1",
Link = "Update 15#Hotfix 15.13.1",
Aliases = { "15.13.1" },
ShortName = "H15.13.1",
Date = "2015-02-05",
Parent = "15.13",
ForumLink = "https://forums.warframe.com/topic/396596-hotfix-15131/",
ArchiveLink = "https://web.archive.org/web/20200806134544/https://forums.warframe.com/topic/396596-hotfix-15131/",
ArchiveDate = "2020-08-06",
Timestamp = 1423183983
},
{
Name = "Hotfix 15.13.2",
Link = "Update 15#Hotfix 15.13.2",
Aliases = { "15.13.2" },
ShortName = "H15.13.2",
Date = "2015-02-05",
Parent = "15.13",
ForumLink = "https://forums.warframe.com/topic/396734-hotfix-15132/",
ArchiveLink = "https://web.archive.org/web/20201108115253/https://forums.warframe.com/topic/396734-hotfix-15132/",
ArchiveDate = "2020-11-08",
Timestamp = 1423194639
},
{
Name = "Hotfix 15.13.3",
Link = "Update 15#Hotfix 15.13.3",
Aliases = { "15.13.3" },
ShortName = "H15.13.3",
Date = "2015-02-06",
Parent = "15.13",
ForumLink = "https://forums.warframe.com/topic/397107-hotfix-15133/",
ArchiveLink = "https://web.archive.org/web/20191028155949/https://forums.warframe.com/topic/397107-hotfix-15133/",
ArchiveDate = "2019-10-28",
Timestamp = 1423241081
},
{
Name = "Hotfix 15.13.4",
Link = "Update 15#Hotfix 15.13.4",
Aliases = { "15.13.4" },
ShortName = "H15.13.4",
Date = "2015-02-06",
Parent = "15.13",
ForumLink = "https://forums.warframe.com/topic/397275-hotfix-15134/",
ArchiveLink = "https://web.archive.org/web/20201019163621/https://forums.warframe.com/topic/397275-hotfix-15134/",
ArchiveDate = "2020-10-19",
Timestamp = 1423252766
},
{
Name = "Hotfix 15.13.5",
Link = "Update 15#Hotfix 15.13.5",
Aliases = { "15.13.5" },
ShortName = "H15.13.5",
Date = "2015-02-06",
Parent = "15.13",
ForumLink = "https://forums.warframe.com/topic/397584-hotfix-15135-survival-psa/",
ArchiveLink = "https://web.archive.org/web/20210303213712/https://forums.warframe.com/topic/397584-hotfix-15135-survival-psa/",
ArchiveDate = "2021-03-03",
Timestamp = 1423275090,
Subtitle = "Survival PSA"
},
{
Name = "Hotfix 15.13.6",
Link = "Update 15#Hotfix 15.13.6",
Aliases = { "15.13.6" },
ShortName = "H15.13.6",
Date = "2015-02-07",
Parent = "15.13",
ForumLink = "https://forums.warframe.com/topic/398048-hotfix-15136/",
ArchiveLink = "https://web.archive.org/web/20191028155935/https://forums.warframe.com/topic/398048-hotfix-15136/",
ArchiveDate = "2019-10-28",
Timestamp = 1423332752
},
{
Name = "Hotfix 15.13.7",
Link = "Update 15#Hotfix 15.13.7",
Aliases = { "15.13.7" },
ShortName = "H15.13.7",
Date = "2015-02-10",
Parent = "15.13",
ForumLink = "https://forums.warframe.com/topic/399446-hotfix-15137/",
ArchiveLink = "https://web.archive.org/web/20191028155920/https://forums.warframe.com/topic/399446-hotfix-15137/",
ArchiveDate = "2019-10-28",
Timestamp = 1423525406
},
{
Name = "Hotfix 15.13.8",
Link = "Update 15#Hotfix 15.13.8",
Aliases = { "15.13.8" },
ShortName = "H15.13.8",
Date = "2015-02-11",
Parent = "15.13",
ForumLink = "https://forums.warframe.com/topic/399959-hotfix-15138/",
ArchiveLink = "https://web.archive.org/web/20200923194832/https://forums.warframe.com/topic/399959-hotfix-15138/",
ArchiveDate = "2020-09-23",
Timestamp = 1423606027,
Subtitle = "Crossfire Missions"
},
{
Name = "Update 15.14",
Link = "Update 15#Update 15.14",
Aliases = { "15.14.0", "15.14" },
ShortName = "U15.14",
Date = "2015-02-12",
Parent = "15.14",
ForumLink = "https://forums.warframe.com/topic/400568-update-15140/",
ArchiveLink = "https://web.archive.org/web/20191028155923/https://forums.warframe.com/topic/400568-update-15140/",
ArchiveDate = "2019-10-28",
Timestamp = 1423694643
},
{
Name = "Hotfix 15.14.1",
Link = "Update 15#Hotfix 15.14.1",
Aliases = { "15.14.1" },
ShortName = "H15.14.1",
Date = "2015-02-14",
Parent = "15.14",
ForumLink = "https://forums.warframe.com/topic/401520-hotfix-15141/",
ArchiveLink = "https://web.archive.org/web/20201225192801/https://forums.warframe.com/topic/401520-hotfix-15141/",
ArchiveDate = "2020-12-25",
Timestamp = 1423847104
},
{
Name = "Update 15.15",
Link = "Update 15#Update 15.15",
Aliases = { "15.15.0", "15.15" },
ShortName = "U15.15",
Date = "2015-02-18",
Parent = "15.15",
ForumLink = "https://forums.warframe.com/topic/404349-update-1515-151501/",
ArchiveLink = "https://web.archive.org/web/20210122171024/https://forums.warframe.com/topic/404349-update-1515-151501/",
ArchiveDate = "2021-01-22",
Timestamp = 1424292526,
Subtitle = "Tenno Reinforcements: Tonbo"
},
{
Name = "Hotfix 15.15.0.1",
Link = "Update 15#Hotfix 15.15.0.1",
Aliases = { "15.15.0.1", "15.15.01" },
ShortName = "H15.15.0.1",
Date = "2015-02-18",
Parent = "15.15",
ForumLink = "https://forums.warframe.com/topic/404349-update-1515-151501/",
ArchiveLink = "https://web.archive.org/web/20210122171024/https://forums.warframe.com/topic/404349-update-1515-151501/",
ArchiveDate = "2021-01-22",
Timestamp = 1424292526
},
{
Name = "Update 15.16",
Link = "Update 15#Update 15.16",
Aliases = { "15.16.0", "15.16" },
ShortName = "U15.16",
Date = "2015-02-25",
Parent = "15.16",
ForumLink = "https://forums.warframe.com/topic/408193-update-1516-tactical-alert/",
ArchiveLink = "https://web.archive.org/web/20201001014626/https://forums.warframe.com/topic/408193-update-1516-tactical-alert/",
ArchiveDate = "2020-10-01",
Timestamp = 1424902356,
Subtitle = "Tenno Reinforcements: Gemini Nikana Sheath + Phoenix Intercept Tactical Alert"
},
{
Name = "Hotfix 15.16.1",
Link = "Update 15#Hotfix 15.16.1",
Aliases = { "15.16.1" },
ShortName = "H15.16.1",
Date = "2015-02-26",
Parent = "15.16",
ForumLink = "https://forums.warframe.com/topic/408804-hotfix-15161/",
ArchiveLink = "https://web.archive.org/web/20191028155904/https://forums.warframe.com/topic/408804-hotfix-15161/",
ArchiveDate = "2019-10-28",
Timestamp = 1424988010
},
{
Name = "Hotfix 15.16.2",
Link = "Update 15#Hotfix 15.16.2",
Aliases = { "15.16.2" },
ShortName = "H15.16.2",
Date = "2015-03-11",
Parent = "15.16",
ForumLink = "https://forums.warframe.com/topic/415936-hotfix-15162/",
ArchiveLink = "https://web.archive.org/web/20191028155841/https://forums.warframe.com/topic/415936-hotfix-15162/",
ArchiveDate = "2019-10-28",
Timestamp = 1426112504
},
{
Name = "Update 16.0",
Link = "Update 16#Update 16.0",
Aliases = { "Update 16", "Sanctuary", "16.0", "16" },
ShortName = "U16.0",
Date = "2015-03-19",
Parent = "16.0",
ForumLink = "https://forums.warframe.com/topic/420448-warframe-sanctuary/",
ArchiveLink = "https://web.archive.org/web/20211123165539/https://forums.warframe.com/topic/420448-warframe-sanctuary/",
ArchiveDate = "2021-11-23",
Timestamp = 1426818114,
Subtitle = "Warframe: Sanctuary"
},
{
Name = "Hotfix 16.0.1",
Link = "Update 16#Hotfix 16.0.1",
Aliases = { "16.0.1" },
ShortName = "H16.0.1",
Date = "2015-03-20",
Parent = "16.0",
ForumLink = "https://forums.warframe.com/topic/421286-hotfix-1601/",
ArchiveLink = "https://web.archive.org/web/20201020235204/https://forums.warframe.com/topic/421286-hotfix-1601/",
ArchiveDate = "2020-10-20",
Timestamp = 1426869227
},
{
Name = "Hotfix 16.0.2",
Link = "Update 16#Hotfix 16.0.2",
Aliases = { "16.0.2" },
ShortName = "H16.0.2",
Date = "2015-03-21",
Parent = "16.0",
ForumLink = "https://forums.warframe.com/index.php?/topic/421728-hotfix-1602/",
ArchiveLink = "https://web.archive.org/web/20191028155845/https://forums.warframe.com/topic/421728-hotfix-1602/",
ArchiveDate = "2019-10-28",
Timestamp = 1426893735
},
{
Name = "Hotfix 16.0.3",
Link = "Update 16#Hotfix 16.0.3",
Aliases = { "16.0.3" },
ShortName = "H16.0.3",
Date = "2015-03-23",
Parent = "16.0",
ForumLink = "https://forums.warframe.com/topic/424333-hotfix-1603/",
ArchiveLink = "https://web.archive.org/web/20201108142553/https://forums.warframe.com/topic/424333-hotfix-1603/",
ArchiveDate = "2020-11-08",
Timestamp = 1427125410
},
{
Name = "Hotfix 16.0.4",
Link = "Update 16#Hotfix 16.0.4",
Aliases = { "16.0.4" },
ShortName = "H16.0.4",
Date = "2015-03-23",
Parent = "16.0",
ForumLink = "https://forums.warframe.com/topic/424657-hotfix-1604/",
ArchiveLink = "https://web.archive.org/web/20201130023435/https://forums.warframe.com/topic/424657-hotfix-1604/",
ArchiveDate = "2020-11-30",
Timestamp = 1427149104
},
{
Name = "Update 16.1",
Link = "Update 16#Update 16.1",
Aliases = { "16.1", "16.1.0" },
ShortName = "U16.1",
Date = "2015-03-25",
Parent = "16.1",
ForumLink = "https://forums.warframe.com/topic/425416-update-161-volt-prime/",
ArchiveLink = "https://web.archive.org/web/20210303214541/https://forums.warframe.com/topic/425416-update-161-volt-prime/",
ArchiveDate = "2021-03-03",
Timestamp = 1427220112,
Subtitle = "Volt Prime"
},
{
Name = "Hotfix 16.1.1",
Link = "Update 16#Hotfix 16.1.1",
Aliases = { "16.1.1" },
ShortName = "H16.1.1",
Date = "2015-03-25",
Parent = "16.1",
ForumLink = "https://forums.warframe.com/topic/425719-hotfix-1611/",
ArchiveLink = "https://web.archive.org/web/20201020231117/https://forums.warframe.com/topic/425719-hotfix-1611/",
ArchiveDate = "2020-10-20",
Timestamp = 1427240127
},
{
Name = "Hotfix 16.1.2",
Link = "Update 16#Hotfix 16.1.2",
Aliases = { "16.1.2" },
ShortName = "H16.1.2",
Date = "2015-03-25",
Parent = "16.1",
ForumLink = "https://forums.warframe.com/topic/426353-hotfix-1612-anniversary-gifts/",
ArchiveLink = "https://web.archive.org/web/20201020235733/https://forums.warframe.com/topic/426353-hotfix-1612-anniversary-gifts/",
ArchiveDate = "2020-10-20",
Timestamp = 1427307205,
Subtitle = "Anniversary Gifts"
},
{
Name = "Hotfix 16.1.3",
Link = "Update 16#Hotfix 16.1.3",
Aliases = { "16.1.3" },
ShortName = "H16.1.3",
Date = "2015-03-26",
Parent = "16.1",
ForumLink = "https://forums.warframe.com/topic/427542-hotfix-1613/",
ArchiveLink = "https://web.archive.org/web/20210518183410/https://forums.warframe.com/topic/427542-hotfix-1613/",
ArchiveDate = "2021-05-18",
Timestamp = 1427409106
},
{
Name = "Hotfix 16.1.4",
Link = "Update 16#Hotfix 16.1.4",
Aliases = { "16.1.4" },
ShortName = "H16.1.4",
Date = "2015-03-27",
Parent = "16.1",
ForumLink = "https://forums.warframe.com/topic/428325-hotfix-1614/",
ArchiveLink = "https://web.archive.org/web/20201020235711/https://forums.warframe.com/topic/428325-hotfix-1614/",
ArchiveDate = "2020-10-20",
Timestamp = 1427489771
},
{
Name = "Hotfix 16.1.4.1",
Link = "Update 16#Hotfix 16.1.4.1",
Aliases = { "16.1.4.1" },
ShortName = "H16.1.4.1",
Date = "2015-03-29",
Parent = "16.1",
ForumLink = "https://forums.warframe.com/topic/428325-hotfix-1614/",
ArchiveLink = "https://web.archive.org/web/20201020235711/https://forums.warframe.com/topic/428325-hotfix-1614/",
ArchiveDate = "2020-10-20",
Timestamp = 1427588356
},
{
Name = "Hotfix 16.1.5",
Link = "Update 16#Hotfix 16.1.5",
Aliases = { "16.1.5" },
ShortName = "H16.1.5",
Date = "2015-03-31",
Parent = "16.1",
ForumLink = "https://forums.warframe.com/topic/430816-hotfix-1615/",
ArchiveLink = "https://web.archive.org/web/20191028155810/https://forums.warframe.com/topic/430816-hotfix-1615/",
ArchiveDate = "2019-10-28",
Timestamp = 1427754253
},
{
Name = "Hotfix 16.1.6",
Link = "Update 16#Hotfix 16.1.6",
Aliases = { "16.1.6" },
ShortName = "H16.1.6",
Date = "2015-03-31",
Parent = "16.1",
ForumLink = "https://forums.warframe.com/topic/431380-hotfix-1616/",
ArchiveLink = "https://web.archive.org/web/20210514101325/https://forums.warframe.com/topic/431380-hotfix-1616/",
ArchiveDate = "2021-05-14",
Timestamp = 1427816476
},
{
Name = "Update 16.2",
Link = "Update 16#Update 16.2",
Aliases = { "16.2", "16.2.0" },
ShortName = "U16.2",
Date = "2015-04-01",
Parent = "16.2",
ForumLink = "https://forums.warframe.com/topic/432384-update-162/",
ArchiveLink = "https://web.archive.org/web/20210303185118/https://forums.warframe.com/topic/432384-update-162/",
ArchiveDate = "2021-03-03",
Timestamp = 1427926959,
Subtitle = "New Augment Mods & Orokin Color Picker"
},
{
Name = "Hotfix 16.2.1",
Link = "Update 16#Hotfix 16.2.1",
Aliases = { "16.2.1" },
ShortName = "H16.2.1",
Date = "2015-04-06",
Parent = "16.2",
ForumLink = "https://forums.warframe.com/topic/435632-hotfix-1621/",
ArchiveLink = "https://web.archive.org/web/20210303190512/https://forums.warframe.com/topic/435632-hotfix-1621/",
ArchiveDate = "2021-03-03",
Timestamp = 1428335194
},
{
Name = "Hotfix 16.2.2",
Link = "Update 16#Hotfix 16.2.2",
Aliases = { "16.2.2" },
ShortName = "H16.2.2",
Date = "2015-04-07",
Parent = "16.2",
ForumLink = "https://forums.warframe.com/topic/436486-hotfix-1622/",
ArchiveLink = "https://web.archive.org/web/20201020231556/https://forums.warframe.com/topic/436486-hotfix-1622/",
ArchiveDate = "2020-10-20",
Timestamp = 1428436941
},
{
Name = "Update 16.3",
Link = "Update 16#Update 16.3",
Aliases = { "16.3.0", "16.3" },
ShortName = "U16.3",
Date = "2015-04-09",
Parent = "16.3",
ForumLink = "https://forums.warframe.com/topic/437166-update-163-the-new-protocols/",
ArchiveLink = "https://web.archive.org/web/20160411165233/https://forums.warframe.com/topic/437166-update-163-the-new-protocols/",
ArchiveDate = "2016-04-11",
Timestamp = 1428529883,
Subtitle = "The New Protocols"
},
{
Name = "Hotfix 16.3.1",
Link = "Update 16#Hotfix 16.3.1",
Aliases = { "16.3.1" },
ShortName = "H16.3.1",
Date = "2015-04-10",
Parent = "16.3",
ForumLink = "https://forums.warframe.com/topic/438351-hotfix-1631-16311-tactical-alert/",
ArchiveLink = "https://web.archive.org/web/20201020224019/https://forums.warframe.com/topic/438351-hotfix-1631-16311-tactical-alert/",
ArchiveDate = "2020-10-20",
Timestamp = 1428686584,
Subtitle = "Tactical Alert: Blackout"
},
{
Name = "Hotfix 16.3.1.1",
Link = "Update 16#Hotfix 16.3.1.1",
Aliases = { "16.3.1.1" },
ShortName = "H16.3.1.1",
Date = "2015-04-10",
Parent = "16.3",
ForumLink = "https://forums.warframe.com/topic/438351-hotfix-1631-16311-tactical-alert/",
ArchiveLink = "https://web.archive.org/web/20201020224019/https://forums.warframe.com/topic/438351-hotfix-1631-16311-tactical-alert/",
ArchiveDate = "2020-10-20",
Timestamp = 1428686584
},
{
Name = "Hotfix 16.3.1.2",
Link = "Update 16#Hotfix 16.3.1.2",
Aliases = { "16.3.1.2" },
ShortName = "H16.3.1.2",
Date = "2015-04-10",
Parent = "16.3",
ForumLink = "https://forums.warframe.com/topic/438351-hotfix-1631-16311-tactical-alert/",
ArchiveLink = "https://web.archive.org/web/20201020224019/https://forums.warframe.com/topic/438351-hotfix-1631-16311-tactical-alert/",
ArchiveDate = "2020-10-20",
Timestamp = 1428706075
},
{
Name = "Hotfix 16.3.2",
Link = "Update 16#Hotfix 16.3.2",
Aliases = { "16.3.2" },
ShortName = "H16.3.2",
Date = "2015-04-14",
Parent = "16.3",
ForumLink = "https://forums.warframe.com/topic/440564-hotfix-1632/",
ArchiveLink = "https://web.archive.org/web/20201020234718/https://forums.warframe.com/topic/440564-hotfix-1632/",
ArchiveDate = "2020-10-20",
Timestamp = 1428956153
},
{
Name = "Hotfix 16.3.3",
Link = "Update 16#Hotfix 16.3.3",
Aliases = { "16.3.3" },
ShortName = "H16.3.3",
Date = "2015-04-13",
Parent = "16.3",
ForumLink = "https://forums.warframe.com/topic/441719-hotfix-1633-16331/",
ArchiveLink = "https://web.archive.org/web/20201021000032/https://forums.warframe.com/topic/441719-hotfix-1633-16331/",
ArchiveDate = "2020-10-21",
Timestamp = 1429139727
},
{
Name = "Hotfix 16.3.3.1",
Link = "Update 16#Hotfix 16.3.3.1",
Aliases = { "16.3.3.1" },
ShortName = "H16.3.3.1",
Date = "2015-04-15",
Parent = "16.3",
ForumLink = "https://forums.warframe.com/topic/441719-hotfix-1633-16331/",
ArchiveLink = "https://web.archive.org/web/20201021000032/https://forums.warframe.com/topic/441719-hotfix-1633-16331/",
ArchiveDate = "2020-10-21",
Timestamp = 1429142891
},
{
Name = "Hotfix 16.3.4",
Link = "Update 16#Hotfix 16.3.4",
Aliases = { "16.3.4" },
ShortName = "H16.3.4",
Date = "2015-04-16",
Parent = "16.3",
ForumLink = "https://forums.warframe.com/topic/442256-hotfix-1634/",
ArchiveLink = "https://web.archive.org/web/20201020234100/https://forums.warframe.com/topic/442256-hotfix-1634/",
ArchiveDate = "2020-10-20",
Timestamp = 1429215672
},
{
Name = "Hotfix 16.3.5",
Link = "Update 16#Hotfix 16.3.5",
Aliases = { "16.3.5" },
ShortName = "H16.3.5",
Date = "2015-04-17",
Parent = "16.3",
ForumLink = "https://forums.warframe.com/topic/442724-hotfix-1635/",
ArchiveLink = "https://web.archive.org/web/20201020225038/https://forums.warframe.com/topic/442724-hotfix-1635/",
ArchiveDate = "2020-10-20",
Timestamp = 1429293636
},
{
Name = "Update 16.4",
Link = "Update 16#Update 16.4",
Aliases = { "16.4.0", "16.4" },
ShortName = "U16.4",
Date = "2015-04-23",
Parent = "16.4",
ForumLink = "https://forums.warframe.com/topic/445957-update-164/",
ArchiveLink = "https://web.archive.org/web/20201111212519/https://forums.warframe.com/topic/445957-update-164/",
ArchiveDate = "2020-11-11",
Timestamp = 1429823025,
Subtitle = "Tenno Reinforcements: Tonkor"
},
{
Name = "Hotfix 16.4.1",
Link = "Update 16#Hotfix 16.4.1",
Aliases = { "16.4.1" },
ShortName = "H16.4.1",
Date = "2015-04-23",
Parent = "16.4",
ForumLink = "https://forums.warframe.com/topic/446172-hotfix-1641-false-profits-psa/",
ArchiveLink = "https://web.archive.org/web/20201108141123/https://forums.warframe.com/topic/446172-hotfix-1641-false-profits-psa/",
ArchiveDate = "2020-11-08",
Timestamp = 1429841124,
Subtitle = "False Profits PSA"
},
{
Name = "Hotfix 16.4.2",
Link = "Update 16#Hotfix 16.4.2",
Aliases = { "16.4.2" },
ShortName = "H16.4.2",
Date = "2015-04-24",
Parent = "16.4",
ForumLink = "https://forums.warframe.com/topic/446244-hotfix-1642/",
ArchiveLink = "https://web.archive.org/web/20201020231009/https://forums.warframe.com/topic/446244-hotfix-1642/",
ArchiveDate = "2020-10-20",
Timestamp = 1429848686
},
{
Name = "Hotfix 16.4.3",
Link = "Update 16#Hotfix 16.4.3",
Aliases = { "16.4.3" },
ShortName = "H16.4.3",
Date = "2015-04-24",
Parent = "16.4",
ForumLink = "https://forums.warframe.com/topic/446817-hotfix-1643-credit-reimbursement-2/",
ArchiveLink = "https://web.archive.org/web/20201020230935/https://forums.warframe.com/topic/446817-hotfix-1643-credit-reimbursement-2/",
ArchiveDate = "2020-10-20",
Timestamp = 1429911130
},
{
Name = "Hotfix 16.4.4",
Link = "Update 16#Hotfix 16.4.4",
Aliases = { "16.4.4" },
ShortName = "H16.4.4",
Date = "2015-04-28",
Parent = "16.4",
ForumLink = "https://forums.warframe.com/topic/449323-hotfix-1644-16441/",
ArchiveLink = "https://web.archive.org/web/20201021000355/https://forums.warframe.com/topic/449323-hotfix-1644-16441/",
ArchiveDate = "2020-10-21",
Timestamp = 1430253722
},
{
Name = "Hotfix 16.4.4.1",
Link = "Update 16#Hotfix 16.4.4.1",
Aliases = { "16.4.4.1" },
ShortName = "H16.4.4.1",
Date = "2015-04-28",
Parent = "16.4",
ForumLink = "https://forums.warframe.com/topic/449323-hotfix-1644-16441/",
ArchiveLink = "https://web.archive.org/web/20201021000355/https://forums.warframe.com/topic/449323-hotfix-1644-16441/",
ArchiveDate = "2020-10-21",
Timestamp = 1430256261
},
{
Name = "Hotfix 16.4.5",
Link = "Update 16#Hotfix 16.4.5",
Aliases = { "16.4.5" },
ShortName = "H16.4.5",
Date = "2015-05-06",
Parent = "16.4",
ForumLink = "https://forums.warframe.com/topic/453342-hotfix-1645-16451-16452/",
ArchiveLink = "https://web.archive.org/web/20201020222745/https://forums.warframe.com/topic/453342-hotfix-1645-16451-16452/",
ArchiveDate = "2020-10-20",
Timestamp = 1430940819
},
{
Name = "Hotfix 16.4.5.1",
Link = "Update 16#Hotfix 16.4.5.1",
Aliases = { "16.4.5.1" },
ShortName = "H16.4.5.1",
Date = "2015-05-06",
Parent = "16.4",
ForumLink = "https://forums.warframe.com/topic/453342-hotfix-1645-16451-16452/",
ArchiveLink = "https://web.archive.org/web/20201020222745/https://forums.warframe.com/topic/453342-hotfix-1645-16451-16452/",
ArchiveDate = "2020-10-20",
Timestamp = 1430940819
},
{
Name = "Hotfix 16.4.5.2",
Link = "Update 16#Hotfix 16.4.5.2",
Aliases = { "16.4.5.2" },
ShortName = "H16.4.5.2",
Date = "2015-05-07",
Parent = "16.4",
ForumLink = "https://forums.warframe.com/topic/453342-hotfix-1645-16451-16452/",
ArchiveLink = "https://web.archive.org/web/20201020222745/https://forums.warframe.com/topic/453342-hotfix-1645-16451-16452/",
ArchiveDate = "2020-10-20",
Timestamp = 1431035726
},
{
Name = "Update 16.5",
Link = "Update 16#Update 16.5",
Aliases = { "16.5.0", "16.5" },
ShortName = "U16.5",
Date = "2015-05-12",
Parent = "16.5",
ForumLink = "https://forums.warframe.com/topic/455995-update-165-tubemen-of-regor/",
ArchiveLink = "https://web.archive.org/web/20201108130946/https://forums.warframe.com/topic/455995-update-165-tubemen-of-regor/",
ArchiveDate = "2020-11-08",
Timestamp = 1431450580,
Subtitle = "Tubemen Of Regor"
},
{
Name = "Hotfix 16.5.1",
Link = "Update 16#Hotfix 16.5.1",
Aliases = { "16.5.1" },
ShortName = "H16.5.1",
Date = "2015-05-12",
Parent = "16.5",
ForumLink = "https://forums.warframe.com/topic/456211-hotfix-1651/",
ArchiveLink = "https://web.archive.org/web/20201020224836/https://forums.warframe.com/topic/456211-hotfix-1651/",
ArchiveDate = "2020-10-20",
Timestamp = 1431463882
},
{
Name = "Hotfix 16.5.2",
Link = "Update 16#Hotfix 16.5.2",
Aliases = { "16.5.2" },
ShortName = "H16.5.2",
Date = "2015-05-13",
Parent = "16.5",
ForumLink = "https://forums.warframe.com/topic/456875-hotfix-1652/",
ArchiveLink = "https://web.archive.org/web/20191028155708/https://forums.warframe.com/topic/456875-hotfix-1652/",
ArchiveDate = "2019-10-28",
Timestamp = 1431533412
},
{
Name = "Hotfix 16.5.3",
Link = "Update 16#Hotfix 16.5.3",
Aliases = { "16.5.3" },
ShortName = "H16.5.3",
Date = "2015-05-13",
Parent = "16.5",
ForumLink = "https://forums.warframe.com/topic/457163-hotfix-1653/",
ArchiveLink = "https://web.archive.org/web/20201020233634/https://forums.warframe.com/topic/457163-hotfix-1653/",
ArchiveDate = "2020-10-20",
Timestamp = 1431555719
},
{
Name = "Hotfix 16.5.4",
Link = "Update 16#Hotfix 16.5.4",
Aliases = { "16.5.4" },
ShortName = "H16.5.4",
Date = "2015-05-14",
Parent = "16.5",
ForumLink = "https://forums.warframe.com/topic/457698-hotfix-1654/",
ArchiveLink = "https://web.archive.org/web/20201130025258/https://forums.warframe.com/topic/457698-hotfix-1654/",
ArchiveDate = "2020-11-30",
Timestamp = 1431618067
},
{
Name = "Hotfix 16.5.5",
Link = "Update 16#Hotfix 16.5.5",
Aliases = { "16.5.5" },
ShortName = "H16.5.5",
Date = "2015-05-14",
Parent = "16.5",
ForumLink = "https://forums.warframe.com/topic/457936-hotfix-1655/",
ArchiveLink = "https://web.archive.org/web/20201020225553/https://forums.warframe.com/topic/457936-hotfix-1655/",
ArchiveDate = "2020-10-20",
Timestamp = 1431637837
},
{
Name = "Hotfix 16.5.6",
Link = "Update 16#Hotfix 16.5.6",
Aliases = { "16.5.6" },
ShortName = "H16.5.6",
Date = "2015-05-19",
Parent = "16.5",
ForumLink = "https://forums.warframe.com/topic/461080-hotfix-1656/",
ArchiveLink = "https://web.archive.org/web/20201020234143/https://forums.warframe.com/topic/461080-hotfix-1656/",
ArchiveDate = "2020-10-20",
Timestamp = 1432064811
},
{
Name = "Hotfix 16.5.7",
Link = "Update 16#Hotfix 16.5.7",
Aliases = { "16.5.7" },
ShortName = "H16.5.7",
Date = "2015-05-19",
Parent = "16.5",
ForumLink = "https://forums.warframe.com/topic/461161-hotfix-1657/",
ArchiveLink = "https://web.archive.org/web/20201108124117/https://forums.warframe.com/topic/461161-hotfix-1657/",
ArchiveDate = "2020-11-08",
Timestamp = 1432073426
},
{
Name = "Hotfix 16.5.8",
Link = "Update 16#Hotfix 16.5.8",
Aliases = { "16.5.8" },
ShortName = "H16.5.8",
Date = "2015-05-20",
Parent = "16.5",
ForumLink = "https://forums.warframe.com/topic/461583-hotfix-1658/",
ArchiveLink = "https://web.archive.org/web/20201020230433/https://forums.warframe.com/topic/461583-hotfix-1658/",
ArchiveDate = "2020-10-20",
Timestamp = 1432137453
},
{
Name = "Hotfix 16.5.9",
Link = "Update 16#Hotfix 16.5.9",
Aliases = { "16.5.9" },
ShortName = "H16.5.9",
Date = "2015-05-21",
Parent = "16.5",
ForumLink = "https://forums.warframe.com/topic/462202-hotfix-1659/",
ArchiveLink = "https://web.archive.org/web/20201108103143/https://forums.warframe.com/topic/462202-hotfix-1659/",
ArchiveDate = "2020-11-08",
Timestamp = 1432216144
},
{
Name = "Update 16.6",
Link = "Update 16#Update 16.6",
Aliases = { "16.6.0", "16.6" },
ShortName = "U16.6",
Date = "2015-05-27",
Parent = "16.6",
ForumLink = "https://forums.warframe.com/topic/465618-update-1660/",
ArchiveLink = "https://web.archive.org/web/20201020235121/https://forums.warframe.com/topic/465618-update-1660/",
ArchiveDate = "2020-10-20",
Timestamp = 1432760901,
Subtitle = "New Tenno Customizations"
},
{
Name = "Hotfix 16.6.1",
Link = "Update 16#Hotfix 16.6.1",
Aliases = { "16.6.1" },
ShortName = "H16.6.1",
Date = "2015-05-28",
Parent = "16.6",
ForumLink = "https://forums.warframe.com/topic/466144-hotfix-1661/",
ArchiveLink = "https://web.archive.org/web/20201020235950/https://forums.warframe.com/topic/466144-hotfix-1661/",
ArchiveDate = "2020-10-20",
Timestamp = 1432845780
},
{
Name = "Hotfix 16.6.2",
Link = "Update 16#Hotfix 16.6.2",
Aliases = { "16.6.2" },
ShortName = "H16.6.2",
Date = "2015-05-28",
Parent = "16.6",
ForumLink = "https://forums.warframe.com/topic/466273-hotfix-1662/",
ArchiveLink = "https://web.archive.org/web/20160411195246/https://forums.warframe.com/topic/466273-hotfix-1662/",
ArchiveDate = "2016-04-11",
Timestamp = 1432856127
},
{
Name = "Hotfix 16.6.3",
Link = "Update 16#Hotfix 16.6.3",
Aliases = { "16.6.3" },
ShortName = "H16.6.3",
Date = "2015-05-29",
Parent = "16.6",
ForumLink = "https://forums.warframe.com/topic/466778-update-1663/",
ArchiveLink = "https://web.archive.org/web/20201020232453/https://forums.warframe.com/topic/466778-update-1663/",
ArchiveDate = "2020-10-20",
Timestamp = 1432933055
},
{
Name = "Update 16.7",
Link = "Update 16#Update 16.7",
Aliases = { "16.7.0", "16.7" },
ShortName = "U16.7",
Date = "2015-06-04",
Parent = "16.7",
ForumLink = "https://forums.warframe.com/topic/469825-update-167/",
ArchiveLink = "https://web.archive.org/web/20201020231327/https://forums.warframe.com/topic/469825-update-167/",
ArchiveDate = "2020-10-20",
Timestamp = 1433452492,
Subtitle = "Tenno Reinforcements: Anku"
},
{
Name = "Hotfix 16.7.1",
Link = "Update 16#Hotfix 16.7.1",
Aliases = { "16.7.1" },
ShortName = "H16.7.1",
Date = "2015-06-04",
Parent = "16.7",
ForumLink = "https://forums.warframe.com/topic/469972-hotfix-1671/",
ArchiveLink = "https://web.archive.org/web/20201020231426/https://forums.warframe.com/topic/469972-hotfix-1671/",
ArchiveDate = "2020-10-20",
Timestamp = 1433465150
},
{
Name = "Hotfix 16.7.2",
Link = "Update 16#Hotfix 16.7.2",
Aliases = { "16.7.2" },
ShortName = "H16.7.2",
Date = "2015-06-05",
Parent = "16.7",
ForumLink = "https://forums.warframe.com/topic/470391-hotfix-1672/",
ArchiveLink = "https://web.archive.org/web/20201020231653/https://forums.warframe.com/topic/470391-hotfix-1672/",
ArchiveDate = "2020-10-20",
Timestamp = 1433531578
},
{
Name = "Update 16.8",
Link = "Update 16#Update 16.8",
Aliases = { "16.8.0", "16.8" },
ShortName = "U16.8",
Date = "2015-06-10",
Parent = "16.8",
ForumLink = "https://forums.warframe.com/topic/473028-update-1680/",
ArchiveLink = "https://web.archive.org/web/20201020235901/https://forums.warframe.com/topic/473028-update-1680/",
ArchiveDate = "2020-10-20",
Timestamp = 1433973789,
Subtitle = "Tenno Reinforcements: Kyroptera Syandana and New Augment Mods"
},
{
Name = "Hotfix 16.8.1",
Link = "Update 16#Hotfix 16.8.1",
Aliases = { "16.8.1" },
ShortName = "H16.8.1",
Date = "2015-06-10",
Parent = "16.8",
ForumLink = "https://forums.warframe.com/topic/473134-hotfix-1681-1682/",
ArchiveLink = "https://web.archive.org/web/20201020235944/https://forums.warframe.com/topic/473134-hotfix-1681-1682/",
ArchiveDate = "2020-10-20",
Timestamp = 1433984907
},
{
Name = "Hotfix 16.8.2",
Link = "Update 16#Hotfix 16.8.2",
Aliases = { "16.8.2" },
ShortName = "H16.8.2",
Date = "2015-06-11",
Parent = "16.8",
ForumLink = "https://forums.warframe.com/topic/473134-hotfix-1681-1682/",
ArchiveLink = "https://web.archive.org/web/20201020235944/https://forums.warframe.com/topic/473134-hotfix-1681-1682/",
ArchiveDate = "2020-10-20",
Timestamp = 1433984907
},
{
Name = "Hotfix 16.8.3",
Link = "Update 16#Hotfix 16.8.3",
Aliases = { "16.8.3" },
ShortName = "H16.8.3",
Date = "2015-06-12",
Parent = "16.8",
ForumLink = "https://forums.warframe.com/topic/474057-hotfix-1683/",
ArchiveLink = "https://web.archive.org/web/20201020234530/https://forums.warframe.com/topic/474057-hotfix-1683/",
ArchiveDate = "2020-10-20",
Timestamp = 1434137115
},
{
Name = "Hotfix 16.8.4",
Link = "Update 16#Hotfix 16.8.4",
Aliases = { "16.8.4" },
ShortName = "H16.8.4",
Date = "2015-06-15",
Parent = "16.8",
ForumLink = "https://forums.warframe.com/topic/475491-hotfix-1684/",
ArchiveLink = "https://web.archive.org/web/20210518050106/https://forums.warframe.com/topic/475491-hotfix-1684/",
ArchiveDate = "2021-05-18",
Timestamp = 1434395641
},
{
Name = "Update 16.9",
Link = "Update 16#Update 16.9",
Aliases = { "16.9.0", "16.9" },
ShortName = "U16.9",
Date = "2015-06-17",
Parent = "16.9",
ForumLink = "https://forums.warframe.com/topic/476490-update-1690/",
ArchiveLink = "https://web.archive.org/web/20210506222247/https://forums.warframe.com/topic/476490-update-1690/",
ArchiveDate = "2021-05-06",
Timestamp = 1434577827,
Subtitle = "Excalibur Revisited"
},
{
Name = "Hotfix 16.9.1",
Link = "Update 16#Hotfix 16.9.1",
Aliases = { "16.9.1" },
ShortName = "H16.9.1",
Date = "2015-06-17",
Parent = "16.9",
ForumLink = "https://forums.warframe.com/topic/476545-hotfix-1691-16911/",
ArchiveLink = "https://web.archive.org/web/20201020234800/https://forums.warframe.com/topic/476545-hotfix-1691-16911/",
ArchiveDate = "2020-10-20",
Timestamp = 1434582499
},
{
Name = "Hotfix 16.9.1.1",
Link = "Update 16#Hotfix 16.9.1.1",
Aliases = { "16.9.1.1" },
ShortName = "H16.9.1.1",
Date = "2015-06-18",
Parent = "16.9",
ForumLink = "https://forums.warframe.com/topic/476545-hotfix-1691-16911/",
ArchiveLink = "https://web.archive.org/web/20201020234800/https://forums.warframe.com/topic/476545-hotfix-1691-16911/",
ArchiveDate = "2020-10-20",
Timestamp = 1434582499
},
{
Name = "Hotfix 16.9.2",
Link = "Update 16#Hotfix 16.9.2",
Aliases = { "16.9.2" },
ShortName = "H16.9.2",
Date = "2015-06-19",
Parent = "16.9",
ForumLink = "https://forums.warframe.com/topic/477700-hotfix-1692-16921/",
ArchiveLink = "https://web.archive.org/web/20201020231223/https://forums.warframe.com/topic/477700-hotfix-1692-16921/",
ArchiveDate = "2020-10-20",
Timestamp = 1434736966
},
{
Name = "Hotfix 16.9.2.1",
Link = "Update 16#Hotfix 16.9.2.1",
Aliases = { "16.9.2.1" },
ShortName = "H16.9.2.1",
Date = "2015-06-19",
Parent = "16.9",
ForumLink = "https://forums.warframe.com/topic/477700-hotfix-1692-16921/",
ArchiveLink = "https://web.archive.org/web/20201020231223/https://forums.warframe.com/topic/477700-hotfix-1692-16921/",
ArchiveDate = "2020-10-20",
Timestamp = 1434736966
},
{
Name = "Hotfix 16.9.3",
Link = "Update 16#Hotfix 16.9.3",
Aliases = { "16.9.3" },
ShortName = "H16.9.3",
Date = "2015-06-19",
Parent = "16.9",
ForumLink = "https://forums.warframe.com/topic/477906-hotfix-1693/",
ArchiveLink = "https://web.archive.org/web/20201021000056/https://forums.warframe.com/topic/477906-hotfix-1693/",
ArchiveDate = "2020-10-21",
Timestamp = 1434759479
},
{
Name = "Hotfix 16.9.4",
Link = "Update 16#Hotfix 16.9.4",
Aliases = { "16.9.4" },
ShortName = "H16.9.4",
Date = "2015-06-22",
Parent = "16.9",
ForumLink = "https://forums.warframe.com/topic/479235-hotfix-1694/",
ArchiveLink = "https://web.archive.org/web/20201021000025/https://forums.warframe.com/topic/479235-hotfix-1694/",
ArchiveDate = "2020-10-21",
Timestamp = 1435003469
},
{
Name = "Update 16.10",
Link = "Update 16#Update 16.10",
Aliases = { "16.10.0", "16.10" },
ShortName = "U16.10",
Date = "2015-06-25",
Parent = "16.10",
ForumLink = "https://forums.warframe.com/topic/480637-update-16100/",
ArchiveLink = "https://web.archive.org/web/20210404104835/https://forums.warframe.com/topic/480637-update-16100/",
ArchiveDate = "2021-04-04",
Timestamp = 1435269017,
Subtitle = "Tenno Reinforcements: Simulor"
},
{
Name = "Hotfix 16.10.1",
Link = "Update 16#Hotfix 16.10.1",
Aliases = { "16.10.1" },
ShortName = "H16.10.1",
Date = "2015-06-26",
Parent = "16.10",
ForumLink = "https://forums.warframe.com/topic/481160-hotfix-16101/",
ArchiveLink = "https://web.archive.org/web/20201108144508/https://forums.warframe.com/topic/481160-hotfix-16101/",
ArchiveDate = "2020-11-08",
Timestamp = 1435352000
},
{
Name = "Hotfix 16.10.2",
Link = "Update 16#Hotfix 16.10.2",
Aliases = { "16.10.2" },
ShortName = "H16.10.2",
Date = "2015-07-02",
Parent = "16.10",
ForumLink = "https://forums.warframe.com/topic/484099-hotfix-16102/",
ArchiveLink = "https://web.archive.org/web/20201020231254/https://forums.warframe.com/topic/484099-hotfix-16102/",
ArchiveDate = "2020-10-20",
Timestamp = 1435875051
},
{
Name = "Update 16.11",
Link = "Update 16#Update 16.11",
Aliases = { "16.11.0", "16.11" },
ShortName = "U16.11",
Date = "2015-07-07",
Parent = "16.11",
ForumLink = "https://forums.warframe.com/topic/486216-update-1611-ash-prime-hotfix-16111/",
ArchiveLink = "https://web.archive.org/web/20201020224247/https://forums.warframe.com/topic/486216-update-1611-ash-prime-hotfix-16111/",
ArchiveDate = "2020-10-20",
Timestamp = 1436294470,
Subtitle = "Ash Prime"
},
{
Name = "Hotfix 16.11.1",
Link = "Update 16#Hotfix 16.11.1",
Aliases = { "16.11.1" },
ShortName = "H16.11.1",
Date = "2015-07-07",
Parent = "16.11",
ForumLink = "https://forums.warframe.com/topic/486216-update-1611-ash-prime-hotfix-16111/",
ArchiveLink = "https://web.archive.org/web/20201020224247/https://forums.warframe.com/topic/486216-update-1611-ash-prime-hotfix-16111/",
ArchiveDate = "2020-10-20",
Timestamp = 1436294470
},
{
Name = "Hotfix 16.11.2",
Link = "Update 16#Hotfix 16.11.2",
Aliases = { "16.11.2" },
ShortName = "H16.11.2",
Date = "2015-07-08",
Parent = "16.11",
ForumLink = "https://forums.warframe.com/topic/486780-hotfix-16112/",
ArchiveLink = "https://web.archive.org/web/20201020232259/https://forums.warframe.com/topic/486780-hotfix-16112/",
ArchiveDate = "2020-10-20",
Timestamp = 1436368883
},
{
Name = "Hotfix 16.11.3",
Link = "Update 16#Hotfix 16.11.3",
Aliases = { "16.11.3" },
ShortName = "H16.11.3",
Date = "2015-07-10",
Parent = "16.11",
ForumLink = "https://forums.warframe.com/topic/488018-hotfix-16113/",
ArchiveLink = "https://web.archive.org/web/20201021000050/https://forums.warframe.com/topic/488018-hotfix-16113/",
ArchiveDate = "2020-10-21",
Timestamp = 1436543245
},
{
Name = "Hotfix 16.11.4",
Link = "Update 16#Hotfix 16.11.4",
Aliases = { "16.11.4" },
ShortName = "H16.11.4",
Date = "2015-07-10",
Parent = "16.11",
ForumLink = "https://forums.warframe.com/topic/488176-hotfix-16114/",
ArchiveLink = "https://web.archive.org/web/20201020233315/https://forums.warframe.com/topic/488176-hotfix-16114/",
ArchiveDate = "2020-10-20",
Timestamp = 1436559456
},
{
Name = "Hotfix 16.11.5",
Link = "Update 16#Hotfix 16.11.5",
Aliases = { "16.11.5" },
ShortName = "H16.11.5",
Date = "2015-07-15",
Parent = "16.11",
ForumLink = "https://forums.warframe.com/topic/490942-hotfix-16115/",
ArchiveLink = "https://web.archive.org/web/20220111212920/https://forums.warframe.com/topic/490942-hotfix-16115/",
ArchiveDate = "2022-01-11",
Timestamp = 1436990204
},
{
Name = "Update 17.0",
Link = "Update 17#Update 17.0",
Aliases = { "Update 17", "17.0", "17" },
ShortName = "U17.0",
Date = "2015-07-31",
Parent = "17.0",
ForumLink = "https://forums.warframe.com/topic/498793-update-17-echoes-of-the-sentient/",
ArchiveLink = "https://web.archive.org/web/20201225192807/https://forums.warframe.com/topic/498793-update-17-echoes-of-the-sentient/",
ArchiveDate = "2020-12-25",
Timestamp = 1438355365,
Subtitle = "Echoes Of The Sentient"
},
{
Name = "Hotfix 17.0.1",
Link = "Update 17#Hotfix 17.0.1",
Aliases = { "17.0.1" },
ShortName = "H17.0.1",
Date = "2015-07-31",
Parent = "17.0",
ForumLink = "https://forums.warframe.com/topic/499137-hotfix-1701/",
ArchiveLink = "https://web.archive.org/web/20210511210451/https://forums.warframe.com/topic/499137-hotfix-1701/",
ArchiveDate = "2021-05-11",
Timestamp = 1438369929
},
{
Name = "Hotfix 17.0.2",
Link = "Update 17#Hotfix 17.0.2",
Aliases = { "17.0.2" },
ShortName = "H17.0.2",
Date = "2015-07-31",
Parent = "17.0",
ForumLink = "https://forums.warframe.com/topic/499470-hotfix-1702/",
ArchiveLink = "https://web.archive.org/web/20210508050045/https://forums.warframe.com/topic/499470-hotfix-1702/",
ArchiveDate = "2021-05-08",
Timestamp = 1438383376
},
{
Name = "Hotfix 17.0.3",
Link = "Update 17#Hotfix 17.0.3",
Aliases = { "17.0.3" },
ShortName = "H17.0.3",
Date = "2015-08-04",
Parent = "17.0",
ForumLink = "https://forums.warframe.com/topic/503583-hotfix-1703/",
ArchiveLink = "https://web.archive.org/web/20210508045459/https://forums.warframe.com/topic/503583-hotfix-1703/",
ArchiveDate = "2021-05-08",
Timestamp = 1438726905
},
{
Name = "Hotfix 17.0.4",
Link = "Update 17#Hotfix 17.0.4",
Aliases = { "17.0.4" },
ShortName = "H17.0.4",
Date = "2015-08-06",
Parent = "17.0",
ForumLink = "https://forums.warframe.com/topic/504855-hotfix-1704/",
ArchiveLink = "https://web.archive.org/web/20210508044015/https://forums.warframe.com/topic/504855-hotfix-1704/",
ArchiveDate = "2021-05-08",
Timestamp = 1438872513
},
{
Name = "Hotfix 17.0.5",
Link = "Update 17#Hotfix 17.0.5",
Aliases = { "17.0.5" },
ShortName = "H17.0.5",
Date = "2015-08-07",
Parent = "17.0",
ForumLink = "https://forums.warframe.com/topic/505953-hotfix-1705/",
ArchiveLink = "https://web.archive.org/web/20210508040008/https://forums.warframe.com/topic/505953-hotfix-1705/",
ArchiveDate = "2021-05-08",
Timestamp = 1438980155
},
{
Name = "Update 17.1",
Link = "Update 17#Update 17.1",
Aliases = { "17.1.0", "17.1" },
ShortName = "U17.1",
Date = "2015-08-12",
Parent = "17.1",
ForumLink = "https://forums.warframe.com/topic/509640-update-1710-1714/",
ArchiveLink = "https://web.archive.org/web/20210508031909/https://forums.warframe.com/topic/509640-update-1710-1714/",
ArchiveDate = "2021-05-08",
Timestamp = 1439413725,
Subtitle = "Tenno Reinforcements: Nightwatch Camouflage and Rath Kittag Cloak"
},
{
Name = "Hotfix 17.1.1",
Link = "Update 17#Hotfix 17.1.1",
Aliases = { "17.1.1" },
ShortName = "H17.1.1",
Date = "2015-08-12",
Parent = "17.1",
ForumLink = "https://forums.warframe.com/topic/509640-update-1710-1714/",
ArchiveLink = "https://web.archive.org/web/20210508031909/https://forums.warframe.com/topic/509640-update-1710-1714/",
ArchiveDate = "2021-05-08",
Timestamp = 1439413725
},
{
Name = "Hotfix 17.1.2",
Link = "Update 17#Hotfix 17.1.2",
Aliases = { "17.1.2" },
ShortName = "H17.1.2",
Date = "2015-08-12",
Parent = "17.1",
ForumLink = "https://forums.warframe.com/topic/509640-update-1710-1714/",
ArchiveLink = "https://web.archive.org/web/20210508031909/https://forums.warframe.com/topic/509640-update-1710-1714/",
ArchiveDate = "2021-05-08",
Timestamp = 1439413725
},
{
Name = "Hotfix 17.1.3",
Link = "Update 17#Hotfix 17.1.3",
Aliases = { "17.1.3" },
ShortName = "H17.1.3",
Date = "2015-08-13",
Parent = "17.1",
ForumLink = "https://forums.warframe.com/topic/509640-update-1710-1714/",
ArchiveLink = "https://web.archive.org/web/20210508031909/https://forums.warframe.com/topic/509640-update-1710-1714/",
ArchiveDate = "2021-05-08",
Timestamp = 1439413725
},
{
Name = "Hotfix 17.1.4",
Link = "Update 17#Hotfix 17.1.4",
Aliases = { "17.1.4" },
ShortName = "H17.1.4",
Date = "2015-08-13",
Parent = "17.1",
ForumLink = "https://forums.warframe.com/topic/509640-update-1710-1714/",
ArchiveLink = "https://web.archive.org/web/20210508031909/https://forums.warframe.com/topic/509640-update-1710-1714/",
ArchiveDate = "2021-05-08",
Timestamp = 1439491212
},
{
Name = "Hotfix 17.1.5",
Link = "Update 17#Hotfix 17.1.5",
Aliases = { "17.1.5" },
ShortName = "H17.1.5",
Date = "2015-08-14",
Parent = "17.1",
ForumLink = "https://forums.warframe.com/topic/511107-hotfix-1715/",
ArchiveLink = "https://web.archive.org/web/20210508045425/https://forums.warframe.com/topic/511107-hotfix-1715/",
ArchiveDate = "2021-05-08",
Timestamp = 1439586863
},
{
Name = "Update 17.2",
Link = "Update 17#Update 17.2",
Aliases = { "17.2", "17.2.0" },
ShortName = "U17.2",
Date = "2015-08-19",
Parent = "17.2",
ForumLink = "https://forums.warframe.com/topic/514266-update-172/",
ArchiveLink = "https://web.archive.org/web/20210508042841/https://forums.warframe.com/topic/514266-update-172/",
ArchiveDate = "2021-05-08",
Timestamp = 1440020981,
Subtitle = "Tenno Reinforcements: Knux"
},
{
Name = "Hotfix 17.2.1",
Link = "Update 17#Hotfix 17.2.1",
Aliases = { "17.2.1" },
ShortName = "H17.2.1",
Date = "2015-08-20",
Parent = "17.2",
ForumLink = "https://forums.warframe.com/topic/514816-hotfix-1721/",
ArchiveLink = "https://web.archive.org/web/20210508050448/https://forums.warframe.com/topic/514816-hotfix-1721/",
ArchiveDate = "2021-05-08",
Timestamp = 1440096700
},
{
Name = "Hotfix 17.2.2",
Link = "Update 17#Hotfix 17.2.2",
Aliases = { "17.2.2" },
ShortName = "H17.2.2",
Date = "2015-08-21",
Parent = "17.2",
ForumLink = "https://forums.warframe.com/topic/515298-hotfix-1722/",
ArchiveLink = "https://web.archive.org/web/20210508033111/https://forums.warframe.com/topic/515298-hotfix-1722/",
ArchiveDate = "2021-05-08",
Timestamp = 1440176436
},
{
Name = "Hotfix 17.2.3",
Link = "Update 17#Hotfix 17.2.3",
Aliases = { "17.2.3" },
ShortName = "H17.2.3",
Date = "2015-08-24",
Parent = "17.2",
ForumLink = "https://forums.warframe.com/topic/517129-hotfix-1723/",
ArchiveLink = "https://web.archive.org/web/20210508034738/https://forums.warframe.com/topic/517129-hotfix-1723/",
ArchiveDate = "2021-05-08",
Timestamp = 1440450093
},
{
Name = "Update 17.2.4",
Link = "Update 17#Update 17.2.4",
Aliases = { "17.2.4" },
ShortName = "U17.2.4",
Date = "2015-08-26",
Parent = "17.2",
ForumLink = "https://forums.warframe.com/topic/518275-update-1724/",
ArchiveLink = "https://web.archive.org/web/20210508050412/https://forums.warframe.com/topic/518275-update-1724/",
ArchiveDate = "2021-05-08",
Timestamp = 1440618099,
Subtitle = "Tenno Reinforcements: Ifrit Kubrow Armor"
},
{
Name = "Hotfix 17.2.5",
Link = "Update 17#Hotfix 17.2.5",
Aliases = { "17.2.5" },
ShortName = "H17.2.5",
Date = "2015-08-27",
Parent = "17.2",
ForumLink = "https://forums.warframe.com/topic/518911-hotfix-1725/",
ArchiveLink = "https://web.archive.org/web/20210508035734/https://forums.warframe.com/topic/518911-hotfix-1725/",
ArchiveDate = "2021-05-08",
Timestamp = 1440712068
},
{
Name = "Hotfix 17.2.6",
Link = "Update 17#Hotfix 17.2.6",
Aliases = { "17.2.6" },
ShortName = "H17.2.6",
Date = "2015-08-28",
Parent = "17.2",
ForumLink = "https://forums.warframe.com/topic/519498-hotfix-1726/",
ArchiveLink = "https://web.archive.org/web/20210508050154/https://forums.warframe.com/topic/519498-hotfix-1726/",
ArchiveDate = "2021-05-08",
Timestamp = 1440799203
},
{
Name = "Update 17.3",
Link = "Update 17#Update 17.3",
Aliases = { "17.3.0", "17.3" },
ShortName = "U17.3",
Date = "2015-09-02",
Parent = "17.3",
ForumLink = "https://forums.warframe.com/topic/521781-update-1730/",
ArchiveLink = "https://web.archive.org/web/20210508041801/https://forums.warframe.com/topic/521781-update-1730/",
ArchiveDate = "2021-05-08",
Timestamp = 1441227406,
Subtitle = "Tenno Reinforcements: Syndicate Weapons and Diriga"
},
{
Name = "Hotfix 17.3.1",
Link = "Update 17#Hotfix 17.3.1",
Aliases = { "17.3.1" },
ShortName = "H17.3.1",
Date = "2015-09-04",
Parent = "17.3",
ForumLink = "https://forums.warframe.com/topic/522855-hotfix-1731/",
ArchiveLink = "https://web.archive.org/web/20210508051711/https://forums.warframe.com/topic/522855-hotfix-1731/",
ArchiveDate = "2021-05-08",
Timestamp = 1441382348
},
{
Name = "Update 17.4",
Link = "Update 17#Update 17.4",
Aliases = { "17.4.0", "17.4" },
ShortName = "U17.4",
Date = "2015-09-09",
Parent = "17.4",
ForumLink = "https://forums.warframe.com/topic/525957-update-1740/",
ArchiveLink = "https://web.archive.org/web/20210508044054/https://forums.warframe.com/topic/525957-update-1740/",
ArchiveDate = "2021-05-08",
Timestamp = 1441840702,
Subtitle = "Tenno Reinforcements: Ninkondi"
},
{
Name = "Hotfix 17.4.1",
Link = "Update 17#Hotfix 17.4.1",
Aliases = { "17.4.1" },
ShortName = "H17.4.1",
Date = "2015-09-10",
Parent = "17.4",
ForumLink = "https://forums.warframe.com/topic/526292-hotfix-1741/",
ArchiveLink = "https://web.archive.org/web/20210508042340/https://forums.warframe.com/topic/526292-hotfix-1741/",
ArchiveDate = "2021-05-08",
Timestamp = 1441899228
},
{
Name = "Hotfix 17.4.2",
Link = "Update 17#Hotfix 17.4.2",
Aliases = { "17.4.2" },
ShortName = "H17.4.2",
Date = "2015-09-11",
Parent = "17.4",
ForumLink = "https://forums.warframe.com/topic/526883-hotfix-1742/",
ArchiveLink = "https://web.archive.org/web/20210508044826/https://forums.warframe.com/topic/526883-hotfix-1742/",
ArchiveDate = "2021-05-08",
Timestamp = 1442004057
},
{
Name = "Hotfix 17.4.3",
Link = "Update 17#Hotfix 17.4.3",
Aliases = { "17.4.3" },
ShortName = "H17.4.3",
Date = "2015-09-16",
Parent = "17.4",
ForumLink = "https://forums.warframe.com/topic/529270-hotfix-1743/",
ArchiveLink = "https://web.archive.org/web/20210508043707/https://forums.warframe.com/topic/529270-hotfix-1743/",
ArchiveDate = "2021-05-08",
Timestamp = 1442435730,
Subtitle = "Man Of Few Words Quest"
},
{
Name = "Hotfix 17.4.4",
Link = "Update 17#Hotfix 17.4.4",
Aliases = { "17.4.4" },
ShortName = "H17.4.4",
Date = "2015-09-17",
Parent = "17.4",
ForumLink = "https://forums.warframe.com/topic/529758-hotfix-1744/",
ArchiveLink = "https://web.archive.org/web/20210508045749/https://forums.warframe.com/topic/529758-hotfix-1744/",
ArchiveDate = "2021-05-08",
Timestamp = 1442524323
},
{
Name = "Update 17.4.5",
Link = "Update 17#Update 17.4.5",
Aliases = { "17.4.5" },
ShortName = "U17.4.5",
Date = "2015-09-23",
Parent = "17.4",
ForumLink = "https://forums.warframe.com/topic/532623-update-1745/",
ArchiveLink = "https://web.archive.org/web/20210508040437/https://forums.warframe.com/topic/532623-update-1745/",
ArchiveDate = "2021-05-08",
Timestamp = 1443045775,
Subtitle = "Tenno Reinforcements: Spira"
},
{
Name = "Update 17.5",
Link = "Update 17#Update 17.5",
Aliases = { "17.5.0", "17.5" },
ShortName = "U17.5",
Date = "2015-10-01",
Parent = "17.5",
ForumLink = "https://forums.warframe.com/topic/536207-update-175-the-jordas-precept-hotfix-1751/",
ArchiveLink = "https://web.archive.org/web/20210508051856/https://forums.warframe.com/topic/536207-update-175-the-jordas-precept-hotfix-1751/",
ArchiveDate = "2021-05-08",
Timestamp = 1443751533,
Subtitle = "The Jordas Precept"
},
{
Name = "Hotfix 17.5.1",
Link = "Update 17#Hotfix 17.5.1",
Aliases = { "17.5.1" },
ShortName = "H17.5.1",
Date = "2015-10-01",
Parent = "17.5",
ForumLink = "https://forums.warframe.com/topic/536207-update-175-the-jordas-precept-hotfix-1751/",
ArchiveLink = "https://web.archive.org/web/20210508051856/https://forums.warframe.com/topic/536207-update-175-the-jordas-precept-hotfix-1751/",
ArchiveDate = "2021-05-08",
Timestamp = 1443751533
},
{
Name = "Hotfix 17.5.2",
Link = "Update 17#Hotfix 17.5.2",
Aliases = { "17.5.2" },
ShortName = "H17.5.2",
Date = "2015-10-01",
Parent = "17.5",
ForumLink = "https://forums.warframe.com/topic/536441-hotfix-1752/",
ArchiveLink = "https://web.archive.org/web/20210508042418/https://forums.warframe.com/topic/536441-hotfix-1752/",
ArchiveDate = "2021-05-08",
Timestamp = 1443767626
},
{
Name = "Hotfix 17.5.3",
Link = "Update 17#Hotfix 17.5.3",
Aliases = { "17.5.3" },
ShortName = "H17.5.3",
Date = "2015-10-02",
Parent = "17.5",
ForumLink = "https://forums.warframe.com/topic/536870-hotfix-1753/",
ArchiveLink = "https://web.archive.org/web/20210508051633/https://forums.warframe.com/topic/536870-hotfix-1753/",
ArchiveDate = "2021-05-08",
Timestamp = 1443802070
},
{
Name = "Hotfix 17.5.4",
Link = "Update 17#Hotfix 17.5.4",
Aliases = { "17.5.4" },
ShortName = "H17.5.4",
Date = "2015-10-02",
Parent = "17.5",
ForumLink = "https://forums.warframe.com/topic/537213-hotfix-1754/",
ArchiveLink = "https://web.archive.org/web/20210508040257/https://forums.warframe.com/topic/537213-hotfix-1754/",
ArchiveDate = "2021-05-08",
Timestamp = 1443823997
},
{
Name = "Hotfix 17.5.5",
Link = "Update 17#Hotfix 17.5.5",
Aliases = { "17.5.5" },
ShortName = "H17.5.5",
Date = "2015-10-05",
Parent = "17.5",
ForumLink = "https://forums.warframe.com/topic/539640-hotfix-1755/",
ArchiveLink = "https://web.archive.org/web/20210508044939/https://forums.warframe.com/topic/539640-hotfix-1755/",
ArchiveDate = "2021-05-08",
Timestamp = 1444083315
},
{
Name = "Update 17.6",
Link = "Update 17#Update 17.6",
Aliases = { "17.6.0", "17.6" },
ShortName = "U17.6",
Date = "2015-10-06",
Parent = "17.6",
ForumLink = "https://forums.warframe.com/topic/540178-update-176-trinity-prime/",
ArchiveLink = "https://web.archive.org/web/20210508041443/https://forums.warframe.com/topic/540178-update-176-trinity-prime/",
ArchiveDate = "2021-05-08",
Timestamp = 1444154253,
Subtitle = "Trinity Prime"
},
{
Name = "Hotfix 17.6.1",
Link = "Update 17#Hotfix 17.6.1",
Aliases = { "17.6.1" },
ShortName = "H17.6.1",
Date = "2015-10-07",
Parent = "17.6",
ForumLink = "https://forums.warframe.com/topic/540998-hotfix-1761/",
ArchiveLink = "https://web.archive.org/web/20210508045204/https://forums.warframe.com/topic/540998-hotfix-1761/",
ArchiveDate = "2021-05-08",
Timestamp = 1444251869
},
{
Name = "Hotfix 17.6.2",
Link = "Update 17#Hotfix 17.6.2",
Aliases = { "17.6.2" },
ShortName = "H17.6.2",
Date = "2015-10-08",
Parent = "17.6",
ForumLink = "https://forums.warframe.com/topic/541693-hotfix-1762/",
ArchiveLink = "https://web.archive.org/web/20210508043513/https://forums.warframe.com/topic/541693-hotfix-1762/",
ArchiveDate = "2021-05-08",
Timestamp = 1444340323
},
{
Name = "Update 17.7",
Link = "Update 17#Update 17.7",
Aliases = { "17.7.0", "17.7" },
ShortName = "U17.7",
Date = "2015-10-14",
Parent = "17.7",
ForumLink = "https://forums.warframe.com/topic/545312-update-177/",
ArchiveLink = "https://web.archive.org/web/20210508035130/https://forums.warframe.com/topic/545312-update-177/",
ArchiveDate = "2021-05-08",
Timestamp = 1444858639,
Subtitle = "Tenno Reinforcements: Boar Returns"
},
{
Name = "Hotfix 17.7.1",
Link = "Update 17#Hotfix 17.7.1",
Aliases = { "17.7.1" },
ShortName = "H17.7.1",
Date = "2015-10-15",
Parent = "17.7",
ForumLink = "https://forums.warframe.com/topic/545730-hotfix-1771/",
ArchiveLink = "https://web.archive.org/web/20210508044447/https://forums.warframe.com/topic/545730-hotfix-1771/",
ArchiveDate = "2021-05-08",
Timestamp = 1444929663
},
{
Name = "Update 17.8",
Link = "Update 17#Update 17.8",
Aliases = { "17.8.0", "17.8" },
ShortName = "U17.8",
Date = "2015-10-21",
Parent = "17.8",
ForumLink = "https://forums.warframe.com/topic/549118-update-1780/",
ArchiveLink = "https://web.archive.org/web/20210508035913/https://forums.warframe.com/topic/549118-update-1780/",
ArchiveDate = "2021-05-08",
Timestamp = 1445464703,
Subtitle = "Tenno Reinforcements: Ignis (Reskin) and Twin Basolk"
},
{
Name = "Hotfix 17.8.1",
Link = "Update 17#Hotfix 17.8.1",
Aliases = { "17.8.1" },
ShortName = "H17.8.1",
Date = "2015-10-22",
Parent = "17.8",
ForumLink = "https://forums.warframe.com/topic/549685-hotfix-1781/",
ArchiveLink = "https://web.archive.org/web/20210508034642/https://forums.warframe.com/topic/549685-hotfix-1781/",
ArchiveDate = "2021-05-08",
Timestamp = 1445543328
},
{
Name = "Update 17.9",
Link = "Update 17#Update 17.9",
Aliases = { "17.9.0", "17.9" },
ShortName = "U17.9",
Date = "2015-10-28",
Parent = "17.9",
ForumLink = "https://forums.warframe.com/topic/552544-update-1790/",
ArchiveLink = "https://web.archive.org/web/20210508042647/https://forums.warframe.com/topic/552544-update-1790/",
ArchiveDate = "2021-05-08",
Timestamp = 1446045147,
Subtitle = "Tenno Reinforcements: Cerata + Day Of The Dead"
},
{
Name = "Update 17.9.1",
Link = "Update 17#Update 17.9.1",
Aliases = { "17.9.1" },
ShortName = "U17.9.1",
Date = "2015-10-29",
Parent = "17.9",
ForumLink = "https://forums.warframe.com/topic/553319-update-1791/",
ArchiveLink = "https://web.archive.org/web/20191028155304/https://forums.warframe.com/topic/553319-update-1791/",
ArchiveDate = "2019-10-28",
Timestamp = 1446152069
},
{
Name = "Hotfix 17.9.2",
Link = "Update 17#Hotfix 17.9.2",
Aliases = { "17.9.2" },
ShortName = "H17.9.2",
Date = "2015-10-30",
Parent = "17.9",
ForumLink = "https://forums.warframe.com/topic/553920-hotfix-1792/",
ArchiveLink = "https://web.archive.org/web/20210508050228/https://forums.warframe.com/topic/553920-hotfix-1792/",
ArchiveDate = "2021-05-08",
Timestamp = 1446240047
},
{
Name = "Update 17.10",
Link = "Update 17#Update 17.10",
Aliases = { "17.10.0", "17.10" },
ShortName = "U17.10",
Date = "2015-11-04",
Parent = "17.10",
ForumLink = "https://forums.warframe.com/topic/556384-update-17100/",
ArchiveLink = "https://web.archive.org/web/20210508042032/https://forums.warframe.com/topic/556384-update-17100/",
ArchiveDate = "2021-05-08",
Timestamp = 1446679260,
Subtitle = "Saryn Revisited"
},
{
Name = "Hotfix 17.10.1",
Link = "Update 17#Hotfix 17.10.1",
Aliases = { "17.10.1" },
ShortName = "H17.10.1",
Date = "2015-11-05",
Parent = "17.10",
ForumLink = "https://forums.warframe.com/topic/556984-hotfix-17101/",
ArchiveLink = "https://web.archive.org/web/20210508032208/https://forums.warframe.com/topic/556984-hotfix-17101/",
ArchiveDate = "2021-05-08",
Timestamp = 1446766630
},
{
Name = "Hotfix 17.10.2",
Link = "Update 17#Hotfix 17.10.2",
Aliases = { "17.10.2" },
ShortName = "H17.10.2",
Date = "2015-11-09",
Parent = "17.10",
ForumLink = "https://forums.warframe.com/topic/558838-hotfix-17102-17103/",
ArchiveLink = "https://web.archive.org/web/20210508041157/https://forums.warframe.com/topic/558838-hotfix-17102-17103/",
ArchiveDate = "2021-05-08",
Timestamp = 1447088850
},
{
Name = "Hotfix 17.10.3",
Link = "Update 17#Hotfix 17.10.3",
Aliases = { "17.10.3" },
ShortName = "H17.10.3",
Date = "2015-11-09",
Parent = "17.10",
ForumLink = "https://forums.warframe.com/topic/558838-hotfix-17102-17103/",
ArchiveLink = "https://web.archive.org/web/20210508041157/https://forums.warframe.com/topic/558838-hotfix-17102-17103/",
ArchiveDate = "2021-05-08",
Timestamp = 1447088850
},
{
Name = "Hotfix 17.10.4",
Link = "Update 17#Hotfix 17.10.4",
Aliases = { "17.10.4" },
ShortName = "H17.10.4",
Date = "2015-11-10",
Parent = "17.10",
ForumLink = "https://forums.warframe.com/topic/559239-hotfix-17104/",
ArchiveLink = "https://web.archive.org/web/20210508050303/https://forums.warframe.com/topic/559239-hotfix-17104/",
ArchiveDate = "2021-05-08",
Timestamp = 1447176986
},
{
Name = "Update 17.11",
Link = "Update 17#Update 17.11",
Aliases = { "17.11.0", "17.11" },
ShortName = "U17.11",
Date = "2015-11-12",
Parent = "17.11",
ForumLink = "https://forums.warframe.com/topic/560104-update-17110-171101/",
ArchiveLink = "https://web.archive.org/web/20210508041955/https://forums.warframe.com/topic/560104-update-17110-171101/",
ArchiveDate = "2021-05-08",
Timestamp = 1447368935,
Subtitle = "Tenno Reinforcements: Mios"
},
{
Name = "Hotfix 17.11.0.1",
Link = "Update 17#Hotfix 17.11.0.1",
Aliases = { "17.11.0.1" },
ShortName = "H17.11.0.1",
Date = "2015-11-12",
Parent = "17.11",
ForumLink = "https://forums.warframe.com/topic/560104-update-17110-171101/",
ArchiveLink = "https://web.archive.org/web/20210508041955/https://forums.warframe.com/topic/560104-update-17110-171101/",
ArchiveDate = "2021-05-08",
Timestamp = 1447368935
},
{
Name = "Hotfix 17.11.1",
Link = "Update 17#Hotfix 17.11.1",
Aliases = { "17.11.1" },
ShortName = "H17.11.1",
Date = "2015-11-13",
Parent = "17.11",
ForumLink = "https://forums.warframe.com/topic/560373-hotfix-17111/",
ArchiveLink = "https://web.archive.org/web/20210508051411/https://forums.warframe.com/topic/560373-hotfix-17111/",
ArchiveDate = "2021-05-08",
Timestamp = 1447434234
},
{
Name = "Update 17.12",
Link = "Update 17#Update 17.12",
Aliases = { "17.12.0", "17.12" },
ShortName = "U17.12",
Date = "2015-11-25",
Parent = "17.12",
ForumLink = "https://forums.warframe.com/topic/564564-update-17120/",
ArchiveLink = "https://web.archive.org/web/20210508042226/https://forums.warframe.com/topic/564564-update-17120/",
ArchiveDate = "2021-05-08",
Timestamp = 1448472753,
Subtitle = "Palatine Bonus Weekend"
},
{
Name = "Hotfix 17.12.1",
Link = "Update 17#Hotfix 17.12.1",
Aliases = { "17.12.1" },
ShortName = "H17.12.1",
Date = "2015-11-25",
Parent = "17.12",
ForumLink = "https://forums.warframe.com/topic/564757-hotfix-17121/",
ArchiveLink = "https://web.archive.org/web/20191028155157/https://forums.warframe.com/topic/564757-hotfix-17121/",
ArchiveDate = "2019-10-28",
Timestamp = 1448489064
},
{
Name = "Update 18.0",
Link = "Update 18#Update 18.0",
Aliases = { "Update 18", "18.0", "18" },
ShortName = "U18.0",
Date = "2015-12-03",
Parent = "18.0",
ForumLink = "https://forums.warframe.com/topic/568455-update-18-the-second-dream/",
ArchiveLink = "https://web.archive.org/web/20211011084454/https://forums.warframe.com/topic/568455-update-18-the-second-dream/",
ArchiveDate = "2021-10-11",
Timestamp = 1449186400,
Subtitle = "The Second Dream"
},
{
Name = "Hotfix 18.0.1",
Link = "Update 18#Hotfix 18.0.1",
Aliases = { "18.0.1" },
ShortName = "H18.0.1",
Date = "2015-12-03",
Parent = "18.0",
ForumLink = "https://forums.warframe.com/topic/568729-hotfix-1801/",
ArchiveLink = "https://web.archive.org/web/20210508183534/https://forums.warframe.com/topic/568729-hotfix-1801/",
ArchiveDate = "2021-05-08",
Timestamp = 1449200091
},
{
Name = "Hotfix 18.0.2",
Link = "Update 18#Hotfix 18.0.2",
Aliases = { "18.0.2" },
ShortName = "H18.0.2",
Date = "2015-12-04",
Parent = "18.0",
ForumLink = "https://forums.warframe.com/topic/570056-hotfix-1802/",
ArchiveLink = "https://web.archive.org/web/20201124073301/https://forums.warframe.com/topic/570056-hotfix-1802/",
ArchiveDate = "2020-11-24",
Timestamp = 1449280351
},
{
Name = "Hotfix 18.0.3",
Link = "Update 18#Hotfix 18.0.3",
Aliases = { "18.0.3" },
ShortName = "H18.0.3",
Date = "2015-12-05",
Parent = "18.0",
ForumLink = "https://forums.warframe.com/topic/571190-hotfix-1803/",
ArchiveLink = "https://web.archive.org/web/20201206014701/https://forums.warframe.com/topic/571190-hotfix-1803/",
ArchiveDate = "2020-12-06",
Timestamp = 1449360420
},
{
Name = "Hotfix 18.0.4",
Link = "Update 18#Hotfix 18.0.4",
Aliases = { "18.0.4" },
ShortName = "H18.0.4",
Date = "2015-12-08",
Parent = "18.0",
ForumLink = "https://forums.warframe.com/topic/573860-hotfix-18041-spoilers/",
ArchiveLink = "https://web.archive.org/web/20201206003755/https://forums.warframe.com/topic/573860-hotfix-18041-spoilers/",
ArchiveDate = "2020-12-06",
Timestamp = 1449600954
},
{
Name = "Hotfix 18.0.4.1",
Link = "Update 18#Hotfix 18.0.4.1",
Aliases = { "18.0.4.1" },
ShortName = "H18.0.4.1",
Date = "2015-12-08",
Parent = "18.0",
ForumLink = "https://forums.warframe.com/topic/573860-hotfix-18041-spoilers/",
ArchiveLink = "https://web.archive.org/web/20201206003755/https://forums.warframe.com/topic/573860-hotfix-18041-spoilers/",
ArchiveDate = "2020-12-06",
Timestamp = 1449600954
},
{
Name = "Hotfix 18.0.5",
Link = "Update 18#Hotfix 18.0.5",
Aliases = { "18.0.5" },
ShortName = "H18.0.5",
Date = "2015-12-08",
Parent = "18.0",
ForumLink = "https://forums.warframe.com/topic/574103-hotfix-1805-spoilers/",
ArchiveLink = "https://web.archive.org/web/20210921022712/https://forums.warframe.com/topic/574103-hotfix-1805-spoilers/",
ArchiveDate = "2021-09-21",
Timestamp = 1449616351
},
{
Name = "Hotfix 18.0.6",
Link = "Update 18#Hotfix 18.0.6",
Aliases = { "18.0.6" },
ShortName = "H18.0.6",
Date = "2015-12-09",
Parent = "18.0",
ForumLink = "https://forums.warframe.com/topic/574983-hotfix-1806-18061-spoilers/",
ArchiveLink = "https://web.archive.org/web/20210513163559/https://forums.warframe.com/topic/574983-hotfix-1806-18061-spoilers/",
ArchiveDate = "2021-05-13",
Timestamp = 1449704119
},
{
Name = "Hotfix 18.0.6.1",
Link = "Update 18#Hotfix 18.0.6.1",
Aliases = { "18.0.6.1" },
ShortName = "H18.0.6.1",
Date = "2015-12-09",
Parent = "18.0",
ForumLink = "https://forums.warframe.com/topic/574983-hotfix-1806-18061-spoilers/",
ArchiveLink = "https://web.archive.org/web/20210513163559/https://forums.warframe.com/topic/574983-hotfix-1806-18061-spoilers/",
ArchiveDate = "2021-05-13",
Timestamp = 1449712386
},
{
Name = "Hotfix 18.0.7",
Link = "Update 18#Hotfix 18.0.7",
Aliases = { "18.0.7" },
ShortName = "H18.0.7",
Date = "2015-12-11",
Parent = "18.0",
ForumLink = "https://forums.warframe.com/topic/576214-hotfix-1807-spoilers/",
ArchiveLink = "https://web.archive.org/web/20210513153817/https://forums.warframe.com/topic/576214-hotfix-1807-spoilers/",
ArchiveDate = "2021-05-13",
Timestamp = 1449847986
},
{
Name = "Hotfix 18.0.8",
Link = "Update 18#Hotfix 18.0.8",
Aliases = { "18.0.8" },
ShortName = "H18.0.8",
Date = "2015-12-11",
Parent = "18.0",
ForumLink = "https://forums.warframe.com/topic/576435-hotfix-1808-spoilers/",
ArchiveLink = "https://web.archive.org/web/20201206002328/https://forums.warframe.com/topic/576435-hotfix-1808-spoilers/",
ArchiveDate = "2020-12-06",
Timestamp = 1449867504
},
{
Name = "Update 18.1",
Link = "Update 18#Update 18.1",
Aliases = { "18.1.0", "18.1" },
ShortName = "U18.1",
Date = "2015-12-16",
Parent = "18.1",
ForumLink = "https://forums.warframe.com/topic/579670-update-1810-spoilers/",
ArchiveLink = "https://web.archive.org/web/20201206021904/https://forums.warframe.com/topic/579670-update-1810-spoilers/",
ArchiveDate = "2020-12-06",
Timestamp = 1450303144,
Subtitle = "Nezha"
},
{
Name = "Hotfix 18.1.1",
Link = "Update 18#Hotfix 18.1.1",
Aliases = { "18.1.1" },
ShortName = "H18.1.1",
Date = "2015-12-16",
Parent = "18.1",
ForumLink = "https://forums.warframe.com/topic/579777-hotfix-1811-spoilers/",
ArchiveLink = "https://web.archive.org/web/20201124073057/https://forums.warframe.com/topic/579777-hotfix-1811-spoilers/",
ArchiveDate = "2020-11-24",
Timestamp = 1450308673
},
{
Name = "Hotfix 18.1.2",
Link = "Update 18#Hotfix 18.1.2",
Aliases = { "18.1.2" },
ShortName = "H18.1.2",
Date = "2015-12-16",
Parent = "18.1",
ForumLink = "https://forums.warframe.com/topic/579874-hotfix-1812-spoilers/",
ArchiveLink = "https://web.archive.org/web/20201206005744/https://forums.warframe.com/topic/579874-hotfix-1812-spoilers/",
ArchiveDate = "2020-12-06",
Timestamp = 1450314749
},
{
Name = "Hotfix 18.1.3",
Link = "Update 18#Hotfix 18.1.3",
Aliases = { "18.1.3" },
ShortName = "H18.1.3",
Date = "2015-12-18",
Parent = "18.1",
ForumLink = "https://forums.warframe.com/topic/581009-hotfix-1813-spoilers/",
ArchiveLink = "https://web.archive.org/web/20201124065940/https://forums.warframe.com/topic/581009-hotfix-1813-spoilers/",
ArchiveDate = "2020-11-24",
Timestamp = 1450455654
},
{
Name = "Hotfix 18.1.3.1",
Link = "Update 18#Hotfix 18.1.3.1",
Aliases = { "18.1.3.1" },
ShortName = "H18.1.3.1",
Date = "2015-12-18",
Parent = "18.1",
ForumLink = "https://forums.warframe.com/topic/581249-hotfix-18131/",
ArchiveLink = "https://web.archive.org/web/20210511052033/https://forums.warframe.com/topic/581249-hotfix-18131/",
ArchiveDate = "2021-05-11",
Timestamp = 1450477248
},
{
Name = "Hotfix 18.1.4",
Link = "Update 18#Hotfix 18.1.4",
Aliases = { "18.1.4" },
ShortName = "H18.1.4",
Date = "2015-12-21",
Parent = "18.1",
ForumLink = "https://forums.warframe.com/topic/582957-hotfix-1814-spoilers/",
ArchiveLink = "https://web.archive.org/web/20201206021413/https://forums.warframe.com/topic/582957-hotfix-1814-spoilers/",
ArchiveDate = "2020-12-06",
Timestamp = 1450719758
},
{
Name = "Update 18.2",
Link = "Update 18#Update 18.2",
Aliases = { "18.2.0", "18.2" },
ShortName = "U18.2",
Date = "2016-01-05",
Parent = "18.2",
ForumLink = "https://forums.warframe.com/topic/590253-update-1820/",
ArchiveLink = "https://web.archive.org/web/20210513164913/https://forums.warframe.com/topic/590253-update-1820/",
ArchiveDate = "2021-05-13",
Timestamp = 1452018260,
Subtitle = "Tenno Reinforcements: Sydon"
},
{
Name = "Hotfix 18.2.1",
Link = "Update 18#Hotfix 18.2.1",
Aliases = { "18.2.1" },
ShortName = "H18.2.1",
Date = "2016-01-05",
Parent = "18.2",
ForumLink = "https://forums.warframe.com/topic/590417-hotfix-1821/",
ArchiveLink = "https://web.archive.org/web/20210513164434/https://forums.warframe.com/topic/590417-hotfix-1821/",
ArchiveDate = "2021-05-13",
Timestamp = 1452039787
},
{
Name = "Hotfix 18.2.2",
Link = "Update 18#Hotfix 18.2.2",
Aliases = { "18.2.2" },
ShortName = "H18.2.2",
Date = "2016-01-07",
Parent = "18.2",
ForumLink = "https://forums.warframe.com/topic/591319-hotfix-1822/",
ArchiveLink = "https://web.archive.org/web/20210513155110/https://forums.warframe.com/topic/591319-hotfix-1822/",
ArchiveDate = "2021-05-13",
Timestamp = 1452205577
},
{
Name = "Hotfix 18.2.3",
Link = "Update 18#Hotfix 18.2.3",
Aliases = { "18.2.3" },
ShortName = "H18.2.3",
Date = "2016-01-08",
Parent = "18.2",
ForumLink = "https://forums.warframe.com/topic/591655-hotfix-1823/",
ArchiveLink = "https://web.archive.org/web/20210514013317/https://forums.warframe.com/topic/591655-hotfix-1823/",
ArchiveDate = "2021-05-14",
Timestamp = 1452274372
},
{
Name = "Hotfix 18.2.4",
Link = "Update 18#Hotfix 18.2.4",
Aliases = { "18.2.4" },
ShortName = "H18.2.4",
Date = "2016-01-08",
Parent = "18.2",
ForumLink = "https://forums.warframe.com/topic/591843-hotfix-1824/",
ArchiveLink = "https://web.archive.org/web/20210513164808/https://forums.warframe.com/topic/591843-hotfix-1824/",
ArchiveDate = "2021-05-13",
Timestamp = 1452292050
},
{
Name = "Update 18.3",
Link = "Update 18#Update 18.3",
Aliases = { "18.3.0", "18.3" },
ShortName = "U18.3",
Date = "2016-01-13",
Parent = "18.3",
ForumLink = "https://forums.warframe.com/topic/594267-update-183/",
ArchiveLink = "https://web.archive.org/web/20201206021309/https://forums.warframe.com/topic/594267-update-183/",
ArchiveDate = "2020-12-06",
Timestamp = 1452725758,
Subtitle = "Tenno Reinforcements: Destreza"
},
{
Name = "Hotfix 18.3.1",
Link = "Update 18#Hotfix 18.3.1",
Aliases = { "18.3.1" },
ShortName = "H18.3.1",
Date = "2016-01-14",
Parent = "18.3",
ForumLink = "https://forums.warframe.com/topic/594795-hotfix-1831-18311/",
ArchiveLink = "https://web.archive.org/web/20201206010849/https://forums.warframe.com/topic/594795-hotfix-1831-18311/",
ArchiveDate = "2020-12-06",
Timestamp = 1452811851
},
{
Name = "Hotfix 18.3.1.1",
Link = "Update 18#Hotfix 18.3.1.1",
Aliases = { "18.3.1.1" },
ShortName = "H18.3.1.1",
Date = "2016-01-14",
Parent = "18.3",
ForumLink = "https://forums.warframe.com/topic/594795-hotfix-1831-18311/",
ArchiveLink = "https://web.archive.org/web/20201206010849/https://forums.warframe.com/topic/594795-hotfix-1831-18311/",
ArchiveDate = "2020-12-06",
Timestamp = 1452811851
},
{
Name = "Update 18.4",
Link = "Update 18#Update 18.4",
Aliases = { "18.4.0", "18.4" },
ShortName = "U18.4",
Date = "2016-01-22",
Parent = "18.4",
ForumLink = "https://forums.warframe.com/topic/597888-update-1840/",
ArchiveLink = "https://web.archive.org/web/20210508075720/https://forums.warframe.com/topic/597888-update-1840/",
ArchiveDate = "2021-05-08",
Timestamp = 1453422263,
Subtitle = "Trinity Deluxe Strega Collection"
},
{
Name = "Hotfix 18.4.1",
Link = "Update 18#Hotfix 18.4.1",
Aliases = { "18.4.1" },
ShortName = "H18.4.1",
Date = "2016-01-25",
Parent = "18.4",
ForumLink = "https://forums.warframe.com/topic/600011-hotfix-1841-operation-shadow-debt/",
ArchiveLink = "https://web.archive.org/web/20210511052227/https://forums.warframe.com/topic/600011-hotfix-1841-operation-shadow-debt/",
ArchiveDate = "2021-05-11",
Timestamp = 1453755248,
Subtitle = "Operation: Shadow Debt"
},
{
Name = "Hotfix 18.4.2",
Link = "Update 18#Hotfix 18.4.2",
Aliases = { "18.4.2" },
ShortName = "H18.4.2",
Date = "2016-01-25",
Parent = "18.4",
ForumLink = "https://forums.warframe.com/topic/600108-hotfix-1842/",
ArchiveLink = "https://web.archive.org/web/20201206021024/https://forums.warframe.com/topic/600108-hotfix-1842/",
ArchiveDate = "2020-12-06",
Timestamp = 1453764511
},
{
Name = "Hotfix 18.4.3",
Link = "Update 18#Hotfix 18.4.3",
Aliases = { "18.4.3" },
ShortName = "H18.4.3",
Date = "2016-01-27",
Parent = "18.4",
ForumLink = "https://forums.warframe.com/topic/601147-hotfix-1843/",
ArchiveLink = "https://web.archive.org/web/20201206014122/https://forums.warframe.com/topic/601147-hotfix-1843/",
ArchiveDate = "2020-12-06",
Timestamp = 1453926647
},
{
Name = "Hotfix 18.4.4",
Link = "Update 18#Hotfix 18.4.4",
Aliases = { "18.4.4" },
ShortName = "H18.4.4",
Date = "2016-01-28",
Parent = "18.4",
ForumLink = "https://forums.warframe.com/topic/601635-hotfix-1844-18441/",
ArchiveLink = "https://web.archive.org/web/20201206020229/https://forums.warframe.com/topic/601635-hotfix-1844-18441/",
ArchiveDate = "2020-12-06",
Timestamp = 1454013194
},
{
Name = "Hotfix 18.4.4.1",
Link = "Update 18#Hotfix 18.4.4.1",
Aliases = { "18.4.4.1" },
ShortName = "H18.4.4.1",
Date = "2016-01-28",
Parent = "18.4",
ForumLink = "https://forums.warframe.com/topic/601635-hotfix-1844-18441/",
ArchiveLink = "https://web.archive.org/web/20201206020229/https://forums.warframe.com/topic/601635-hotfix-1844-18441/",
ArchiveDate = "2020-12-06",
Timestamp = 1454018066
},
{
Name = "Hotfix 18.4.5",
Link = "Update 18#Hotfix 18.4.5",
Aliases = { "18.4.5" },
ShortName = "H18.4.5",
Date = "2016-01-29",
Parent = "18.4",
ForumLink = "https://forums.warframe.com/topic/602084-hotfix-1845/",
ArchiveLink = "https://web.archive.org/web/20201206015423/https://forums.warframe.com/topic/602084-hotfix-1845/",
ArchiveDate = "2020-12-06",
Timestamp = 1454086868
},
{
Name = "Hotfix 18.4.6",
Link = "Update 18#Hotfix 18.4.6",
Aliases = { "18.4.6" },
ShortName = "H18.4.6",
Date = "2016-02-01",
Parent = "18.4",
ForumLink = "https://forums.warframe.com/topic/603669-hotfix-1846/",
ArchiveLink = "https://web.archive.org/web/20201206003515/https://forums.warframe.com/topic/603669-hotfix-1846/",
ArchiveDate = "2020-12-06",
Timestamp = 1454350645
},
{
Name = "Hotfix 18.4.7",
Link = "Update 18#Hotfix 18.4.7",
Aliases = { "18.4.7" },
ShortName = "H18.4.7",
Date = "2016-02-04",
Parent = "18.4",
ForumLink = "https://forums.warframe.com/topic/605204-hotfix-1847/",
ArchiveLink = "https://web.archive.org/web/20201124070606/https://forums.warframe.com/topic/605204-hotfix-1847/",
ArchiveDate = "2020-11-24",
Timestamp = 1454625816,
Subtitle = "Tenno Reinforcements: Porta Armor and Staticor"
},
{
Name = "Hotfix 18.4.8",
Link = "Update 18#Hotfix 18.4.8",
Aliases = { "18.4.8" },
ShortName = "H18.4.8",
Date = "2016-02-05",
Parent = "18.4",
ForumLink = "https://forums.warframe.com/index.php?/topic/605807-hotfix-1848/",
ArchiveLink = "https://web.archive.org/web/20160412182812/https://forums.warframe.com/topic/605807-hotfix-1848/",
ArchiveDate = "2016-04-12",
Timestamp = 1454714551
},
{
Name = "Hotfix 18.4.9",
Link = "Update 18#Hotfix 18.4.9",
Aliases = { "18.4.9" },
ShortName = "H18.4.9",
Date = "2016-02-08",
Parent = "18.4",
ForumLink = "https://forums.warframe.com/topic/607236-hotfix-1849/",
ArchiveLink = "https://web.archive.org/web/20201206012444/https://forums.warframe.com/topic/607236-hotfix-1849/",
ArchiveDate = "2020-12-06",
Timestamp = 1454969739
},
{
Name = "Hotfix 18.4.10",
Link = "Update 18#Hotfix 18.4.10",
Aliases = { "18.4.10" },
ShortName = "H18.4.10",
Date = "2016-02-11",
Parent = "18.4",
ForumLink = "https://forums.warframe.com/topic/608673-hotfix-18410-tactial-alert-divine-will/",
ArchiveLink = "https://web.archive.org/web/20201124072804/https://forums.warframe.com/topic/608673-hotfix-18410-tactial-alert-divine-will/",
ArchiveDate = "2020-11-24",
Timestamp = 1455233232,
Subtitle = "Tactical Alert: Divine Will"
},
{
Name = "Hotfix 18.4.11",
Link = "Update 18#Hotfix 18.4.11",
Aliases = { "18.4.11" },
ShortName = "H18.4.11",
Date = "2016-02-12",
Parent = "18.4",
ForumLink = "https://forums.warframe.com/topic/609136-hotfix-18411/",
ArchiveLink = "https://web.archive.org/web/20201206014942/https://forums.warframe.com/topic/609136-hotfix-18411/",
ArchiveDate = "2020-12-06",
Timestamp = 1455307162
},
{
Name = "Hotfix 18.4.12",
Link = "Update 18#Hotfix 18.4.12",
Aliases = { "18.4.12" },
ShortName = "H18.4.12",
Date = "2016-02-16",
Parent = "18.4",
ForumLink = "https://forums.warframe.com/topic/611132-hotfix-18412-saryn-prime/",
ArchiveLink = "https://web.archive.org/web/20201206014149/https://forums.warframe.com/topic/611132-hotfix-18412-saryn-prime/",
ArchiveDate = "2020-12-06",
Timestamp = 1455657022,
Subtitle = "Saryn Prime"
},
{
Name = "Hotfix 18.4.13",
Link = "Update 18#Hotfix 18.4.13",
Aliases = { "18.4.13" },
ShortName = "H18.4.13",
Date = "2016-02-22",
Parent = "18.4",
ForumLink = "https://forums.warframe.com/topic/612235-hotfix-18413/",
ArchiveLink = "https://web.archive.org/web/20210514012816/https://forums.warframe.com/topic/612235-hotfix-18413/",
ArchiveDate = "2021-05-14",
Timestamp = 1456181077
},
{
Name = "Update 18.5",
Link = "Update 18#Update 18.5",
Aliases = { "18.5.0", "18.5" },
ShortName = "U18.5",
Date = "2016-03-04",
Parent = "18.5",
ForumLink = "https://forums.warframe.com/topic/618642-update-185-sands-of-inaros-%C2%A0/",
ArchiveLink = "https://web.archive.org/web/20211010180104/https://forums.warframe.com/topic/618642-update-185-sands-of-inaros-%C2%A0/",
ArchiveDate = "2021-10-10",
Timestamp = 1457115653,
Subtitle = "Sands Of Inaros"
},
{
Name = "Hotfix 18.5.1",
Link = "Update 18#Hotfix 18.5.1",
Aliases = { "18.5.1" },
ShortName = "H18.5.1",
Date = "2016-03-04",
Parent = "18.5",
ForumLink = "https://forums.warframe.com/topic/618959-hotfix-1851/",
ArchiveLink = "https://web.archive.org/web/20210514020552/https://forums.warframe.com/topic/618959-hotfix-1851/",
ArchiveDate = "2021-05-14",
Timestamp = 1457135774
},
{
Name = "Hotfix 18.5.2",
Link = "Update 18#Hotfix 18.5.2",
Aliases = { "18.5.2" },
ShortName = "H18.5.2",
Date = "2016-03-05",
Parent = "18.5",
ForumLink = "https://forums.warframe.com/topic/619803-hotfix-1852/",
ArchiveLink = "https://web.archive.org/web/20210514020235/https://forums.warframe.com/topic/619803-hotfix-1852/",
ArchiveDate = "2021-05-14",
Timestamp = 1457217070
},
{
Name = "Hotfix 18.5.3",
Link = "Update 18#Hotfix 18.5.3",
Aliases = { "18.5.3" },
ShortName = "H18.5.3",
Date = "2016-03-06",
Parent = "18.5",
ForumLink = "https://forums.warframe.com/topic/620027-hotfix-1853/",
ArchiveLink = "https://web.archive.org/web/20210303220726/https://forums.warframe.com/topic/620027-hotfix-1853/",
ArchiveDate = "2021-03-03",
Timestamp = 1457241940
},
{
Name = "Hotfix 18.5.4",
Link = "Update 18#Hotfix 18.5.4",
Aliases = { "18.5.4" },
ShortName = "H18.5.4",
Date = "2016-03-07",
Parent = "18.5",
ForumLink = "https://forums.warframe.com/topic/621181-hotfix-1854/",
ArchiveLink = "https://web.archive.org/web/20210514020813/https://forums.warframe.com/topic/621181-hotfix-1854/",
ArchiveDate = "2021-05-14",
Timestamp = 1457391130
},
{
Name = "Hotfix 18.5.5",
Link = "Update 18#Hotfix 18.5.5",
Aliases = { "18.5.5" },
ShortName = "H18.5.5",
Date = "2016-03-08",
Parent = "18.5",
ForumLink = "https://forums.warframe.com/topic/621794-hotfix-1855-18551/",
ArchiveLink = "https://web.archive.org/web/20210513164825/https://forums.warframe.com/topic/621794-hotfix-1855-18551/",
ArchiveDate = "2021-05-13",
Timestamp = 1457473669
},
{
Name = "Hotfix 18.5.5.1",
Link = "Update 18#Hotfix 18.5.5.1",
Aliases = { "18.5.5.1" },
ShortName = "H18.5.5.1",
Date = "2016-03-08",
Parent = "18.5",
ForumLink = "https://forums.warframe.com/topic/621794-hotfix-1855-18551/",
ArchiveLink = "https://web.archive.org/web/20210513164825/https://forums.warframe.com/topic/621794-hotfix-1855-18551/",
ArchiveDate = "2021-05-13",
Timestamp = 1457473669
},
{
Name = "Hotfix 18.5.6",
Link = "Update 18#Hotfix 18.5.6",
Aliases = { "18.5.6" },
ShortName = "H18.5.6",
Date = "2016-03-10",
Parent = "18.5",
ForumLink = "https://forums.warframe.com/topic/622846-hotfix-1856/",
ArchiveLink = "https://web.archive.org/web/20210508133624/https://forums.warframe.com/topic/622846-hotfix-1856/",
ArchiveDate = "2021-05-08",
Timestamp = 1457640017
},
{
Name = "Update 18.6",
Link = "Update 18#Update 18.6",
Aliases = { "18.6.0", "18.6" },
ShortName = "U18.6",
Date = "2016-03-16",
Parent = "18.6",
ForumLink = "https://forums.warframe.com/topic/625930-update-186/",
ArchiveLink = "https://web.archive.org/web/20210508203841/https://forums.warframe.com/topic/625930-update-186/",
ArchiveDate = "2021-05-08",
Timestamp = 1458158840,
Subtitle = "Tenno Reinforcements: Zhuge"
},
{
Name = "Hotfix 18.6.1",
Link = "Update 18#Hotfix 18.6.1",
Aliases = { "18.6.1" },
ShortName = "H18.6.1",
Date = "2016-03-16",
Parent = "18.6",
ForumLink = "https://forums.warframe.com/topic/626005-hotfix-1861-18611/",
ArchiveLink = "https://web.archive.org/web/20210513164732/https://forums.warframe.com/topic/626005-hotfix-1861-18611/",
ArchiveDate = "2021-05-13",
Timestamp = 1458168238
},
{
Name = "Hotfix 18.6.1.1",
Link = "Update 18#Hotfix 18.6.1.1",
Aliases = { "18.6.1.1" },
ShortName = "H18.6.1.1",
Date = "2016-03-16",
Parent = "18.6",
ForumLink = "https://forums.warframe.com/topic/626005-hotfix-1861-18611/",
ArchiveLink = "https://web.archive.org/web/20210513164732/https://forums.warframe.com/topic/626005-hotfix-1861-18611/",
ArchiveDate = "2021-05-13",
Timestamp = 1458168238
},
{
Name = "Hotfix 18.6.2",
Link = "Update 18#Hotfix 18.6.2",
Aliases = { "18.6.2" },
ShortName = "H18.6.2",
Date = "2016-03-22",
Parent = "18.6",
ForumLink = "https://forums.warframe.com/topic/628628-hotfix-1862/",
ArchiveLink = "https://web.archive.org/web/20210514020901/https://forums.warframe.com/topic/628628-hotfix-1862/",
ArchiveDate = "2021-05-14",
Timestamp = 1458668260
},
{
Name = "Hotfix 18.6.3",
Link = "Update 18#Hotfix 18.6.3",
Aliases = { "18.6.3" },
ShortName = "H18.6.3",
Date = "2016-03-23",
Parent = "18.6",
ForumLink = "https://forums.warframe.com/topic/629210-hotfix-1863/",
ArchiveLink = "https://web.archive.org/web/20210508203623/https://forums.warframe.com/topic/629210-hotfix-1863/",
ArchiveDate = "2021-05-08",
Timestamp = 1458766812,
Subtitle = "TennoGen Round 3"
},
{
Name = "Update 18.7",
Link = "Update 18#Update 18.7",
Aliases = { "18.7.0", "18.7" },
ShortName = "U18.7",
Date = "2016-03-30",
Parent = "18.7",
ForumLink = "https://forums.warframe.com/topic/632293-update-1870/",
ArchiveLink = "https://web.archive.org/web/20201123191549/https://forums.warframe.com/topic/632293-update-1870/",
ArchiveDate = "2020-11-23",
Timestamp = 1459376290,
Subtitle = "Oberon Deluxe Feyarch Collection"
},
{
Name = "Hotfix 18.7.1",
Link = "Update 18#Hotfix 18.7.1",
Aliases = { "18.7.1" },
ShortName = "H18.7.1",
Date = "2016-03-31",
Parent = "18.7",
ForumLink = "https://forums.warframe.com/topic/632776-hotfix-1871/",
ArchiveLink = "https://web.archive.org/web/20210514013540/https://forums.warframe.com/topic/632776-hotfix-1871/",
ArchiveDate = "2021-05-14",
Timestamp = 1459459948
},
{
Name = "Update 18.8",
Link = "Update 18#Update 18.8",
Aliases = { "18.8.0", "18.8" },
ShortName = "U18.8",
Date = "2016-04-06",
Parent = "18.8",
ForumLink = "https://forums.warframe.com/topic/635136-update-1880/",
ArchiveLink = "https://web.archive.org/web/20211121092304/https://forums.warframe.com/topic/635136-update-1880/",
ArchiveDate = "2021-11-21",
Timestamp = 1459974690,
Subtitle = "Tenno Reinforcements: Sibear"
},
{
Name = "Hotfix 18.8.1",
Link = "Update 18#Hotfix 18.8.1",
Aliases = { "18.8.1" },
ShortName = "H18.8.1",
Date = "2016-04-08",
Parent = "18.8",
ForumLink = "https://forums.warframe.com/topic/635853-hotfix-1881/",
ArchiveLink = "https://web.archive.org/web/20210508141735/https://forums.warframe.com/topic/635853-hotfix-1881/",
ArchiveDate = "2021-05-08",
Timestamp = 1460131636
},
{
Name = "Hotfix 18.8.2",
Link = "Update 18#Hotfix 18.8.2",
Aliases = { "18.8.2" },
ShortName = "H18.8.2",
Date = "2016-04-13",
Parent = "18.8",
ForumLink = "https://forums.warframe.com/topic/637581-hotfix-1882/",
ArchiveLink = "https://web.archive.org/web/20210514020258/https://forums.warframe.com/topic/637581-hotfix-1882/",
ArchiveDate = "2021-05-14",
Timestamp = 1460573612
},
{
Name = "Update 18.9",
Link = "Update 18#Update 18.9",
Aliases = { "18.9.0", "18.9" },
ShortName = "U18.9",
Date = "2016-04-20",
Parent = "18.9",
ForumLink = "https://forums.warframe.com/topic/639851-update-1890/",
ArchiveLink = "https://web.archive.org/web/20201123195905/https://forums.warframe.com/topic/639851-update-1890/",
ArchiveDate = "2020-11-23",
Timestamp = 1461188358,
Subtitle = "Banshee Deluxe Soprana Skin"
},
{
Name = "Update 18.10",
Link = "Update 18#Update 18.10",
Aliases = { "18.10.0", "18.10" },
ShortName = "U18.10",
Date = "2016-04-29",
Parent = "18.10",
ForumLink = "https://forums.warframe.com/topic/642897-update-18100-operation-rathuum/",
ArchiveLink = "https://web.archive.org/web/20210514004352/https://forums.warframe.com/topic/642897-update-18100-operation-rathuum/",
ArchiveDate = "2021-05-14",
Timestamp = 1461949458,
Subtitle = "Operation Rathuum"
},
{
Name = "Hotfix 18.10.1",
Link = "Update 18#Hotfix 18.10.1",
Aliases = { "18.10.1" },
ShortName = "H18.10.1",
Date = "2016-04-29",
Parent = "18.10",
ForumLink = "https://forums.warframe.com/topic/643077-hotfix-18101-%C2%A0operation-rathuum/",
ArchiveLink = "https://web.archive.org/web/20210508134159/https://forums.warframe.com/topic/643077-hotfix-18101-%C2%A0operation-rathuum/",
ArchiveDate = "2021-05-08",
Timestamp = 1461981218
},
{
Name = "Hotfix 18.10.2",
Link = "Update 18#Hotfix 18.10.2",
Aliases = { "18.10.2" },
ShortName = "H18.10.2",
Date = "2016-04-30",
Parent = "18.10",
ForumLink = "https://forums.warframe.com/topic/643527-hotfix-18102-18103-operation-rathuum/",
ArchiveLink = "https://web.archive.org/web/20210513164244/https://forums.warframe.com/topic/643527-hotfix-18102-18103-operation-rathuum/",
ArchiveDate = "2021-05-13",
Timestamp = 1462056870
},
{
Name = "Hotfix 18.10.3",
Link = "Update 18#Hotfix 18.10.3",
Aliases = { "18.10.3" },
ShortName = "H18.10.3",
Date = "2016-04-30",
Parent = "18.10",
ForumLink = "https://forums.warframe.com/topic/643527-hotfix-18102-18103-operation-rathuum/",
ArchiveLink = "https://web.archive.org/web/20210513164244/https://forums.warframe.com/topic/643527-hotfix-18102-18103-operation-rathuum/",
ArchiveDate = "2021-05-13",
Timestamp = 1462056870
},
{
Name = "Hotfix 18.10.4",
Link = "Update 18#Hotfix 18.10.4",
Aliases = { "18.10.4" },
ShortName = "H18.10.4",
Date = "2016-05-02",
Parent = "18.10",
ForumLink = "https://forums.warframe.com/topic/644355-hotfix-18104-operation-rathuum/",
ArchiveLink = "https://web.archive.org/web/20210508201312/https://forums.warframe.com/topic/644355-hotfix-18104-operation-rathuum/",
ArchiveDate = "2021-05-08",
Timestamp = 1462224562
},
{
Name = "Hotfix 18.10.5",
Link = "Update 18#Hotfix 18.10.5",
Aliases = { "18.10.5" },
ShortName = "H18.10.5",
Date = "2016-05-04",
Parent = "18.10",
ForumLink = "https://forums.warframe.com/topic/645092-hotfix-18105/",
ArchiveLink = "https://web.archive.org/web/20210303201413/https://forums.warframe.com/topic/645092-hotfix-18105/",
ArchiveDate = "2021-03-03",
Timestamp = 1462397582
},
{
Name = "Hotfix 18.10.6",
Link = "Update 18#Hotfix 18.10.6",
Aliases = { "18.10.6" },
ShortName = "H18.10.6",
Date = "2016-05-06",
Parent = "18.10",
ForumLink = "https://forums.warframe.com/topic/645736-hotfix-18106/",
ArchiveLink = "https://web.archive.org/web/20210508142449/https://forums.warframe.com/topic/645736-hotfix-18106/",
ArchiveDate = "2021-05-08",
Timestamp = 1462569803
},
{
Name = "Update 18.11",
Link = "Update 18#Update 18.11",
Aliases = { "18.11.0", "18.11" },
ShortName = "U18.11",
Date = "2016-05-11",
Parent = "18.11",
ForumLink = "https://forums.warframe.com/topic/647209-update-18110-18111/",
ArchiveLink = "https://web.archive.org/web/20211128110132/https://forums.warframe.com/topic/647209-update-18110-18111/",
ArchiveDate = "2021-11-28",
Timestamp = 1462998634,
Subtitle = "Tenno Reinforcements: Stradavar"
},
{
Name = "Hotfix 18.11.1",
Link = "Update 18#Hotfix 18.11.1",
Aliases = { "18.11.1" },
ShortName = "H18.11.1",
Date = "2016-05-11",
Parent = "18.11",
ForumLink = "https://forums.warframe.com/topic/647209-update-18110-18111/",
ArchiveLink = "https://web.archive.org/web/20211128110132/https://forums.warframe.com/topic/647209-update-18110-18111/",
ArchiveDate = "2021-11-28",
Timestamp = 1462998634
},
{
Name = "Update 18.12",
Link = "Update 18#Update 18.12",
Aliases = { "18.12.0", "18.12" },
ShortName = "U18.12",
Date = "2016-05-17",
Parent = "18.12",
ForumLink = "https://forums.warframe.com/topic/649037-update-18120-vauban-prime-18121/",
ArchiveLink = "https://web.archive.org/web/20211121123101/https://forums.warframe.com/topic/649037-update-18120-vauban-prime-18121/",
ArchiveDate = "2021-11-21",
Timestamp = 1463508000,
Subtitle = "Vauban Prime"
},
{
Name = "Hotfix 18.12.1",
Link = "Update 18#Hotfix 18.12.1",
Aliases = { "18.12.1" },
ShortName = "H18.12.1",
Date = "2016-05-17",
Parent = "18.12",
ForumLink = "https://forums.warframe.com/topic/649037-update-18120-vauban-prime-18121/",
ArchiveLink = "https://web.archive.org/web/20211121123101/https://forums.warframe.com/topic/649037-update-18120-vauban-prime-18121/",
ArchiveDate = "2021-11-21",
Timestamp = 1463508000
},
{
Name = "Hotfix 18.12.2",
Link = "Update 18#Hotfix 18.12.2",
Aliases = { "18.12.2" },
ShortName = "H18.12.2",
Date = "2016-05-20",
Parent = "18.12",
ForumLink = "https://forums.warframe.com/topic/650205-hotfix-18122/",
ArchiveLink = "https://web.archive.org/web/20201123194348/https://forums.warframe.com/topic/650205-hotfix-18122/",
ArchiveDate = "2020-11-23",
Timestamp = 1463762416
},
{
Name = "Update 18.13",
Link = "Update 18#Update 18.13",
Aliases = { "18.13.0", "18.13" },
ShortName = "U18.13",
Date = "2016-05-27",
Parent = "18.13",
ForumLink = "https://forums.warframe.com/topic/652752-update-18130-tennogen-passives-reworks%C2%A0/",
ArchiveLink = "https://web.archive.org/web/20201204163909/https://forums.warframe.com/topic/652752-update-18130-tennogen-passives-reworks%C2%A0/",
ArchiveDate = "2020-12-04",
Timestamp = 1464384029,
Subtitle = "TennoGen Round 4, Passives, & Reworks"
},
{
Name = "Hotfix 18.13.1",
Link = "Update 18#Hotfix 18.13.1",
Aliases = { "18.13.1" },
ShortName = "H18.13.1",
Date = "2016-05-27",
Parent = "18.13",
ForumLink = "https://forums.warframe.com/topic/652966-hotfix-18131/",
ArchiveLink = "https://web.archive.org/web/20201125145727/https://forums.warframe.com/topic/652966-hotfix-18131/",
ArchiveDate = "2020-11-25",
Timestamp = 1464403503
},
{
Name = "Hotfix 18.13.1.1",
Link = "Update 18#Hotfix 18.13.1.1",
Aliases = { "18.13.1.1" },
ShortName = "H18.13.1.1",
Date = "2016-05-27",
Parent = "18.13",
ForumLink = "https://forums.warframe.com/topic/652966-hotfix-18131/",
ArchiveLink = "https://web.archive.org/web/20201125145727/https://forums.warframe.com/topic/652966-hotfix-18131/",
ArchiveDate = "2020-11-25",
Timestamp = 1464406039
},
{
Name = "Hotfix 18.13.2",
Link = "Update 18#Hotfix 18.13.2",
Aliases = { "18.13.2" },
ShortName = "H18.13.2",
Date = "2016-06-01",
Parent = "18.13",
ForumLink = "https://forums.warframe.com/topic/655270-hotfix-18132/",
ArchiveLink = "https://web.archive.org/web/20201124155502/https://forums.warframe.com/topic/655270-hotfix-18132/",
ArchiveDate = "2020-11-24",
Timestamp = 1464820671
},
{
Name = "Hotfix 18.13.3",
Link = "Update 18#Hotfix 18.13.3",
Aliases = { "18.13.3" },
ShortName = "H18.13.3",
Date = "2016-06-02",
Parent = "18.13",
ForumLink = "https://forums.warframe.com/topic/655596-hotfix-18133/",
ArchiveLink = "https://web.archive.org/web/20201123191434/https://forums.warframe.com/topic/655596-hotfix-18133/",
ArchiveDate = "2020-11-23",
Timestamp = 1464889523
},
{
Name = "Update 18.14",
Link = "Update 18#Update 18.14",
Aliases = { "18.14.0", "18.14" },
ShortName = "U18.14",
Date = "2016-06-08",
Parent = "18.14",
ForumLink = "https://forums.warframe.com/topic/657761-update-18140-181401-18141/",
ArchiveLink = "https://web.archive.org/web/20211117180426/https://forums.warframe.com/topic/657761-update-18140-181401-18141/",
ArchiveDate = "2021-11-17",
Timestamp = 1465423202,
Subtitle = "Tenno Reinforcements: Dark Split-Sword"
},
{
Name = "Hotfix 18.14.0.1",
Link = "Update 18#Hotfix 18.14.0.1",
Aliases = { "18.14.0.1" },
ShortName = "H18.14.0.1",
Date = "2016-06-08",
Parent = "18.14",
ForumLink = "https://forums.warframe.com/topic/657761-update-18140-181401-18141/",
ArchiveLink = "https://web.archive.org/web/20211117180426/https://forums.warframe.com/topic/657761-update-18140-181401-18141/",
ArchiveDate = "2021-11-17",
Timestamp = 1465423202
},
{
Name = "Hotfix 18.14.1",
Link = "Update 18#Hotfix 18.14.1",
Aliases = { "18.14.1" },
ShortName = "H18.14.1",
Date = "2016-06-08",
Parent = "18.14",
ForumLink = "https://forums.warframe.com/topic/657761-update-18140-181401-18141/",
ArchiveLink = "https://web.archive.org/web/20211117180426/https://forums.warframe.com/topic/657761-update-18140-181401-18141/",
ArchiveDate = "2021-11-17",
Timestamp = 1465423202
},
{
Name = "Hotfix 18.14.2",
Link = "Update 18#Hotfix 18.14.2",
Aliases = { "18.14.2" },
ShortName = "H18.14.2",
Date = "2016-06-09",
Parent = "18.14",
ForumLink = "https://forums.warframe.com/topic/658183-hotfix-18142/",
ArchiveLink = "https://web.archive.org/web/20201024154231/https://forums.warframe.com/topic/658183-hotfix-18142/",
ArchiveDate = "2020-10-24",
Timestamp = 1465507283
},
{
Name = "Update: Lunaro",
Link = "Update 19#Update: Lunaro",
Aliases = { "Lunaro" },
ShortName = "U18.15",
Date = "2016-06-15",
Parent = "19.0",
ParentName = "Lunaro",
ForumLink = "https://forums.warframe.com/topic/660347-update-lunaro/",
ArchiveLink = "https://web.archive.org/web/20211102100257/https://forums.warframe.com/topic/660347-update-lunaro/",
ArchiveDate = "2021-11-02",
Timestamp = 1466035099,
Subtitle = "Lunaro"
},
{
Name = "Hotfix: Lunaro 1",
Link = "Update 19#Hotfix: Lunaro 1",
Aliases = { "Lunaro 1" },
ShortName = "H18.15.1",
Date = "2016-06-15",
Parent = "19.0",
ParentName = "Lunaro",
ForumLink = "https://forums.warframe.com/topic/660475-hotfix-lunaro-1/",
ArchiveLink = "https://web.archive.org/web/20201027185617/https://forums.warframe.com/topic/660475-hotfix-lunaro-1/",
ArchiveDate = "2020-10-27",
Timestamp = 1466049673
},
{
Name = "Hotfix: Lunaro 2",
Link = "Update 19#Hotfix: Lunaro 2",
Aliases = { "Lunaro 2" },
ShortName = "H18.15.2",
Date = "2016-06-16",
Parent = "19.0",
ParentName = "Lunaro",
ForumLink = "https://forums.warframe.com/topic/660805-hotfix-lunaro-2/",
ArchiveLink = "https://web.archive.org/web/20191028154226/https://forums.warframe.com/topic/660805-hotfix-lunaro-2/",
ArchiveDate = "2019-10-28",
Timestamp = 1466101527
},
{
Name = "Hotfix: Lunaro 3",
Link = "Update 19#Hotfix: Lunaro 3",
Aliases = { "Lunaro 3" },
ShortName = "H18.15.3",
Date = "2016-06-17",
Parent = "19.0",
ParentName = "Lunaro",
ForumLink = "https://forums.warframe.com/topic/661367-hotfix-lunaro-3/",
ArchiveLink = "https://web.archive.org/web/20191028154229/https://forums.warframe.com/topic/661367-hotfix-lunaro-3/",
ArchiveDate = "2019-10-28",
Timestamp = 1466200869
},
{
Name = "Hotfix: Lunaro 4",
Link = "Update 19#Hotfix: Lunaro 4",
Aliases = { "Lunaro 4" },
ShortName = "H18.15.4",
Date = "2016-06-20",
Parent = "19.0",
ParentName = "Lunaro",
ForumLink = "https://forums.warframe.com/topic/662589-hotfix-lunaro-4/",
ArchiveLink = "https://web.archive.org/web/20210302114650/https://forums.warframe.com/topic/662589-hotfix-lunaro-4/",
ArchiveDate = "2021-03-02",
Timestamp = 1466459057
},
{
Name = "Hotfix: Lunaro 5",
Link = "Update 19#Hotfix: Lunaro 5",
Aliases = { "Lunaro 5" },
ShortName = "H18.15.5",
Date = "2016-06-23",
Parent = "19.0",
ParentName = "Lunaro",
ForumLink = "https://forums.warframe.com/topic/663562-hotfix-lunaro-5/",
ArchiveLink = "https://web.archive.org/web/20191028154210/https://forums.warframe.com/topic/663562-hotfix-lunaro-5/",
ArchiveDate = "2019-10-28",
Timestamp = 1466716301
},
{
Name = "Hotfix: Lunaro 6",
Link = "Update 19#Hotfix: Lunaro 6",
Aliases = { "Lunaro 6" },
ShortName = "H18.15.6",
Date = "2016-06-28",
Parent = "19.0",
ParentName = "Lunaro",
ForumLink = "https://forums.warframe.com/topic/665045-hotfix-lunaro-6/",
ArchiveLink = "https://web.archive.org/web/20220108044058/https://forums.warframe.com/topic/665045-hotfix-lunaro-6/",
ArchiveDate = "2022-01-08",
Timestamp = 1467136684
},
{
Name = "Hotfix: Lunaro 7",
Link = "Update 19#Hotfix: Lunaro 7",
Aliases = { "Lunaro 7" },
ShortName = "H18.15.7",
Date = "2016-06-29",
Parent = "19.0",
ParentName = "Lunaro",
ForumLink = "https://forums.warframe.com/topic/665427-hotfix-lunaro-7-71/",
ArchiveLink = "https://web.archive.org/web/20191028154200/https://forums.warframe.com/topic/665427-hotfix-lunaro-7-71/",
ArchiveDate = "2019-10-28",
Timestamp = 1467232353
},
{
Name = "Hotfix: Lunaro 7.1",
Link = "Update 19#Hotfix: Lunaro 7.1",
Aliases = { "Lunaro 7.1" },
ShortName = "H18.15.7.1",
Date = "2016-06-30",
Parent = "19.0",
ParentName = "Lunaro",
ForumLink = "https://forums.warframe.com/topic/665427-hotfix-lunaro-7-71/",
ArchiveLink = "https://web.archive.org/web/20191028154200/https://forums.warframe.com/topic/665427-hotfix-lunaro-7-71/",
ArchiveDate = "2019-10-28",
Timestamp = 1467232353
},
{
Name = "Update: Specters of the Rail 0.0",
Link = "Update 19#Update: Specters of the Rail",
Aliases = { "Specters of the Rail", "Specters of the Rail 0.0", "SotR" },
ShortName = "U18.16.0",
Date = "2016-07-08",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/668132-update-specters-of-the-rail/",
ArchiveLink = "https://web.archive.org/web/20211122132025/https://forums.warframe.com/topic/668132-update-specters-of-the-rail/",
ArchiveDate = "2021-11-22",
Timestamp = 1467987168,
Subtitle = "Specters of the Rail"
},
{
Name = "Hotfix: Specters of the Rail 0.1",
Link = "Update 19#Hotfix: Specters of the Rail 1",
Aliases = { "Specters of the Rail 1", "SotR 1" },
ShortName = "H18.16.0.1",
Date = "2016-07-08",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/668573-hotfix-specters-of-the-rail-1/",
ArchiveLink = "https://web.archive.org/web/20220108043905/https://forums.warframe.com/topic/668573-specters-of-the-rail-hotfix-1/",
ArchiveDate = "2022-01-08",
Timestamp = 1468013636
},
{
Name = "Hotfix: Specters of the Rail 0.2",
Link = "Update 19#Hotfix: Specters of the Rail 2",
Aliases = { "Specters of the Rail 2", "SotR 2" },
ShortName = "H18.16.0.2",
Date = "2016-07-08",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/668858-specters-of-the-rail-hotfix-2/",
ArchiveLink = "https://web.archive.org/web/20191028154117/https://forums.warframe.com/topic/668858-specters-of-the-rail-hotfix-2/",
ArchiveDate = "2019-10-28",
Timestamp = 1468030511
},
{
Name = "Hotfix: Specters of the Rail 0.3",
Link = "Update 19#Hotfix: Specters of the Rail 3",
Aliases = { "Specters of the Rail 3", "SotR 3" },
ShortName = "H18.16.0.3",
Date = "2016-07-10",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/671326-specters-of-the-rail-hotfix-3/",
ArchiveLink = "https://web.archive.org/web/20220108043647/https://forums.warframe.com/topic/671326-specters-of-the-rail-hotfix-3/",
ArchiveDate = "2022-01-08",
Timestamp = 1468246041
},
{
Name = "Hotfix: Specters of the Rail 0.4",
Link = "Update 19#Hotfix: Specters of the Rail 4",
Aliases = { "Specters of the Rail 4", "SotR 4" },
ShortName = "H18.16.0.4",
Date = "2016-07-11",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/671654-specters-of-the-rail-hotfix-4/",
ArchiveLink = "https://web.archive.org/web/20201228201802/https://forums.warframe.com/topic/671654-specters-of-the-rail-hotfix-4/",
ArchiveDate = "2020-12-28",
Timestamp = 1468274344
},
{
Name = "Hotfix: Specters of the Rail 0.5",
Link = "Update 19#Hotfix: Specters of the Rail 5",
Aliases = { "Specters of the Rail 5", "SotR 5" },
ShortName = "H18.16.0.5",
Date = "2016-07-12",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/672399-specters-of-the-rail-hotfix-5/",
ArchiveLink = "https://web.archive.org/web/20220108043507/https://forums.warframe.com/topic/672399-specters-of-the-rail-hotfix-5/",
ArchiveDate = "2022-01-08",
Timestamp = 1468352366
},
{
Name = "Hotfix: Specters of the Rail 0.6",
Link = "Update 19#Hotfix: Specters of the Rail 6",
Aliases = { "Specters of the Rail 6", "SotR 6" },
ShortName = "H18.16.0.6",
Date = "2016-07-12",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/672459-specters-of-the-rail-hotfix-6/",
ArchiveLink = "https://web.archive.org/web/20191028154123/https://forums.warframe.com/topic/672459-specters-of-the-rail-hotfix-6/",
ArchiveDate = "2019-10-28",
Timestamp = 1468357051
},
{
Name = "Hotfix: Specters of the Rail 0.7",
Link = "Update 19#Hotfix: Specters of the Rail 7",
Aliases = { "Specters of the Rail 7", "SotR 7" },
ShortName = "H18.16.0.7",
Date = "2016-07-14",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/673586-specters-of-the-rail-hotfix-7/",
ArchiveLink = "https://web.archive.org/web/20201108093137/https://forums.warframe.com/topic/673586-specters-of-the-rail-hotfix-7/",
ArchiveDate = "2020-11-08",
Timestamp = 1468508842
},
{
Name = "Hotfix: Specters of the Rail 0.8",
Link = "Update 19#Hotfix: Specters of the Rail 8",
Aliases = { "Specters of the Rail 8", "SotR 8" },
ShortName = "H18.16.0.8",
Date = "2016-07-14",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/673656-specters-of-the-rail-hotfix-8/",
ArchiveLink = "https://web.archive.org/web/20191028154122/https://forums.warframe.com/topic/673656-specters-of-the-rail-hotfix-8/",
ArchiveDate = "2019-10-28",
Timestamp = 1468513333
},
{
Name = "Hotfix: Specters of the Rail 0.9",
Link = "Update 19#Hotfix: Specters of the Rail 9",
Aliases = { "Specters of the Rail 9", "SotR 9" },
ShortName = "H18.16.0.9",
Date = "2016-07-14",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/673733-specters-of-the-rail-hotfix-9/",
ArchiveLink = "https://web.archive.org/web/20191028154116/https://forums.warframe.com/topic/673733-specters-of-the-rail-hotfix-9/",
ArchiveDate = "2019-10-28",
Timestamp = 1468519381
},
{
Name = "Hotfix: Specters of the Rail 0.10",
Link = "Update 19#Hotfix: Specters of the Rail 10",
Aliases = { "Specters of the Rail 10", "SotR 10" },
ShortName = "H18.16.0.10",
Date = "2016-07-15",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/674474-specters-of-the-rail-hotfix-10/",
ArchiveLink = "https://web.archive.org/web/20191028154121/https://forums.warframe.com/topic/674474-specters-of-the-rail-hotfix-10/",
ArchiveDate = "2019-10-28",
Timestamp = 1468617895
},
{
Name = "Hotfix: Specters of the Rail 0.11",
Link = "Update 19#Hotfix: Specters of the Rail 11",
Aliases = { "Specters of the Rail 11", "SotR 11" },
ShortName = "H18.16.0.11",
Date = "2016-07-19",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/676666-specters-of-the-rail-hotfix-11/",
ArchiveLink = "https://web.archive.org/web/20201108161911/https://forums.warframe.com/topic/676666-specters-of-the-rail-hotfix-11/",
ArchiveDate = "2020-11-08",
Timestamp = 1468963477
},
{
Name = "Hotfix: Specters of the Rail 0.12",
Link = "Update 19#Hotfix: Specters of the Rail 12",
Aliases = { "Specters of the Rail 12", "SotR 12" },
ShortName = "H18.16.0.12",
Date = "2016-07-20",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/677187-specters-of-the-rail-hotfix-12/",
ArchiveLink = "https://web.archive.org/web/20191028154037/https://forums.warframe.com/topic/677187-specters-of-the-rail-hotfix-12/",
ArchiveDate = "2019-10-28",
Timestamp = 1469046508
},
{
Name = "Hotfix: Specters of the Rail 0.13",
Link = "Update 19#Hotfix: Specters of the Rail 13",
Aliases = { "Specters of the Rail 13", "SotR 13" },
ShortName = "H18.16.0.13",
Date = "2016-07-26",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/679601-specters-of-the-rail-hotfix-13/",
ArchiveLink = "https://web.archive.org/web/20191028154033/https://forums.warframe.com/topic/679601-specters-of-the-rail-hotfix-13/",
ArchiveDate = "2019-10-28",
Timestamp = 1469558322
},
{
Name = "Update: Specters of the Rail 1",
Link = "Update 19#Update: Specters of the Rail 1.0",
Aliases = { "Specters of the Rail 1.0", "SotR 1.0" },
ShortName = "U18.16.1",
Date = "2016-07-28",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/680396-specters-of-the-rail-update-1/",
ArchiveLink = "https://web.archive.org/web/20211107000822/https://forums.warframe.com/topic/680396-specters-of-the-rail-update-1/",
ArchiveDate = "2021-11-07",
Timestamp = 1469719050,
Subtitle = "Tenno Reinforcements: Heliocor"
},
{
Name = "Hotfix: Specters of the Rail 1.1",
Link = "Update 19#Hotfix: Specters of the Rail 1.1",
Aliases = { "Specters of the Rail 1.1", "SotR 1.1" },
ShortName = "H18.16.1.1",
Date = "2016-07-29",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/680905-specters-of-the-rail-u11/",
ArchiveLink = "https://web.archive.org/web/20201108093811/https://forums.warframe.com/topic/680905-specters-of-the-rail-u11/",
ArchiveDate = "2020-11-08",
Timestamp = 1469807133
},
{
Name = "Update: Specters of the Rail 2",
Link = "Update 19#Update: Specters of the Rail 2.0",
Aliases = { "Specters of the Rail 2.0", "SotR 2.0" },
ShortName = "U18.16.2",
Date = "2016-08-03",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/682884-specters-of-the-rail-update-2/",
ArchiveLink = "https://web.archive.org/web/20211115073607/https://forums.warframe.com/topic/682884-specters-of-the-rail-update-2/",
ArchiveDate = "2021-11-15",
Timestamp = 1470260601,
Subtitle = "Tenno Reinforcements: Nova Deluxe Asuri Collection"
},
{
Name = "Hotfix: Specters of the Rail 2.1",
Link = "Update 19#Hotfix: Specters of the Rail 2.1",
Aliases = { "Specters of the Rail 2.1", "SotR 2.1" },
ShortName = "H18.16.2.1",
Date = "2016-08-10",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/685418-specters-of-the-rail-u21/",
ArchiveLink = "https://web.archive.org/web/20201111230524/https://forums.warframe.com/topic/685418-specters-of-the-rail-u21/",
ArchiveDate = "2020-11-11",
Timestamp = 1470851824
},
{
Name = "Hotfix: Specters of the Rail 2.2",
Link = "Update 19#Hotfix: Specters of the Rail 2.2",
Aliases = { "Specters of the Rail 2.2", "SotR 2.2" },
ShortName = "H18.16.2.2",
Date = "2016-08-10",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/685485-specters-of-the-rail-u22/",
ArchiveLink = "https://web.archive.org/web/20200808112153/https://forums.warframe.com/topic/685485-specters-of-the-rail-u22/",
ArchiveDate = "2020-08-08",
Timestamp = 1470862877
},
{
Name = "Hotfix: Specters of the Rail 2.3",
Link = "Update 19#Hotfix: Specters of the Rail 2.3",
Aliases = { "Specters of the Rail 2.3", "SotR 2.3" },
ShortName = "H18.16.2.3",
Date = "2016-08-12",
Parent = "19.1",
ParentName = "Specters of the Rail",
ForumLink = "https://forums.warframe.com/topic/686115-specters-of-the-rail-u23/",
ArchiveLink = "https://web.archive.org/web/20191028153926/https://forums.warframe.com/topic/686115-specters-of-the-rail-u23/",
ArchiveDate = "2019-10-28",
Timestamp = 1471019883
},
{
Name = "Update: The Silver Grove",
Link = "Update 19#Update: The Silver Grove",
Aliases = { "The Silver Grove", "TSG" },
ShortName = "U18.17",
Date = "2016-08-19",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/688644-the-silver-grove/",
ArchiveLink = "https://web.archive.org/web/20201108124224/https://forums.warframe.com/topic/688644-the-silver-grove/",
ArchiveDate = "2020-11-08",
Timestamp = 1471627975,
Subtitle = "The Silver Grove"
},
{
Name = "Hotfix: The Silver Grove 1",
Link = "Update 19#Hotfix: The Silver Grove 1",
Aliases = { "The Silver Grove 1", "TSG 1" },
ShortName = "H18.17.0.1",
Date = "2016-08-19",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/688833-the-silver-grove-hotfix-1/",
ArchiveLink = "https://web.archive.org/web/20201108103656/https://forums.warframe.com/topic/688833-the-silver-grove-hotfix-1/",
ArchiveDate = "2020-11-08",
Timestamp = 1471644479
},
{
Name = "Hotfix: The Silver Grove 2",
Link = "Update 19#Hotfix: The Silver Grove 2",
Aliases = { "The Silver Grove 2", "TSG 2" },
ShortName = "H18.17.0.2",
Date = "2016-08-22",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/690677-the-silver-grove-hotfix-2/",
ArchiveLink = "https://web.archive.org/web/20191028153935/https://forums.warframe.com/topic/690677-the-silver-grove-hotfix-2/",
ArchiveDate = "2019-10-28",
Timestamp = 1471905141
},
{
Name = "Hotfix: The Silver Grove 3",
Link = "Update 19#Hotfix: The Silver Grove 3",
Aliases = { "The Silver Grove 3", "TSG 3" },
ShortName = "H18.17.0.3",
Date = "2016-08-23",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/691098-the-silver-grove-hotfix-3-nekros-prime%C2%A0/",
ArchiveLink = "https://web.archive.org/web/20191028153933/https://forums.warframe.com/topic/691098-the-silver-grove-hotfix-3-nekros-prime%C2%A0/",
ArchiveDate = "2019-10-28",
Timestamp = 1471974958,
Subtitle = "Nekros Prime"
},
{
Name = "Hotfix: The Silver Grove 4",
Link = "Update 19#Hotfix: The Silver Grove 4",
Aliases = { "The Silver Grove 4", "TSG 4" },
ShortName = "H18.17.0.4",
Date = "2016-08-25",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/692289-the-silver-grove-hotfix-4/",
ArchiveLink = "https://web.archive.org/web/20210507051329/https://forums.warframe.com/topic/692289-the-silver-grove-hotfix-4/",
ArchiveDate = "2021-05-07",
Timestamp = 1472155506
},
{
Name = "Hotfix: The Silver Grove 5",
Link = "Update 19#Hotfix: The Silver Grove 5",
Aliases = { "The Silver Grove 5", "TSG 5" },
ShortName = "H18.17.0.5",
Date = "2016-08-26",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/692680-the-silver-grove-hotfix-5/",
ArchiveLink = "https://web.archive.org/web/20201123195812/https://forums.warframe.com/topic/692680-the-silver-grove-hotfix-5/",
ArchiveDate = "2020-11-23",
Timestamp = 1472226306
},
{
Name = "Update: The Silver Grove 1.0",
Link = "Update 19#Update: The Silver Grove 1.0",
Aliases = { "The Silver Grove 1.0", "TSG 1.0" },
ShortName = "U18.17.1",
Date = "2016-08-31",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/694786-the-silver-grove-update-1/",
ArchiveLink = "https://web.archive.org/web/20211106175223/https://forums.warframe.com/topic/694786-the-silver-grove-update-1/",
ArchiveDate = "2021-11-06",
Timestamp = 1472668082,
Subtitle = "TennoGen Round ??"
},
{
Name = "Hotfix: The Silver Grove 1.1",
Link = "Update 19#Hotfix: The Silver Grove 1.1",
Aliases = { "The Silver Grove 1.1", "TSG 1.1" },
ShortName = "H18.17.1.1",
Date = "2016-08-31",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/694841-the-silver-grove-u11/",
ArchiveLink = "https://web.archive.org/web/20220108042327/https://forums.warframe.com/topic/694841-the-silver-grove-u11/",
ArchiveDate = "2022-01-08",
Timestamp = 1472676367
},
{
Name = "Hotfix: The Silver Grove 1.2",
Link = "Update 19#Hotfix: The Silver Grove 1.2",
Aliases = { "The Silver Grove 1.2", "TSG 1.2" },
ShortName = "H18.17.1.2",
Date = "2016-09-02",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/695536-the-silver-grove-u12-u13/",
ArchiveLink = "https://web.archive.org/web/20201108135658/https://forums.warframe.com/topic/695536-the-silver-grove-u12-u13/",
ArchiveDate = "2020-11-08",
Timestamp = 1472839283
},
{
Name = "Hotfix: The Silver Grove 1.3",
Link = "Update 19#Hotfix: The Silver Grove 1.3",
Aliases = { "The Silver Grove 1.3", "TSG 1.3" },
ShortName = "H18.17.1.3",
Date = "2016-09-02",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/695536-the-silver-grove-u12-u13/",
ArchiveLink = "https://web.archive.org/web/20201108135658/https://forums.warframe.com/topic/695536-the-silver-grove-u12-u13/",
ArchiveDate = "2020-11-08",
Timestamp = 1472846559
},
{
Name = "Hotfix: The Silver Grove 1.4",
Link = "Update 19#Hotfix: The Silver Grove 1.4",
Aliases = { "The Silver Grove 1.4", "TSG 1.4" },
ShortName = "H18.17.1.4",
Date = "2016-09-09",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/697770-the-silver-grove-u14/",
ArchiveLink = "https://web.archive.org/web/20191028153819/https://forums.warframe.com/topic/697770-the-silver-grove-u14/",
ArchiveDate = "2019-10-28",
Timestamp = 1473436191
},
{
Name = "Update: The Silver Grove 2.0",
Link = "Update 19#Update: The Silver Grove 2.0",
Aliases = { "The Silver Grove 2.0", "TSG 2.0" },
ShortName = "U18.17.2",
Date = "2016-09-15",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/699623-the-silver-grove-u2/",
ArchiveLink = "https://web.archive.org/web/20210228224418/https://forums.warframe.com/topic/699623-the-silver-grove-u2/",
ArchiveDate = "2021-02-28",
Timestamp = 1473975062,
Subtitle = "Tenno Reinforcements: Syndicate Melees"
},
{
Name = "Hotfix: The Silver Grove 2.1",
Link = "Update 19#Hotfix: The Silver Grove 2.1",
Aliases = { "The Silver Grove 2.1", "TSG 2.1" },
ShortName = "H18.17.2.1",
Date = "2016-09-16",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/699953-the-silver-grove-u21-u22/",
ArchiveLink = "https://web.archive.org/web/20191028153828/https://forums.warframe.com/topic/699953-the-silver-grove-u21-u22/",
ArchiveDate = "2019-10-28",
Timestamp = 1474049887
},
{
Name = "Hotfix: The Silver Grove 2.2",
Link = "Update 19#Hotfix: The Silver Grove 2.2",
Aliases = { "The Silver Grove 2.2", "TSG 2.2" },
ShortName = "H18.17.2.2",
Date = "2016-09-16",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/699953-the-silver-grove-u21-u22/",
ArchiveLink = "https://web.archive.org/web/20191028153828/https://forums.warframe.com/topic/699953-the-silver-grove-u21-u22/",
ArchiveDate = "2019-10-28",
Timestamp = 1474051313
},
{
Name = "Update: The Silver Grove 3.0",
Link = "Update 19#Update: The Silver Grove 3.0",
Aliases = { "The Silver Grove 3.0", "TSG 3.0" },
ShortName = "U18.17.3",
Date = "2016-09-21",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/701632-the-silver-grove-u3-ayatan/",
ArchiveLink = "https://web.archive.org/web/20201108095541/https://forums.warframe.com/topic/701632-the-silver-grove-u3-ayatan/",
ArchiveDate = "2020-11-08",
Timestamp = 1474496355,
Subtitle = "Ayatan"
},
{
Name = "Hotfix: The Silver Grove 3.1",
Link = "Update 19#Hotfix: The Silver Grove 3.1",
Aliases = { "The Silver Grove 3.1", "TSG 3.1" },
ShortName = "H18.17.3.1",
Date = "2016-09-21",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/701641-the-silver-grove-u31/",
ArchiveLink = "https://web.archive.org/web/20220108041855/https://forums.warframe.com/topic/701641-the-silver-grove-u31/",
ArchiveDate = "2022-01-08",
Timestamp = 1474499520
},
{
Name = "Hotfix: The Silver Grove 3.2",
Link = "Update 19#Hotfix: The Silver Grove 3.2",
Aliases = { "The Silver Grove 3.2", "TSG 3.2" },
ShortName = "H18.17.3.2",
Date = "2016-09-22",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/701993-the-silver-grove-u32/",
ArchiveLink = "https://web.archive.org/web/20191028153830/https://forums.warframe.com/topic/701993-the-silver-grove-u32/",
ArchiveDate = "2019-10-28",
Timestamp = 1474580521
},
{
Name = "Hotfix: The Silver Grove 3.3",
Link = "Update 19#Hotfix: The Silver Grove 3.3",
Aliases = { "The Silver Grove 3.3", "TSG 3.3" },
ShortName = "H18.17.3.3",
Date = "2016-09-26",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/703177-the-silver-grove-u33/",
ArchiveLink = "https://web.archive.org/web/20191028153850/https://forums.warframe.com/topic/703177-the-silver-grove-u33/",
ArchiveDate = "2019-10-28",
Timestamp = 1474927846
},
{
Name = "Update: The Silver Grove 4.0",
Link = "Update 19#Update: The Silver Grove 4.0",
Aliases = { "The Silver Grove 4.0", "TSG 4.0" },
ShortName = "U18.17.4",
Date = "2016-09-29",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/703921-the-silver-grove-u441/",
ArchiveLink = "https://web.archive.org/web/20191028153837/https://forums.warframe.com/topic/703921-the-silver-grove-u441/",
ArchiveDate = "2019-10-28",
Timestamp = 1475177488,
Subtitle = "Long Shadow Tactical Alert"
},
{
Name = "Hotfix: The Silver Grove 4.1",
Link = "Update 19#Hotfix: The Silver Grove 4.1",
Aliases = { "The Silver Grove 4.1", "TSG 4.1" },
ShortName = "H18.17.4.1",
Date = "2016-09-29",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/703921-the-silver-grove-u441/",
ArchiveLink = "https://web.archive.org/web/20191028153837/https://forums.warframe.com/topic/703921-the-silver-grove-u441/",
ArchiveDate = "2019-10-28",
Timestamp = 1475177488
},
{
Name = "Hotfix: The Silver Grove 4.2",
Link = "Update 19#Hotfix: The Silver Grove 4.2",
Aliases = { "The Silver Grove 4.2", "TSG 4.2" },
ShortName = "H18.17.4.2",
Date = "2016-09-30",
Parent = "19.2",
ParentName = "The Silver Grove",
ForumLink = "https://forums.warframe.com/topic/704257-the-silver-grove-u42/",
ArchiveLink = "https://web.archive.org/web/20201108221906/https://forums.warframe.com/topic/704257-the-silver-grove-u42/",
ArchiveDate = "2020-11-08",
Timestamp = 1475269392
},
{
Name = "Update: The Vacuum Within",
Link = "Update 19#Update: The Vacuum Within",
Aliases = { "The Vacuum Within", "TVW" },
ShortName = "U18.18",
Date = "2016-10-05",
Parent = "19.3",
ParentName = "The Vacuum Within",
ForumLink = "https://forums.warframe.com/topic/705566-the-vacuum-within%C2%A0/",
ArchiveLink = "https://web.archive.org/web/20201111234115/https://forums.warframe.com/topic/705566-the-vacuum-within%C2%A0/",
ArchiveDate = "2020-11-11",
Timestamp = 1475702248,
Subtitle = "The Vacuum Within + Tenno Reinforcements: Gazal Machete"
},
{
Name = "Hotfix: The Vacuum Within 1",
Link = "Update 19#Hotfix: The Vacuum Within 1",
Aliases = { "The Vacuum Within 1", "TVW 1" },
ShortName = "H18.18.1",
Date = "2016-10-05",
Parent = "19.3",
ParentName = "The Vacuum Within",
ForumLink = "https://forums.warframe.com/topic/705626-the-vacuum-within-hotfix-1/",
ArchiveLink = "https://web.archive.org/web/20161006172017/https://forums.warframe.com/topic/705626-the-vacuum-within-hotfix-1/",
ArchiveDate = "2016-10-06",
Timestamp = 1475713531
},
{
Name = "Hotfix: The Vacuum Within 2",
Link = "Update 19#Hotfix: The Vacuum Within 2",
Aliases = { "The Vacuum Within 2", "TVW 2" },
ShortName = "H18.18.2",
Date = "2016-10-06",
Parent = "19.3",
ParentName = "The Vacuum Within",
ForumLink = "https://forums.warframe.com/topic/705955-the-vacuum-within-hotfix-2/",
ArchiveLink = "https://web.archive.org/web/20210415230445/https://forums.warframe.com/topic/705955-the-vacuum-within-hotfix-2/",
ArchiveDate = "2021-04-15",
Timestamp = 1475787011
},
{
Name = "Hotfix: The Vacuum Within 3",
Link = "Update 19#Hotfix: The Vacuum Within 3",
Aliases = { "The Vacuum Within 3", "TVW 3" },
ShortName = "H18.18.3",
Date = "2016-10-13",
Parent = "19.3",
ParentName = "The Vacuum Within",
ForumLink = "https://forums.warframe.com/topic/708168-the-vacuum-within-hotfix-3/",
ArchiveLink = "https://web.archive.org/web/20201108135839/https://forums.warframe.com/topic/708168-the-vacuum-within-hotfix-3/",
ArchiveDate = "2020-11-08",
Timestamp = 1476382573
},
{
Name = "Update: The Index Preview",
Link = "Update 19#Update: The Index Preview",
Aliases = { "The Index Preview", "TIP" },
ShortName = "U18.19",
Date = "2016-10-20",
Parent = "19.4",
ParentName = "The Index Preview",
ForumLink = "https://forums.warframe.com/topic/709665-the-index-preview/",
ArchiveLink = "https://web.archive.org/web/20201108101148/https://forums.warframe.com/topic/709665-the-index-preview/",
ArchiveDate = "2020-11-08",
Timestamp = 1477006098,
Subtitle = "The Index Preview & TennoGen Round 5"
},
{
Name = "Hotfix: The Index Preview 1",
Link = "Update 19#Hotfix: The Index Preview 1",
Aliases = { "The Index Preview 1", "TIP 1" },
ShortName = "H18.19.1",
Date = "2016-10-20",
Parent = "19.4",
ParentName = "The Index Preview",
ForumLink = "https://forums.warframe.com/topic/709730-the-index-preview-hotfix-1/",
ArchiveLink = "https://web.archive.org/web/20191028153713/https://forums.warframe.com/topic/709730-the-index-preview-hotfix-1/",
ArchiveDate = "2019-10-28",
Timestamp = 1477016245
},
{
Name = "Hotfix: The Index Preview 2",
Link = "Update 19#Hotfix: The Index Preview 2",
Aliases = { "The Index Preview 2", "TIP 2" },
ShortName = "H18.19.2",
Date = "2016-10-21",
Parent = "19.4",
ParentName = "The Index Preview",
ForumLink = "https://forums.warframe.com/topic/709888-the-index-preview-hotfix-2/",
ArchiveLink = "https://web.archive.org/web/20191028153709/https://forums.warframe.com/topic/709888-the-index-preview-hotfix-2/",
ArchiveDate = "2019-10-28",
Timestamp = 1477064980
},
{
Name = "Hotfix: The Index Preview 3",
Link = "Update 19#Hotfix: The Index Preview 3",
Aliases = { "The Index Preview 3", "TIP 3" },
ShortName = "H18.19.3",
Date = "2016-10-21",
Parent = "19.4",
ParentName = "The Index Preview",
ForumLink = "https://forums.warframe.com/topic/709998-the-index-preview-hotfix-3/",
ArchiveLink = "https://web.archive.org/web/20200808125222/https://forums.warframe.com/topic/709998-the-index-preview-hotfix-3/",
ArchiveDate = "2020-08-08",
Timestamp = 1477085585
},
{
Name = "Hotfix: The Index Preview 4",
Link = "Update 19#Hotfix: The Index Preview 4",
Aliases = { "The Index Preview 4", "TIP 4" },
ShortName = "H18.19.4",
Date = "2016-10-25",
Parent = "19.4",
ParentName = "The Index Preview",
ForumLink = "https://forums.warframe.com/topic/710966-the-index-preview-hotfix-4/",
ArchiveLink = "https://web.archive.org/web/20201108091658/https://forums.warframe.com/topic/710966-the-index-preview-hotfix-4/",
ArchiveDate = "2020-11-08",
Timestamp = 1477432286
},
{
Name = "Update: Recurring Nightmares",
Link = "Update 19#Update: Recurring Nightmares",
Aliases = { "Recurring Nightmares", "RN" },
ShortName = "U18.20",
Date = "2016-10-27",
Parent = "19.5",
ParentName = "Recurring Nightmares",
ForumLink = "https://forums.warframe.com/topic/711418-recurring-nightmares/",
ArchiveLink = "https://web.archive.org/web/20211123111000/https://forums.warframe.com/topic/711418-recurring-nightmares/",
ArchiveDate = "2021-11-23",
Timestamp = 1477595028,
Subtitle = "Recurring Nightmares"
},
{
Name = "Hotfix: Recurring Nightmares 1",
Link = "Update 19#Hotfix: Recurring Nightmares 1",
Aliases = { "Recurring Nightmares 1", "RN 1" },
ShortName = "H18.20.1",
Date = "2016-10-27",
Parent = "19.5",
ParentName = "Recurring Nightmares",
ForumLink = "https://forums.warframe.com/topic/711455-recurring-nightmares-hotfix-111/",
ArchiveLink = "https://web.archive.org/web/20191028153720/https://forums.warframe.com/topic/711455-recurring-nightmares-hotfix-111/",
ArchiveDate = "2019-10-28",
Timestamp = 1477602467
},
{
Name = "Hotfix: Recurring Nightmares 1.1",
Link = "Update 19#Hotfix: Recurring Nightmares 1.1",
Aliases = { "Recurring Nightmares 1.1", "RN 1.1" },
ShortName = "H18.20.1.1",
Date = "2016-10-27",
Parent = "19.5",
ParentName = "Recurring Nightmares",
ForumLink = "https://forums.warframe.com/topic/711455-recurring-nightmares-hotfix-111/",
ArchiveLink = "https://web.archive.org/web/20191028153720/https://forums.warframe.com/topic/711455-recurring-nightmares-hotfix-111/",
ArchiveDate = "2019-10-28",
Timestamp = 1477602467
},
{
Name = "Hotfix: Recurring Nightmares 2",
Link = "Update 19#Hotfix: Recurring Nightmares 2",
Aliases = { "Recurring Nightmares 2", "RN 2" },
ShortName = "H18.20.2",
Date = "2016-10-28",
Parent = "19.5",
ParentName = "Recurring Nightmares",
ForumLink = "https://forums.warframe.com/topic/711769-recurring-nightmares-hotfix-2/",
ArchiveLink = "https://web.archive.org/web/20191028153553/https://forums.warframe.com/topic/711769-recurring-nightmares-hotfix-2/",
ArchiveDate = "2019-10-28",
Timestamp = 1477682649
},
{
Name = "Update: Recurring Dreams",
Link = "Update 19#Update: Recurring Dreams",
Aliases = { "Recurring Dreams", "RD" },
ShortName = "U18.21",
Date = "2016-11-03",
Parent = "19.6",
ParentName = "Recurring Dreams",
ForumLink = "https://forums.warframe.com/topic/713313-recurring-dreams-hotfix-1/",
ArchiveLink = "https://web.archive.org/web/20201108103259/https://forums.warframe.com/topic/713313-recurring-dreams-hotfix-1/",
ArchiveDate = "2020-11-08",
Timestamp = 1478209235,
Subtitle = "Recurring Dreams"
},
{
Name = "Hotfix: Recurring Dreams 1",
Link = "Update 19#Hotfix: Recurring Dreams 1",
Aliases = { "Recurring Dreams 1", "RD 1" },
ShortName = "H18.21.1",
Date = "2016-11-03",
Parent = "19.6",
ParentName = "Recurring Dreams",
ForumLink = "https://forums.warframe.com/topic/713313-recurring-dreams-hotfix-1/",
ArchiveLink = "https://web.archive.org/web/20201108103259/https://forums.warframe.com/topic/713313-recurring-dreams-hotfix-1/",
ArchiveDate = "2020-11-08",
Timestamp = 1478226316
},
{
Name = "Hotfix: Recurring Dreams 2",
Link = "Update 19#Hotfix: Recurring Dreams 2",
Aliases = { "Recurring Dreams 2", "RD 2" },
ShortName = "H18.21.2",
Date = "2016-11-04",
Parent = "19.6",
ParentName = "Recurring Dreams",
ForumLink = "https://forums.warframe.com/topic/713708-recurring-dreams-hotfix-2/",
ArchiveLink = "https://web.archive.org/web/20191028153601/https://forums.warframe.com/topic/713708-recurring-dreams-hotfix-2/",
ArchiveDate = "2019-10-28",
Timestamp = 1478290006
},
{
Name = "Hotfix: Recurring Dreams 3",
Link = "Update 19#Hotfix: Recurring Dreams 3",
Aliases = { "Recurring Dreams 3", "RD 3" },
ShortName = "H18.21.3",
Date = "2016-11-07",
Parent = "19.6",
ParentName = "Recurring Dreams",
ForumLink = "https://forums.warframe.com/topic/714548-recurring-dreams-hotfix-3/",
ArchiveLink = "https://web.archive.org/web/20201108111603/https://forums.warframe.com/topic/714548-recurring-dreams-hotfix-3/",
ArchiveDate = "2020-11-08",
Timestamp = 1478546655
},
{
Name = "Update 19.0",
Link = "Update 19#Update 19.0",
Aliases = { "Update 19", "19", "19.0", "The War Within" },
ShortName = "U19.0",
Date = "2016-11-11",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/715768-update-19-the-war-within/",
ArchiveLink = "https://web.archive.org/web/20211129045809/https://forums.warframe.com/topic/715768-update-19-the-war-within/",
ArchiveDate = "2021-11-29",
Timestamp = 1478923348,
Subtitle = "The War Within"
},
{
Name = "Hotfix 19.0.1",
Link = "Update 19#Hotfix 19.0.1",
Aliases = { "19.0.1" },
ShortName = "H19.0.1",
Date = "2016-11-11",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/715913-the-war-within-hotfix-1901/",
ArchiveLink = "https://web.archive.org/web/20200809112412/https://forums.warframe.com/topic/715913-the-war-within-hotfix-1901/",
ArchiveDate = "2020-08-09",
Timestamp = 1478934575
},
{
Name = "Hotfix 19.0.2",
Link = "Update 19#Hotfix 19.0.2",
Aliases = { "19.0.2" },
ShortName = "H19.0.2",
Date = "2016-11-12",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/717209-the-war-within-hotfix-1902/",
ArchiveLink = "https://web.archive.org/web/20191028153439/https://forums.warframe.com/topic/717209-the-war-within-hotfix-1902/",
ArchiveDate = "2019-10-28",
Timestamp = 1479006960
},
{
Name = "Hotfix 19.0.3",
Link = "Update 19#Hotfix 19.0.3",
Aliases = { "19.0.3" },
ShortName = "H19.0.3",
Date = "2016-11-14",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/718965-hotfix-1903/",
ArchiveLink = "https://web.archive.org/web/20201111184429/https://forums.warframe.com/topic/718965-hotfix-1903/",
ArchiveDate = "2020-11-11",
Timestamp = 1479166878
},
{
Name = "Hotfix 19.0.4",
Link = "Update 19#Hotfix 19.0.4",
Aliases = { "19.0.4" },
ShortName = "H19.0.4",
Date = "2016-11-15",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/719739-hotfix-1904/",
ArchiveLink = "https://web.archive.org/web/20191028153445/https://forums.warframe.com/topic/719739-hotfix-1904/",
ArchiveDate = "2019-10-28",
Timestamp = 1479252180
},
{
Name = "Hotfix 19.0.5",
Link = "Update 19#Hotfix 19.0.5",
Aliases = { "19.0.5" },
ShortName = "H19.0.5",
Date = "2016-11-18",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/721283-hotfix-1905/",
ArchiveLink = "https://web.archive.org/web/20191028153442/https://forums.warframe.com/topic/721283-hotfix-1905/",
ArchiveDate = "2019-10-28",
Timestamp = 1479485369
},
{
Name = "Hotfix 19.0.6",
Link = "Update 19#Hotfix 19.0.6",
Aliases = { "19.0.6" },
ShortName = "H19.0.6",
Date = "2016-11-18",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/721503-hotfix-190619061/",
ArchiveLink = "https://web.archive.org/web/20191028153442/https://forums.warframe.com/topic/721503-hotfix-190619061/",
ArchiveDate = "2019-10-28",
Timestamp = 1479511010
},
{
Name = "Hotfix 19.0.6.1",
Link = "Update 19#Hotfix 19.0.6.1",
Aliases = { "19.0.6.1" },
ShortName = "H19.0.6.1",
Date = "2016-11-18",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/721503-hotfix-190619061/",
ArchiveLink = "https://web.archive.org/web/20191028153442/https://forums.warframe.com/topic/721503-hotfix-190619061/",
ArchiveDate = "2019-10-28",
Timestamp = 1479511010
},
{
Name = "Hotfix 19.0.7",
Link = "Update 19#Hotfix 19.0.7",
Aliases = { "19.0.7" },
ShortName = "H19.0.7",
Date = "2016-11-22",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/723544-the-war-within-1907-valkyr-prime/",
ArchiveLink = "https://web.archive.org/web/20201108111812/https://forums.warframe.com/topic/723544-the-war-within-1907-valkyr-prime/",
ArchiveDate = "2020-11-08",
Timestamp = 1479841015,
Subtitle = "Valkyr Prime"
},
{
Name = "Update 19.1",
Link = "Update 19#Update 19.1",
Aliases = { "19.1.0", "19.1" },
ShortName = "U19.1",
Date = "2016-11-25",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/725159-the-war-within-1910-ash-revisited/",
ArchiveLink = "https://web.archive.org/web/20201111224658/https://forums.warframe.com/topic/725159-the-war-within-1910-ash-revisited/",
ArchiveDate = "2020-11-11",
Timestamp = 1480103488,
Subtitle = "Ash Revisited"
},
{
Name = "Hotfix 19.1.1",
Link = "Update 19#Hotfix 19.1.1",
Aliases = { "19.1.1" },
ShortName = "H19.1.1",
Date = "2016-11-25",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/725272-the-war-within-hotfix-191119111/",
ArchiveLink = "https://web.archive.org/web/20191028153340/https://forums.warframe.com/topic/725272-the-war-within-hotfix-191119111/",
ArchiveDate = "2019-10-28",
Timestamp = 1480112029
},
{
Name = "Hotfix 19.1.1.1",
Link = "Update 19#Hotfix 19.1.1.1",
Aliases = { "19.1.1.1" },
ShortName = "H19.1.1.1",
Date = "2016-11-25",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/725272-the-war-within-hotfix-191119111/",
ArchiveLink = "https://web.archive.org/web/20191028153340/https://forums.warframe.com/topic/725272-the-war-within-hotfix-191119111/",
ArchiveDate = "2019-10-28",
Timestamp = 1480112029
},
{
Name = "Update 19.2",
Link = "Update 19#Update 19.2",
Aliases = { "19.2.0", "19.2" },
ShortName = "U19.2",
Date = "2016-12-01",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/728401-the-war-within-update-1920/",
ArchiveLink = "https://web.archive.org/web/20210721051303/https://forums.warframe.com/topic/728401-the-war-within-update-1920/",
ArchiveDate = "2021-07-21",
Timestamp = 1480627328,
Subtitle = "New Melee and Augment Mods"
},
{
Name = "Hotfix 19.2.1",
Link = "Update 19#Hotfix 19.2.1",
Aliases = { "19.2.1" },
ShortName = "H19.2.1",
Date = "2016-12-03",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/728978-the-war-within-hotfix-1921/",
ArchiveLink = "https://web.archive.org/web/20201108134304/https://forums.warframe.com/topic/728978-the-war-within-hotfix-1921/",
ArchiveDate = "2020-11-08",
Timestamp = 1480719832
},
{
Name = "Update 19.3",
Link = "Update 19#Update 19.3",
Aliases = { "19.3.0", "19.3" },
ShortName = "U19.3",
Date = "2016-12-06",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/730685-the-war-within-update-1930/",
ArchiveLink = "https://web.archive.org/web/20211106175227/https://forums.warframe.com/topic/730685-the-war-within-update-1930/",
ArchiveDate = "2021-11-06",
Timestamp = 1481051017,
Subtitle = "Ember & Frost Prime Vault"
},
{
Name = "Hotfix 19.3.1",
Link = "Update 19#Hotfix 19.3.1",
Aliases = { "19.3.1" },
ShortName = "H19.3.1",
Date = "2016-12-08",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/731292-the-war-within-hotfix-1931/",
ArchiveLink = "https://web.archive.org/web/20191028153341/https://forums.warframe.com/topic/731292-the-war-within-hotfix-1931/",
ArchiveDate = "2019-10-28",
Timestamp = 1481155104
},
{
Name = "Hotfix 19.3.2",
Link = "Update 19#Hotfix 19.3.2",
Aliases = { "19.3.2" },
ShortName = "H19.3.2",
Date = "2016-12-14",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/734004-the-war-within-hotfix-1932-19321/",
ArchiveLink = "https://web.archive.org/web/20191028153042/https://forums.warframe.com/topic/734004-the-war-within-hotfix-1932-19321/",
ArchiveDate = "2019-10-28",
Timestamp = 1481656657
},
{
Name = "Hotfix 19.3.2.1",
Link = "Update 19#Hotfix 19.3.2.1",
Aliases = { "19.3.2.1" },
ShortName = "H19.3.2.1",
Date = "2016-12-14",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/734004-the-war-within-hotfix-1932-19321/",
ArchiveLink = "https://web.archive.org/web/20191028153042/https://forums.warframe.com/topic/734004-the-war-within-hotfix-1932-19321/",
ArchiveDate = "2019-10-28",
Timestamp = 1481656657
},
{
Name = "Update 19.4",
Link = "Update 19#Update 19.4",
Aliases = { "19.4.0", "19.4" },
ShortName = "U19.4",
Date = "2016-12-16",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/735406-the-war-within-update-194-1941/",
ArchiveLink = "https://web.archive.org/web/20211121005943/https://forums.warframe.com/topic/735406-the-war-within-update-194-1941/",
ArchiveDate = "2021-11-21",
Timestamp = 1481910613,
Subtitle = "Tenno Reinforcements: Javlok + TennoGen Round 6"
},
{
Name = "Hotfix 19.4.1",
Link = "Update 19#Hotfix 19.4.1",
Aliases = { "19.4.1" },
ShortName = "H19.4.1",
Date = "2016-12-16",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/735406-the-war-within-update-194-1941/",
ArchiveLink = "https://web.archive.org/web/20211121005943/https://forums.warframe.com/topic/735406-the-war-within-update-194-1941/",
ArchiveDate = "2021-11-21",
Timestamp = 1481910613
},
{
Name = "Update 19.4.2",
Link = "Update 19#Update 19.4.2",
Aliases = { "19.4.2" },
ShortName = "U19.4.2",
Date = "2016-12-20",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/737306-the-war-within-update-1942-19421/",
ArchiveLink = "https://web.archive.org/web/20211125042920/https://forums.warframe.com/topic/737306-the-war-within-update-1942-19421/",
ArchiveDate = "2021-11-25",
Timestamp = 1482277076
},
{
Name = "Hotfix 19.4.2.1",
Link = "Update 19#Hotfix 19.4.2.1",
Aliases = { "19.4.2.1" },
ShortName = "H19.4.2.1",
Date = "2016-12-20",
Parent = "19.7",
ParentName = "The War Within",
ForumLink = "https://forums.warframe.com/topic/737306-the-war-within-update-1942-19421/",
ArchiveLink = "https://web.archive.org/web/20211125042920/https://forums.warframe.com/topic/737306-the-war-within-update-1942-19421/",
ArchiveDate = "2021-11-25",
Timestamp = 1482277076
},
{
Name = "Update 19.5",
Link = "Update 19#Update 19.5",
Aliases = { "19.5.0", "19.5" },
ShortName = "U19.5",
Date = "2016-12-22",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/738152-the-glast-gambit-update-195/",
ArchiveLink = "https://web.archive.org/web/20201112030510/https://forums.warframe.com/topic/738152-the-glast-gambit-update-195/",
ArchiveDate = "2020-11-12",
Timestamp = 1482415989,
Subtitle = "The Glast Gambit"
},
{
Name = "Hotfix 19.5.1",
Link = "Update 19#Hotfix 19.5.1",
Aliases = { "19.5.1" },
ShortName = "H19.5.1",
Date = "2016-12-22",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/738388-the-glast-gambit-hotfix-1951-1952/",
ArchiveLink = "https://web.archive.org/web/20210226165855/https://forums.warframe.com/topic/738388-the-glast-gambit-hotfix-1951-1952/",
ArchiveDate = "2021-02-26",
Timestamp = 1482436930
},
{
Name = "Hotfix 19.5.2",
Link = "Update 19#Hotfix 19.5.2",
Aliases = { "19.5.2" },
ShortName = "H19.5.2",
Date = "2016-12-23",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/738388-the-glast-gambit-hotfix-1951-1952/",
ArchiveLink = "https://web.archive.org/web/20210226165855/https://forums.warframe.com/topic/738388-the-glast-gambit-hotfix-1951-1952/",
ArchiveDate = "2021-02-26",
Timestamp = 1482436930
},
{
Name = "Hotfix 19.5.3",
Link = "Update 19#Hotfix 19.5.3",
Aliases = { "19.5.3" },
ShortName = "H19.5.3",
Date = "2016-12-23",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/739021-the-glast-gambit-hotfix-1953/",
ArchiveLink = "https://web.archive.org/web/20191028153007/https://forums.warframe.com/topic/739021-the-glast-gambit-hotfix-1953/",
ArchiveDate = "2019-10-28",
Timestamp = 1482517236
},
{
Name = "Hotfix 19.5.4",
Link = "Update 19#Hotfix 19.5.4",
Aliases = { "19.5.4" },
ShortName = "H19.5.4",
Date = "2017-01-03",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/744765-the-glast-gambit-hotfix-1954/",
ArchiveLink = "https://web.archive.org/web/20201111204522/https://forums.warframe.com/topic/744765-the-glast-gambit-hotfix-1954/",
ArchiveDate = "2020-11-11",
Timestamp = 1483469882
},
{
Name = "Hotfix 19.5.5",
Link = "Update 19#Hotfix 19.5.5",
Aliases = { "19.5.5" },
ShortName = "H19.5.5",
Date = "2017-01-03",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/744898-the-glast-gambit-hotfix-1955/",
ArchiveLink = "https://web.archive.org/web/20191028152929/https://forums.warframe.com/topic/744898-the-glast-gambit-hotfix-1955/",
ArchiveDate = "2019-10-28",
Timestamp = 1483486251
},
{
Name = "Hotfix 19.5.6",
Link = "Update 19#Hotfix 19.5.6",
Aliases = { "19.5.6" },
ShortName = "H19.5.6",
Date = "2017-01-04",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/745386-the-glast-gambit-hotfix-195619561/",
ArchiveLink = "https://web.archive.org/web/20170324170031/https://forums.warframe.com/topic/745386-the-glast-gambit-hotfix-195619561/",
ArchiveDate = "2017-03-24",
Timestamp = 1483567742
},
{
Name = "Hotfix 19.5.6.1",
Link = "Update 19#Hotfix 19.5.6.1",
Aliases = { "19.5.6.1" },
ShortName = "H19.5.6.1",
Date = "2017-01-05",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/745386-the-glast-gambit-hotfix-195619561/",
ArchiveLink = "https://web.archive.org/web/20170324170031/https://forums.warframe.com/topic/745386-the-glast-gambit-hotfix-195619561/",
ArchiveDate = "2017-03-24",
Timestamp = 1483575699
},
{
Name = "Hotfix 19.5.7",
Link = "Update 19#Hotfix 19.5.7",
Aliases = { "19.5.7" },
ShortName = "H19.5.7",
Date = "2017-01-06",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/746343-the-glast-gambit-hotfix-1957/",
ArchiveLink = "https://web.archive.org/web/20191028152936/https://forums.warframe.com/topic/746343-the-glast-gambit-hotfix-1957/",
ArchiveDate = "2019-10-28",
Timestamp = 1483737008
},
{
Name = "Hotfix 19.5.7.1",
Link = "Update 19#Hotfix 19.5.7.1",
Aliases = { "19.5.7.1" },
ShortName = "H19.5.7.1",
Date = "2017-01-06",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/746343-the-glast-gambit-hotfix-1957/",
ArchiveLink = "https://web.archive.org/web/20191028152936/https://forums.warframe.com/topic/746343-the-glast-gambit-hotfix-1957/",
ArchiveDate = "2019-10-28",
Timestamp = 1483747042
},
{
Name = "Update 19.6",
Link = "Update 19#Update 19.6",
Aliases = { "19.6.0", "19.6" },
ShortName = "U19.6",
Date = "2017-01-11",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/748631-the-glast-gambit-update-1960-19601/",
ArchiveLink = "https://web.archive.org/web/20170324170021/https://forums.warframe.com/topic/748631-the-glast-gambit-update-1960-19601/",
ArchiveDate = "2017-03-24",
Timestamp = 1484178447,
Subtitle = "Frost Deluxe Harka Skin + Helminth Cyst Cure"
},
{
Name = "Hotfix 19.6.0.1",
Link = "Update 19#Hotfix 19.6.0.1",
Aliases = { "19.6.0.1" },
ShortName = "H19.6.0.1",
Date = "2017-01-11",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/748631-the-glast-gambit-update-1960-19601/",
ArchiveLink = "https://web.archive.org/web/20170324170021/https://forums.warframe.com/topic/748631-the-glast-gambit-update-1960-19601/",
ArchiveDate = "2017-03-24",
Timestamp = 1484178447
},
{
Name = "Hotfix 19.6.1",
Link = "Update 19#Hotfix 19.6.1",
Aliases = { "19.6.1" },
ShortName = "H19.6.1",
Date = "2017-01-13",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/749385-the-glast-gambit-hotfix-1961/",
ArchiveLink = "https://web.archive.org/web/20201112013542/https://forums.warframe.com/topic/749385-the-glast-gambit-hotfix-1961/",
ArchiveDate = "2020-11-12",
Timestamp = 1484325669
},
{
Name = "Hotfix 19.6.2",
Link = "Update 19#Hotfix 19.6.2",
Aliases = { "19.6.2" },
ShortName = "H19.6.2",
Date = "2017-01-13",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/749509-the-glast-gambit-hotfix-1962/",
ArchiveLink = "https://web.archive.org/web/20191028152851/https://forums.warframe.com/topic/749509-the-glast-gambit-hotfix-1962/",
ArchiveDate = "2019-10-28",
Timestamp = 1484341762
},
{
Name = "Hotfix 19.6.3",
Link = "Update 19#Hotfix 19.6.3",
Aliases = { "19.6.3" },
ShortName = "H19.6.3",
Date = "2017-01-17",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/751177-the-glast-gambit-hotfix-1963/",
ArchiveLink = "https://web.archive.org/web/20201125141910/https://forums.warframe.com/topic/751177-the-glast-gambit-hotfix-1963/",
ArchiveDate = "2020-11-25",
Timestamp = 1484681407
},
{
Name = "Update 19.7",
Link = "Update 19#Update 19.7",
Aliases = { "19.7.0", "19.7" },
ShortName = "U19.7",
Date = "2017-01-18",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/751635-the-glast-gambit-update-1970/",
ArchiveLink = "https://web.archive.org/web/20211106123820/https://forums.warframe.com/topic/751635-the-glast-gambit-update-1970/",
ArchiveDate = "2021-11-06",
Timestamp = 1484778589,
Subtitle = "Tenno Reinforcements: Ohma"
},
{
Name = "Hotfix 19.7.1",
Link = "Update 19#Hotfix 19.7.1",
Aliases = { "19.7.1" },
ShortName = "H19.7.1",
Date = "2017-01-19",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/751967-the-glast-gambit-hotfix-1971/",
ArchiveLink = "https://web.archive.org/web/20191028152844/https://forums.warframe.com/topic/751967-the-glast-gambit-hotfix-1971/",
ArchiveDate = "2019-10-28",
Timestamp = 1484846593
},
{
Name = "Hotfix 19.7.2",
Link = "Update 19#Hotfix 19.7.2",
Aliases = { "19.7.2" },
ShortName = "H19.7.2",
Date = "2017-01-23",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/753669-the-glast-gambit-hotfix-1972/",
ArchiveLink = "https://web.archive.org/web/20191028152842/https://forums.warframe.com/topic/753669-the-glast-gambit-hotfix-1972/",
ArchiveDate = "2019-10-28",
Timestamp = 1485182186
},
{
Name = "Update 19.8",
Link = "Update 19#Update 19.8",
Aliases = { "19.8.0", "19.8" },
ShortName = "U19.8",
Date = "2017-01-25",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/754548-the-glast-gambit-update-1980/",
ArchiveLink = "https://web.archive.org/web/20191028152846/https://forums.warframe.com/topic/754548-the-glast-gambit-update-1980/",
ArchiveDate = "2019-10-28",
Timestamp = 1485372285
},
{
Name = "Hotfix 19.8.1",
Link = "Update 19#Hotfix 19.8.1",
Aliases = { "19.8.1" },
ShortName = "H19.8.1",
Date = "2017-01-27",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/755337-the-glast-gambit-hotfix-1981/",
ArchiveLink = "https://web.archive.org/web/20191028152805/https://forums.warframe.com/topic/755337-the-glast-gambit-hotfix-1981/",
ArchiveDate = "2019-10-28",
Timestamp = 1485536761
},
{
Name = "Update 19.9",
Link = "Update 19#Update 19.9",
Aliases = { "19.9.0", "19.9" },
ShortName = "U19.9",
Date = "2017-02-01",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/757465-the-glast-gambit-update-1990/",
ArchiveLink = "https://web.archive.org/web/20211122132027/https://forums.warframe.com/topic/757465-the-glast-gambit-update-1990/",
ArchiveDate = "2021-11-22",
Timestamp = 1485983060,
Subtitle = "New Conclave Variant Mode: Quick Steel"
},
{
Name = "Hotfix 19.9.1",
Link = "Update 19#Hotfix 19.9.1",
Aliases = { "19.9.1" },
ShortName = "H19.9.1",
Date = "2017-02-02",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/757913-the-glast-gambit-hotfix-1991/",
ArchiveLink = "https://web.archive.org/web/20191028152802/https://forums.warframe.com/topic/757913-the-glast-gambit-hotfix-1991/",
ArchiveDate = "2019-10-28",
Timestamp = 1486074750
},
{
Name = "Hotfix 19.9.2",
Link = "Update 19#Hotfix 19.9.2",
Aliases = { "19.9.2" },
ShortName = "H19.9.2",
Date = "2017-02-07",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/759911-the-glast-gambit-hotfix-1992-phase-one-db-upgrades/",
ArchiveLink = "https://web.archive.org/web/20170324165915/https://forums.warframe.com/topic/759911-the-glast-gambit-hotfix-1992-phase-one-db-upgrades/",
ArchiveDate = "2017-03-24",
Timestamp = 1486475934,
Subtitle = "Phase One: DB Upgrades"
},
{
Name = "Hotfix 19.9.3",
Link = "Update 19#Hotfix 19.9.3",
Aliases = { "19.9.3" },
ShortName = "H19.9.3",
Date = "2017-02-07",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/760078-the-glast-gambit-hotfix-1993/",
ArchiveLink = "https://web.archive.org/web/20170324165911/https://forums.warframe.com/topic/760078-the-glast-gambit-hotfix-1993/",
ArchiveDate = "2017-03-24",
Timestamp = 1486504305
},
{
Name = "Update 19.10",
Link = "Update 19#Update 19.10",
Aliases = { "19.10.0", "19.10" },
ShortName = "U19.10",
Date = "2017-02-09",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/760813-the-glast-gambit-update-19100/",
ArchiveLink = "https://web.archive.org/web/20211122132024/https://forums.warframe.com/topic/760813-the-glast-gambit-update-19100/",
ArchiveDate = "2021-11-22",
Timestamp = 1486672034,
Subtitle = "Tenno Reinforcements: Taxon"
},
{
Name = "Hotfix 19.10.1",
Link = "Update 19#Hotfix 19.10.1",
Aliases = { "19.10.1" },
ShortName = "H19.10.1",
Date = "2017-02-14",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/762596-the-glast-gambit-hotfix-19101191011/",
ArchiveLink = "https://web.archive.org/web/20210515214338/https://forums.warframe.com/topic/762596-the-glast-gambit-hotfix-19101191011/",
ArchiveDate = "2021-05-15",
Timestamp = 1487082017
},
{
Name = "Hotfix 19.10.1.1",
Link = "Update 19#Hotfix 19.10.1.1",
Aliases = { "19.10.1.1" },
ShortName = "H19.10.1.1",
Date = "2017-02-14",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/762596-the-glast-gambit-hotfix-19101191011/",
ArchiveLink = "https://web.archive.org/web/20210515214338/https://forums.warframe.com/topic/762596-the-glast-gambit-hotfix-19101191011/",
ArchiveDate = "2021-05-15",
Timestamp = 1487082017
},
{
Name = "Update 19.11",
Link = "Update 19#Update 19.11",
Aliases = { "19.11.0", "19.11" },
ShortName = "U19.11",
Date = "2017-02-15",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/763107-the-glast-gambit-update-19110191101/",
ArchiveLink = "https://web.archive.org/web/20211107002344/https://forums.warframe.com/topic/763107-the-glast-gambit-update-19110191101/",
ArchiveDate = "2021-11-07",
Timestamp = 1487190798,
Subtitle = "TennoGen Round 7"
},
{
Name = "Hotfix 19.11.0.1",
Link = "Update 19#Hotfix 19.11.0.1",
Aliases = { "19.11.0.1" },
ShortName = "H19.11.0.1",
Date = "2017-02-15",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/763107-the-glast-gambit-update-19110191101/",
ArchiveLink = "https://web.archive.org/web/20211107002344/https://forums.warframe.com/topic/763107-the-glast-gambit-update-19110191101/",
ArchiveDate = "2021-11-07",
Timestamp = 1487190798
},
{
Name = "Hotfix 19.11.1",
Link = "Update 19#Hotfix 19.11.1",
Aliases = { "19.11.1" },
ShortName = "H19.11.1",
Date = "2017-02-16",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/763619-the-glast-gambit-hotfix-19111/",
ArchiveLink = "https://web.archive.org/web/20220223200917/https://forums.warframe.com/topic/763619-the-glast-gambit-hotfix-19111/",
ArchiveDate = "2022-02-23",
Timestamp = 1487285613
},
{
Name = "Hotfix 19.11.2",
Link = "Update 19#Hotfix 19.11.2",
Aliases = { "19.11.2" },
ShortName = "H19.11.2",
Date = "2017-02-17",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/763931-the-glast-gambit-hotfix-19112/",
ArchiveLink = "https://web.archive.org/web/20201228201805/https://forums.warframe.com/topic/763931-the-glast-gambit-hotfix-19112/",
ArchiveDate = "2020-12-28",
Timestamp = 1487364041
},
{
Name = "Hotfix 19.11.3",
Link = "Update 19#Hotfix 19.11.3",
Aliases = { "19.11.3" },
ShortName = "H19.11.3",
Date = "2017-02-17",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/763984-the-glast-gambit-hotfix-19113/",
ArchiveLink = "https://web.archive.org/web/20200806093323/https://forums.warframe.com/topic/763984-the-glast-gambit-hotfix-19113/",
ArchiveDate = "2020-08-06",
Timestamp = 1487371035
},
{
Name = "Hotfix 19.11.4",
Link = "Update 19#Hotfix 19.11.4",
Aliases = { "19.11.4" },
ShortName = "H19.11.4",
Date = "2017-02-22",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/765827-the-glast-gambit-hotfix-19114/",
ArchiveLink = "https://web.archive.org/web/20170324165827/https://forums.warframe.com/topic/765827-the-glast-gambit-hotfix-19114/",
ArchiveDate = "2017-03-24",
Timestamp = 1487778279
},
{
Name = "Hotfix 19.11.5",
Link = "Update 19#Hotfix 19.11.5",
Aliases = { "19.11.5" },
ShortName = "H19.11.5",
Date = "2017-02-28",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/767736-banshee-prime-hotfix-19115-19116/",
ArchiveLink = "https://web.archive.org/web/20170324165819/https://forums.warframe.com/topic/767736-banshee-prime-hotfix-19115-19116/",
ArchiveDate = "2017-03-24",
Timestamp = 1488321889
},
{
Name = "Hotfix 19.11.6",
Link = "Update 19#Hotfix 19.11.6",
Aliases = { "19.11.6" },
ShortName = "H19.11.6",
Date = "2017-02-28",
Parent = "19.8",
ParentName = "The Glast Gambit",
ForumLink = "https://forums.warframe.com/topic/767736-banshee-prime-hotfix-19115-19116/",
ArchiveLink = "https://web.archive.org/web/20170324165819/https://forums.warframe.com/topic/767736-banshee-prime-hotfix-19115-19116/",
ArchiveDate = "2017-03-24",
Timestamp = 1488321889
},
{
Name = "Update 19.12",
Link = "Update 19#Update 19.12",
Aliases = { "19.12.0", "19.12" },
ShortName = "U19.12",
Date = "2017-03-02",
Parent = "19.9",
ParentName = "The Pacifism Defect",
ForumLink = "https://forums.warframe.com/topic/768600-the-pacifism-defect-update-19120/",
ArchiveLink = "https://web.archive.org/web/20211107002337/https://forums.warframe.com/topic/768600-the-pacifism-defect-update-19120/",
ArchiveDate = "2021-11-07",
Timestamp = 1488493236,
Subtitle = "The Pacifism Defect"
},
{
Name = "Hotfix 19.12.1",
Link = "Update 19#Hotfix 19.12.1",
Aliases = { "19.12.1" },
ShortName = "H19.12.1",
Date = "2017-03-03",
Parent = "19.9",
ParentName = "The Pacifism Defect",
ForumLink = "https://forums.warframe.com/topic/768981-the-pacifism-defect-hotfix-19121191211/",
ArchiveLink = "https://web.archive.org/web/20170324165809/https://forums.warframe.com/topic/768981-the-pacifism-defect-hotfix-19121191211/",
ArchiveDate = "2017-03-24",
Timestamp = 1488575364
},
{
Name = "Hotfix 19.12.1.1",
Link = "Update 19#Hotfix 19.12.1.1",
Aliases = { "19.12.1.1" },
ShortName = "H19.12.1.1",
Date = "2017-03-03",
Parent = "19.9",
ParentName = "The Pacifism Defect",
ForumLink = "https://forums.warframe.com/topic/768981-the-pacifism-defect-hotfix-19121191211/",
ArchiveLink = "https://web.archive.org/web/20170324165809/https://forums.warframe.com/topic/768981-the-pacifism-defect-hotfix-19121191211/",
ArchiveDate = "2017-03-24",
Timestamp = 1488575364
},
{
Name = "Hotfix 19.12.2",
Link = "Update 19#Hotfix 19.12.2",
Aliases = { "19.12.2" },
ShortName = "H19.12.2",
Date = "2017-03-06",
Parent = "19.9",
ParentName = "The Pacifism Defect",
ForumLink = "https://forums.warframe.com/topic/770075-the-pacifism-defect-hotfix-19122/",
ArchiveLink = "https://web.archive.org/web/20200806101525/https://forums.warframe.com/topic/770075-the-pacifism-defect-hotfix-19122/",
ArchiveDate = "2020-08-06",
Timestamp = 1488837678
},
{
Name = "Update 19.13",
Link = "Update 19#Update 19.13",
Aliases = { "19.13.0", "19.13" },
ShortName = "U19.13",
Date = "2017-03-09",
Parent = "19.9",
ParentName = "The Pacifism Defect",
ForumLink = "https://forums.warframe.com/topic/771036-update-19130/",
ArchiveLink = "https://web.archive.org/web/20170324165802/https://forums.warframe.com/topic/771036-update-19130/",
ArchiveDate = "2017-03-24",
Timestamp = 1489092049,
Subtitle = "Tenno Reinforcements: Ferrox"
},
{
Name = "Hotfix 19.13.1",
Link = "Update 19#Hotfix 19.13.1",
Aliases = { "19.13.1" },
ShortName = "H19.13.1",
Date = "2017-03-10",
Parent = "19.9",
ParentName = "The Pacifism Defect",
ForumLink = "https://forums.warframe.com/topic/771478-hotfix-19131/",
ArchiveLink = "https://web.archive.org/web/20170324165801/https://forums.warframe.com/topic/771478-hotfix-19131/",
ArchiveDate = "2017-03-24",
Timestamp = 1489176228
},
{
Name = "Update 20.0",
Link = "Update 20#Update 20.0",
Aliases = { "Update 20", "20.0", "20", "OA", "Octavia's Anthem" },
ShortName = "U20.0",
Date = "2017-03-24",
Parent = "20.0",
ForumLink = "https://forums.warframe.com/topic/776642-octavias-anthem-update-20/",
ArchiveLink = "https://web.archive.org/web/20211230055458/https://forums.warframe.com/topic/776642-octavias-anthem-update-20/",
ArchiveDate = "2021-12-30",
Timestamp = 1490384762,
Subtitle = "Octavia's Anthem"
},
{
Name = "Hotfix 20.0.1",
Link = "Update 20#Hotfix 20.0.1",
Aliases = { "20.0.1" },
ShortName = "H20.0.1",
Date = "2017-03-24",
Parent = "20.0",
ForumLink = "https://forums.warframe.com/topic/776698-octavia%E2%80%99s-anthem-hotfix-2001/",
ArchiveLink = "https://web.archive.org/web/20210304223454/https://forums.warframe.com/topic/776698-octavia%E2%80%99s-anthem-hotfix-2001/",
ArchiveDate = "2021-03-04",
Timestamp = 1490390189
},
{
Name = "Hotfix 20.0.2",
Link = "Update 20#Hotfix 20.0.2",
Aliases = { "20.0.2" },
ShortName = "H20.0.2",
Date = "2017-03-24",
Parent = "20.0",
ForumLink = "https://forums.warframe.com/topic/776780-octavia%E2%80%99s-anthem-hotfix-2002/",
ArchiveLink = "https://web.archive.org/web/20210303023821/https://forums.warframe.com/topic/776780-octavia%E2%80%99s-anthem-hotfix-2002/",
ArchiveDate = "2021-03-03",
Timestamp = 1490395278
},
{
Name = "Hotfix 20.0.3",
Link = "Update 20#Hotfix 20.0.3",
Aliases = { "20.0.3" },
ShortName = "H20.0.3",
Date = "2017-03-26",
Parent = "20.0",
ForumLink = "https://forums.warframe.com/topic/778048-octavia%E2%80%99s-anthem-hotfix-2003/",
ArchiveLink = "https://web.archive.org/web/20200919122858/https://forums.warframe.com/topic/778048-octavia%E2%80%99s-anthem-hotfix-2003/",
ArchiveDate = "2020-09-19",
Timestamp = 1490519518
},
{
Name = "Hotfix 20.0.4",
Link = "Update 20#Hotfix 20.0.4",
Aliases = { "20.0.4" },
ShortName = "H20.0.4",
Date = "2017-03-27",
Parent = "20.0",
ForumLink = "https://forums.warframe.com/topic/779000-octavias-anthem-hotfix-2004/",
ArchiveLink = "https://web.archive.org/web/20201112022852/https://forums.warframe.com/topic/779000-octavias-anthem-hotfix-2004/",
ArchiveDate = "2020-11-12",
Timestamp = 1490650924
},
{
Name = "Hotfix 20.0.5",
Link = "Update 20#Hotfix 20.0.5",
Aliases = { "20.0.5" },
ShortName = "H20.0.5",
Date = "2017-03-28",
Parent = "20.0",
ForumLink = "https://forums.warframe.com/topic/779477-octavias-anthem-hotfix-2005/",
ArchiveLink = "https://web.archive.org/web/20201025111520/https://forums.warframe.com/topic/779477-octavias-anthem-hotfix-2005/",
ArchiveDate = "2020-10-25",
Timestamp = 1490717172
},
{
Name = "Hotfix 20.0.6",
Link = "Update 20#Hotfix 20.0.6",
Aliases = { "20.0.6" },
ShortName = "H20.0.6",
Date = "2017-03-29",
Parent = "20.0",
ForumLink = "https://forums.warframe.com/topic/780209-octavias-anthem-hotfix-2006/",
ArchiveLink = "https://web.archive.org/web/20190209001727/https://forums.warframe.com/topic/780209-octavias-anthem-hotfix-2006/",
ArchiveDate = "2019-02-09",
Timestamp = 1490821907
},
{
Name = "Hotfix 20.0.7",
Link = "Update 20#Hotfix 20.0.7",
Aliases = { "20.0.7" },
ShortName = "H20.0.7",
Date = "2017-03-30",
Parent = "20.0",
ForumLink = "https://forums.warframe.com/topic/780658-octavias-anthem-hotfix-2007/",
ArchiveLink = "https://web.archive.org/web/20200919132229/https://forums.warframe.com/topic/780658-octavias-anthem-hotfix-2007/",
ArchiveDate = "2020-09-19",
Timestamp = 1490900682
},
{
Name = "Hotfix 20.0.8",
Link = "Update 20#Hotfix 20.0.8",
Aliases = { "20.0.8" },
ShortName = "H20.0.8",
Date = "2017-03-30",
Parent = "20.0",
ForumLink = "https://forums.warframe.com/topic/780730-octavias-anthem-hotfix-2008/",
ArchiveLink = "https://web.archive.org/web/20210514020836/https://forums.warframe.com/topic/780730-octavias-anthem-hotfix-2008/",
ArchiveDate = "2021-05-14",
Timestamp = 1490910987
},
{
Name = "Hotfix 20.0.9",
Link = "Update 20#Hotfix 20.0.9",
Aliases = { "20.0.9" },
ShortName = "H20.0.9",
Date = "2017-04-03",
Parent = "20.0",
ForumLink = "https://forums.warframe.com/topic/782477-octavias-anthem-hotfix-2009/",
ArchiveLink = "https://web.archive.org/web/20170603141722/https://forums.warframe.com/topic/782477-octavias-anthem-hotfix-2009/",
ArchiveDate = "2017-06-03",
Timestamp = 1491254316
},
{
Name = "Update 20.1",
Link = "Update 20#Update 20.1",
Aliases = { "20.1.0", "20.1" },
ShortName = "U20.1",
Date = "2017-04-05",
Parent = "20.1",
ForumLink = "https://forums.warframe.com/topic/783215-octavias-anthem-update-2010/",
ArchiveLink = "https://web.archive.org/web/20211104161152/https://forums.warframe.com/topic/783215-octavias-anthem-update-2010/",
ArchiveDate = "2021-11-04",
Timestamp = 1491426507,
Subtitle = "Chroma Deluxe Dynasty Collection"
},
{
Name = "Hotfix 20.1.1",
Link = "Update 20#Hotfix 20.1.1",
Aliases = { "20.1.1" },
ShortName = "H20.1.1",
Date = "2017-04-07",
Parent = "20.1",
ForumLink = "https://forums.warframe.com/topic/784058-octavia%E2%80%99s-anthem-hotfix-2011/",
ArchiveLink = "https://web.archive.org/web/20170603141714/https://forums.warframe.com/topic/784058-octavia%E2%80%99s-anthem-hotfix-2011/",
ArchiveDate = "2017-06-03",
Timestamp = 1491592536
},
{
Name = "Update 20.2",
Link = "Update 20#Update 20.2",
Aliases = { "20.2.0", "20.2" },
ShortName = "U20.2",
Date = "2017-04-12",
Parent = "20.2",
ForumLink = "https://forums.warframe.com/topic/785788-octavia%E2%80%99s-anthem-update-2020/",
ArchiveLink = "https://web.archive.org/web/20211119222328/https://forums.warframe.com/topic/785788-octavia%E2%80%99s-anthem-update-2020/",
ArchiveDate = "2021-11-19",
Timestamp = 1492020261,
Subtitle = "New Warframe Augments"
},
{
Name = "Hotfix 20.2.1",
Link = "Update 20#Hotfix 20.2.1",
Aliases = { "20.2.1" },
ShortName = "H20.2.1",
Date = "2017-04-12",
Parent = "20.2",
ForumLink = "https://forums.warframe.com/topic/785900-octavia%E2%80%99s-anthem-hotfix-2021/",
ArchiveLink = "https://web.archive.org/web/20200920180154/https://forums.warframe.com/topic/785900-octavia%E2%80%99s-anthem-hotfix-2021/",
ArchiveDate = "2020-09-20",
Timestamp = 1492034787
},
{
Name = "Hotfix 20.2.2",
Link = "Update 20#Hotfix 20.2.2",
Aliases = { "20.2.2" },
ShortName = "H20.2.2",
Date = "2017-04-13",
Parent = "20.2",
ForumLink = "https://forums.warframe.com/topic/786250-octavias-anthem-hotfix-2022/",
ArchiveLink = "https://web.archive.org/web/20200919130916/https://forums.warframe.com/topic/786250-octavias-anthem-hotfix-2022/",
ArchiveDate = "2020-09-19",
Timestamp = 1492113521
},
{
Name = "Hotfix 20.2.3",
Link = "Update 20#Hotfix 20.2.3",
Aliases = { "20.2.3" },
ShortName = "H20.2.3",
Date = "2017-04-19",
Parent = "20.2",
ForumLink = "https://forums.warframe.com/topic/788574-octavia%E2%80%99s-anthem-hotfix-2023/",
ArchiveLink = "https://web.archive.org/web/20201127000748/https://forums.warframe.com/topic/788574-octavia%E2%80%99s-anthem-hotfix-2023/",
ArchiveDate = "2020-11-27",
Timestamp = 1492639722
},
{
Name = "Hotfix 20.2.4",
Link = "Update 20#Hotfix 20.2.4",
Aliases = { "20.2.4" },
ShortName = "H20.2.4",
Date = "2017-04-20",
Parent = "20.2",
ForumLink = "https://forums.warframe.com/topic/788921-octavia%E2%80%99s-anthem-hotfix-2024/",
ArchiveLink = "https://web.archive.org/web/20201112023334/https://forums.warframe.com/topic/788921-octavia%E2%80%99s-anthem-hotfix-2024/",
ArchiveDate = "2020-11-12",
Timestamp = 1492721873
},
{
Name = "Update 20.3",
Link = "Update 20#Update 20.3",
Aliases = { "20.3.0", "20.3" },
ShortName = "U20.3",
Date = "2017-04-26",
Parent = "20.3",
ForumLink = "https://forums.warframe.com/topic/790938-octavia%E2%80%99s-anthem-update-2030/",
ArchiveLink = "https://web.archive.org/web/20210514113008/https://forums.warframe.com/topic/790938-octavia%E2%80%99s-anthem-update-2030/",
ArchiveDate = "2021-05-14",
Timestamp = 1493243254,
Subtitle = "Oberon Revisited + Tenno Reinforcements: Cycron"
},
{
Name = "Hotfix 20.3.1",
Link = "Update 20#Hotfix 20.3.1",
Aliases = { "20.3.1" },
ShortName = "H20.3.1",
Date = "2017-04-27",
Parent = "20.3",
ForumLink = "https://forums.warframe.com/topic/791287-octavia%E2%80%99s-anthem-hotfix-2031/",
ArchiveLink = "https://web.archive.org/web/20200922010325/https://forums.warframe.com/topic/791287-octavia%E2%80%99s-anthem-hotfix-2031/",
ArchiveDate = "2020-09-22",
Timestamp = 1493325968
},
{
Name = "Update 20.4",
Link = "Update 20#Update 20.4",
Aliases = { "20.4.0", "20.4" },
ShortName = "U20.4",
Date = "2017-05-04",
Parent = "20.4",
ForumLink = "https://forums.warframe.com/topic/793570-octavia%E2%80%99s-anthem-update-2040/",
ArchiveLink = "https://web.archive.org/web/20210516053730/https://forums.warframe.com/topic/793570-octavia%E2%80%99s-anthem-update-2040/",
ArchiveDate = "2021-05-16",
Timestamp = 1493906330,
Subtitle = "Operation Ambulas Reborn"
},
{
Name = "Hotfix 20.4.1",
Link = "Update 20#Hotfix 20.4.1",
Aliases = { "20.4.1" },
ShortName = "H20.4.1",
Date = "2017-05-04",
Parent = "20.4",
ForumLink = "https://forums.warframe.com/topic/793629-octavia%E2%80%99s-anthem-hotfix-2041/",
ArchiveLink = "https://web.archive.org/web/20201024155036/https://forums.warframe.com/topic/793629-octavia%E2%80%99s-anthem-hotfix-2041/",
ArchiveDate = "2020-10-24",
Timestamp = 1493920878
},
{
Name = "Hotfix 20.4.2",
Link = "Update 20#Hotfix 20.4.2",
Aliases = { "20.4.2" },
ShortName = "H20.4.2",
Date = "2017-05-05",
Parent = "20.4",
ForumLink = "https://forums.warframe.com/topic/793795-octavia%E2%80%99s-anthem-hotfix-2042/",
ArchiveLink = "https://web.archive.org/web/20170603141633/https://forums.warframe.com/topic/793795-octavia%E2%80%99s-anthem-hotfix-2042/",
ArchiveDate = "2017-06-03",
Timestamp = 1493954801
},
{
Name = "Hotfix 20.4.3",
Link = "Update 20#Hotfix 20.4.3",
Aliases = { "20.4.3" },
ShortName = "H20.4.3",
Date = "2017-05-05",
Parent = "20.4",
ForumLink = "https://forums.warframe.com/topic/794034-octavia%E2%80%99s-anthem-hotfix-204320431/",
ArchiveLink = "https://web.archive.org/web/20170603141630/https://forums.warframe.com/topic/794034-octavia%E2%80%99s-anthem-hotfix-204320431/",
ArchiveDate = "2017-06-03",
Timestamp = 1494015984
},
{
Name = "Hotfix 20.4.3.1",
Link = "Update 20#Hotfix 20.4.3.1",
Aliases = { "20.4.3.1" },
ShortName = "H20.4.3.1",
Date = "2017-05-05",
Parent = "20.4",
ForumLink = "https://forums.warframe.com/topic/794034-octavia%E2%80%99s-anthem-hotfix-204320431/",
ArchiveLink = "https://web.archive.org/web/20170603141630/https://forums.warframe.com/topic/794034-octavia%E2%80%99s-anthem-hotfix-204320431/",
ArchiveDate = "2017-06-03",
Timestamp = 1494015984
},
{
Name = "Hotfix 20.4.4",
Link = "Update 20#Hotfix 20.4.4",
Aliases = { "20.4.4" },
ShortName = "H20.4.4",
Date = "2017-05-08",
Parent = "20.4",
ForumLink = "https://forums.warframe.com/topic/795023-octavia%E2%80%99s-anthem-hotfix-2044/",
ArchiveLink = "https://web.archive.org/web/20201024154710/https://forums.warframe.com/topic/795023-octavia%E2%80%99s-anthem-hotfix-2044/",
ArchiveDate = "2020-10-24",
Timestamp = 1494279739
},
{
Name = "Hotfix 20.4.5",
Link = "Update 20#Hotfix 20.4.5",
Aliases = { "20.4.5" },
ShortName = "H20.4.5",
Date = "2017-05-09",
Parent = "20.4",
ForumLink = "https://forums.warframe.com/topic/795072-hotfix-2045/",
ArchiveLink = "https://web.archive.org/web/20201030012710/https://forums.warframe.com/topic/795072-hotfix-2045/",
ArchiveDate = "2020-10-30",
Timestamp = 1494292769
},
{
Name = "Hotfix 20.4.6",
Link = "Update 20#Hotfix 20.4.6",
Aliases = { "20.4.6" },
ShortName = "H20.4.6",
Date = "2017-05-11",
Parent = "20.4",
ForumLink = "https://forums.warframe.com/topic/795965-octavia%E2%80%99s-anthem-hotfix-2046/",
ArchiveLink = "https://web.archive.org/web/20201028230229/https://forums.warframe.com/topic/795965-octavia%E2%80%99s-anthem-hotfix-2046/",
ArchiveDate = "2020-10-28",
Timestamp = 1494529556
},
{
Name = "Update 20.5",
Link = "Update 20#Update 20.5",
Aliases = { "20.5.0", "20.5" },
ShortName = "U20.5",
Date = "2017-05-17",
Parent = "20.5",
ForumLink = "https://forums.warframe.com/topic/797978-octavia%E2%80%99s-anthem-update-2050/",
ArchiveLink = "https://web.archive.org/web/20211104161150/https://forums.warframe.com/topic/797978-octavia%E2%80%99s-anthem-update-2050/",
ArchiveDate = "2021-11-04",
Timestamp = 1495048586,
Subtitle = "TennoGen Round 8"
},
{
Name = "Hotfix 20.5.1",
Link = "Update 20#Hotfix 20.5.1",
Aliases = { "20.5.1" },
ShortName = "H20.5.1",
Date = "2017-05-17",
Parent = "20.5",
ForumLink = "https://forums.warframe.com/topic/798025-octavia%E2%80%99s-anthem-hotfix-2051/",
ArchiveLink = "https://web.archive.org/web/20170603141609/https://forums.warframe.com/topic/798025-octavia%E2%80%99s-anthem-hotfix-2051/",
ArchiveDate = "2017-06-03",
Timestamp = 1495057955
},
{
Name = "Hotfix 20.5.2",
Link = "Update 20#Hotfix 20.5.2",
Aliases = { "20.5.2" },
ShortName = "H20.5.2",
Date = "2017-05-18",
Parent = "20.5",
ForumLink = "https://forums.warframe.com/topic/798353-octavias-anthem-hotfix-2052/",
ArchiveLink = "https://web.archive.org/web/20170822234849/https://forums.warframe.com/topic/798353-octavias-anthem-hotfix-2052/",
ArchiveDate = "2017-08-22",
Timestamp = 1495141282
},
{
Name = "Update 20.6",
Link = "Update 20#Update 20.6",
Aliases = { "20.6.0", "20.6" },
ShortName = "U20.6",
Date = "2017-05-24",
Parent = "20.6",
ForumLink = "https://forums.warframe.com/topic/800141-octavia%E2%80%99s-anthem-update-2060-20601/",
ArchiveLink = "https://web.archive.org/web/20211118054728/https://forums.warframe.com/topic/800141-octavia%E2%80%99s-anthem-update-2060-20601/",
ArchiveDate = "2021-11-18",
Timestamp = 1495658537,
Subtitle = "Tenno Reinforcements: Endura"
},
{
Name = "Hotfix 20.6.0.1",
Link = "Update 20#Hotfix 20.6.0.1",
Aliases = { "20.6.0.1" },
ShortName = "H20.6.0.1",
Date = "2017-05-24",
Parent = "20.6",
ForumLink = "https://forums.warframe.com/topic/800141-octavia%E2%80%99s-anthem-update-2060-20601/",
ArchiveLink = "https://web.archive.org/web/20211118054728/https://forums.warframe.com/topic/800141-octavia%E2%80%99s-anthem-update-2060-20601/",
ArchiveDate = "2021-11-18",
Timestamp = 1495658537
},
{
Name = "Hotfix 20.6.1",
Link = "Update 20#Hotfix 20.6.1",
Aliases = { "20.6.1" },
ShortName = "H20.6.1",
Date = "2017-05-25",
Parent = "20.6",
ForumLink = "https://forums.warframe.com/topic/800441-octavia%E2%80%99s-anthem-hotfix-2061/",
ArchiveLink = "https://web.archive.org/web/20201112024335/https://forums.warframe.com/topic/800441-octavia%E2%80%99s-anthem-hotfix-2061/",
ArchiveDate = "2020-11-12",
Timestamp = 1495750136
},
{
Name = "Hotfix 20.6.2",
Link = "Update 20#Hotfix 20.6.2",
Aliases = { "20.6.2" },
ShortName = "H20.6.2",
Date = "2017-05-30",
Parent = "20.6",
ForumLink = "https://forums.warframe.com/topic/801884-oberon-prime-hotfix-2062/",
ArchiveLink = "https://web.archive.org/web/20210116040623/https://forums.warframe.com/topic/801884-oberon-prime-hotfix-2062/",
ArchiveDate = "2021-01-16",
Timestamp = 1496167910,
Subtitle = "Oberon Prime"
},
{
Name = "Hotfix 20.6.3",
Link = "Update 20#Hotfix 20.6.3",
Aliases = { "20.6.3" },
ShortName = "H20.6.3",
Date = "2017-05-30",
Parent = "20.6",
ForumLink = "https://forums.warframe.com/topic/801968-oberon-prime-hotfix-2063/",
ArchiveLink = "https://web.archive.org/web/20170823130038/https://forums.warframe.com/topic/801968-oberon-prime-hotfix-2063/",
ArchiveDate = "2017-08-23",
Timestamp = 1496181980
},
{
Name = "Hotfix 20.6.4",
Link = "Update 20#Hotfix 20.6.4",
Aliases = { "20.6.4" },
ShortName = "H20.6.4",
Date = "2017-05-31",
Parent = "20.6",
ForumLink = "https://forums.warframe.com/topic/802321-oberon-prime-hotfix-2064/",
ArchiveLink = "https://web.archive.org/web/20170606225730/https://forums.warframe.com/topic/802321-oberon-prime-hotfix-2064/",
ArchiveDate = "2017-06-06",
Timestamp = 1496263698,
Subtitle = "Oberon Prime"
},
{
Name = "Update 20.7",
Link = "Update 20#Update 20.7",
Aliases = { "20.7.0", "20.7" },
ShortName = "U20.7",
Date = "2017-06-07",
Parent = "20.7",
ForumLink = "https://forums.warframe.com/topic/804548-oberon-prime-update-2070/",
ArchiveLink = "https://web.archive.org/web/20211230055504/https://forums.warframe.com/topic/804548-oberon-prime-update-2070/",
ArchiveDate = "2021-12-30",
Timestamp = 1496862539,
Subtitle = "New Warframe Augments"
},
{
Name = "Hotfix 20.7.1",
Link = "Update 20#Hotfix 20.7.1",
Aliases = { "20.7.1" },
ShortName = "H20.7.1",
Date = "2017-06-14",
Parent = "20.7",
ForumLink = "https://forums.warframe.com/topic/806282-oberon-prime-hotfix-2071/",
ArchiveLink = "https://web.archive.org/web/20170904170402/https://forums.warframe.com/topic/806282-oberon-prime-hotfix-2071/",
ArchiveDate = "2017-09-04",
Timestamp = 1497474099
},
{
Name = "Hotfix 20.7.2",
Link = "Update 20#Hotfix 20.7.2",
Aliases = { "20.7.2" },
ShortName = "H20.7.2",
Date = "2017-06-15",
Parent = "20.7",
ForumLink = "https://forums.warframe.com/topic/806503-oberon-prime-hotfix-2072/",
ArchiveLink = "https://web.archive.org/web/20170905005359/https://forums.warframe.com/topic/806503-oberon-prime-hotfix-2072/",
ArchiveDate = "2017-09-05",
Timestamp = 1497547345
},
{
Name = "Hotfix 20.7.3",
Link = "Update 20#Hotfix 20.7.3",
Aliases = { "20.7.3" },
ShortName = "H20.7.3",
Date = "2017-06-16",
Parent = "20.7",
ForumLink = "https://forums.warframe.com/topic/806797-oberon-prime-hotfix-2073/",
ArchiveLink = "https://web.archive.org/web/20170916051519/https://forums.warframe.com/topic/806797-oberon-prime-hotfix-2073/",
ArchiveDate = "2017-09-16",
Timestamp = 1497644684
},
{
Name = "Hotfix 20.7.4",
Link = "Update 20#Hotfix 20.7.4",
Aliases = { "20.7.4" },
ShortName = "H20.7.4",
Date = "2017-06-27",
Parent = "20.7",
ForumLink = "https://forums.warframe.com/topic/809453-oberon-prime-hotfix-2074-20741/",
ArchiveLink = "https://web.archive.org/web/20201101015805/https://forums.warframe.com/topic/809453-oberon-prime-hotfix-2074-20741/",
ArchiveDate = "2020-11-01",
Timestamp = 1498586381
},
{
Name = "Hotfix 20.7.4.1",
Link = "Update 20#Hotfix 20.7.4.1",
Aliases = { "20.7.4.1" },
ShortName = "H20.7.4.1",
Date = "2017-06-27",
Parent = "20.7",
ForumLink = "https://forums.warframe.com/topic/809453-oberon-prime-hotfix-2074-20741/",
ArchiveLink = "https://web.archive.org/web/20201101015805/https://forums.warframe.com/topic/809453-oberon-prime-hotfix-2074-20741/",
ArchiveDate = "2020-11-01",
Timestamp = 1498586381
},
{
Name = "Update 21.0",
Link = "Update 21#Update 21.0",
Aliases = { "Update 21", "21.0", "21", "CH", "Chains of Harrow" },
ShortName = "U21.0",
Date = "2017-06-29",
Parent = "21.0",
ForumLink = "https://forums.warframe.com/topic/809842-update-21-chains-of-harrow/",
ArchiveLink = "https://web.archive.org/web/20220223200746/https://forums.warframe.com/topic/809842-update-21-chains-of-harrow/",
ArchiveDate = "2022-02-23",
Timestamp = 1498705220,
Subtitle = "Chains of Harrow"
},
{
Name = "Hotfix 21.0.1",
Link = "Update 21#Hotfix 21.0.1",
Aliases = { "21.0.1" },
ShortName = "H21.0.1",
Date = "2017-06-29",
Parent = "21.0",
ForumLink = "https://forums.warframe.com/topic/809985-chains-of-harrow-hotfix-2101/",
ArchiveLink = "https://web.archive.org/web/20201020223902/https://forums.warframe.com/topic/809985-chains-of-harrow-hotfix-2101/",
ArchiveDate = "2020-10-20",
Timestamp = 1498720592
},
{
Name = "Hotfix 21.0.2",
Link = "Update 21#Hotfix 21.0.2",
Aliases = { "21.0.2" },
ShortName = "H21.0.2",
Date = "2017-06-29",
Parent = "21.0",
ForumLink = "https://forums.warframe.com/topic/810482-chains-of-harrow-hotfix-2102/",
ArchiveLink = "https://web.archive.org/web/20201029002555/https://forums.warframe.com/topic/810482-chains-of-harrow-hotfix-2102/",
ArchiveDate = "2020-10-29",
Timestamp = 1498772622
},
{
Name = "Hotfix 21.0.3",
Link = "Update 21#Hotfix 21.0.3",
Aliases = { "21.0.3" },
ShortName = "H21.0.3",
Date = "2017-06-30",
Parent = "21.0",
ForumLink = "https://forums.warframe.com/topic/811064-chains-of-harrow-hotfix-2103/",
ArchiveLink = "https://web.archive.org/web/20210515182251/https://forums.warframe.com/topic/811064-chains-of-harrow-hotfix-2103/",
ArchiveDate = "2021-05-15",
Timestamp = 1498856207
},
{
Name = "Hotfix 21.0.4",
Link = "Update 21#Hotfix 21.0.4",
Aliases = { "21.0.4" },
ShortName = "H21.0.4",
Date = "2017-07-05",
Parent = "21.0",
ForumLink = "https://forums.warframe.com/topic/813247-chains-of-harrow-hotfix-2104/",
ArchiveLink = "https://web.archive.org/web/20201020235938/https://forums.warframe.com/topic/813247-chains-of-harrow-hotfix-2104/",
ArchiveDate = "2020-10-20",
Timestamp = 1499274136
},
{
Name = "Hotfix 21.0.5",
Link = "Update 21#Hotfix 21.0.5",
Aliases = { "21.0.5" },
ShortName = "H21.0.5",
Date = "2017-07-06",
Parent = "21.0",
ForumLink = "https://forums.warframe.com/topic/813821-chains-of-harrow-hotfix-2105/",
ArchiveLink = "https://web.archive.org/web/20201020232539/https://forums.warframe.com/topic/813821-chains-of-harrow-hotfix-2105/",
ArchiveDate = "2020-10-20",
Timestamp = 1499374056
},
{
Name = "Hotfix 21.0.6",
Link = "Update 21#Hotfix 21.0.6",
Aliases = { "21.0.6" },
ShortName = "H21.0.6",
Date = "2017-07-07",
Parent = "21.0",
ForumLink = "https://forums.warframe.com/topic/814223-chains-of-harrow-hotfix-2106/",
ArchiveLink = "https://web.archive.org/web/20201028153641/https://forums.warframe.com/topic/814223-chains-of-harrow-hotfix-2106/",
ArchiveDate = "2020-10-28",
Timestamp = 1499460408
},
{
Name = "Hotfix 21.0.7",
Link = "Update 21#Hotfix 21.0.7",
Aliases = { "21.0.7" },
ShortName = "H21.0.7",
Date = "2017-07-13",
Parent = "21.0",
ForumLink = "https://forums.warframe.com/topic/817066-chains-of-harrow-hotfix-2107/",
ArchiveLink = "https://web.archive.org/web/20201109040138/https://forums.warframe.com/topic/817066-chains-of-harrow-hotfix-2107/",
ArchiveDate = "2020-11-09",
Timestamp = 1499961728
},
{
Name = "Hotfix 21.0.8",
Link = "Update 21#Hotfix 21.0.8",
Aliases = { "21.0.8" },
ShortName = "H21.0.8",
Date = "2017-07-13",
Parent = "21.0",
ForumLink = "https://forums.warframe.com/topic/817221-chains-of-harrow-hotfix-2108-21081/",
ArchiveLink = "https://web.archive.org/web/20201111191713/https://forums.warframe.com/topic/817221-chains-of-harrow-hotfix-2108-21081/",
ArchiveDate = "2020-11-11",
Timestamp = 1499979040
},
{
Name = "Hotfix 21.0.8.1",
Link = "Update 21#Hotfix 21.0.8.1",
Aliases = { "21.0.8.1" },
ShortName = "H21.0.8.1",
Date = "2017-07-13",
Parent = "21.0",
ForumLink = "https://forums.warframe.com/topic/817221-chains-of-harrow-hotfix-2108-21081/",
ArchiveLink = "https://web.archive.org/web/20201111191713/https://forums.warframe.com/topic/817221-chains-of-harrow-hotfix-2108-21081/",
ArchiveDate = "2020-11-11",
Timestamp = 1499979040
},
{
Name = "Hotfix 21.0.9",
Link = "Update 21#Hotfix 21.0.9",
Aliases = { "21.0.9" },
ShortName = "H21.0.9",
Date = "2017-07-17",
Parent = "21.0",
ForumLink = "https://forums.warframe.com/topic/819116-chains-of-harrow-hotfix-2109/",
ArchiveLink = "https://web.archive.org/web/20201029002612/https://forums.warframe.com/topic/819116-chains-of-harrow-hotfix-2109/",
ArchiveDate = "2020-10-29",
Timestamp = 1500325837
},
{
Name = "Update 21.1",
Link = "Update 21#Update 21.1",
Aliases = { "21.1.0", "21.1" },
ShortName = "U21.1",
Date = "2017-07-19",
Parent = "21.1",
ForumLink = "https://forums.warframe.com/topic/820014-chains-of-harrow-update-2110-21101/",
ArchiveLink = "https://web.archive.org/web/20211128103659/https://forums.warframe.com/topic/820014-chains-of-harrow-update-2110-21101/",
ArchiveDate = "2021-11-28",
Timestamp = 1500499869,
Subtitle = "Tenno Reinforcements: Guandao and Zakti"
},
{
Name = "Hotfix 21.1.0.1",
Link = "Update 21#Hotfix 21.1.0.1",
Aliases = { "21.1.0.1" },
ShortName = "H21.1.0.1",
Date = "2017-07-19",
Parent = "21.1",
ForumLink = "https://forums.warframe.com/topic/820014-chains-of-harrow-update-2110-21101/",
ArchiveLink = "https://web.archive.org/web/20211128103659/https://forums.warframe.com/topic/820014-chains-of-harrow-update-2110-21101/",
ArchiveDate = "2021-11-28",
Timestamp = 1500499869
},
{
Name = "Hotfix 21.1.1",
Link = "Update 21#Hotfix 21.1.1",
Aliases = { "21.1.1" },
ShortName = "H21.1.1",
Date = "2017-07-20",
Parent = "21.1",
ForumLink = "https://forums.warframe.com/topic/820507-chains-of-harrow-hotfix-2111/",
ArchiveLink = "https://web.archive.org/web/20171004120735/https://forums.warframe.com/topic/820507-chains-of-harrow-hotfix-2111/",
ArchiveDate = "2017-10-04",
Timestamp = 1500579217
},
{
Name = "Update 21.2",
Link = "Update 21#Update 21.2",
Aliases = { "21.2.0", "21.2" },
ShortName = "U21.2",
Date = "2017-07-26",
Parent = "21.2",
ForumLink = "https://forums.warframe.com/topic/823165-chains-of-harrow-update-2120-21201/",
ArchiveLink = "https://web.archive.org/web/20211118185455/https://forums.warframe.com/topic/823165-chains-of-harrow-update-2120-21201/",
ArchiveDate = "2021-11-18",
Timestamp = 1501103817,
Subtitle = "Tenno Reinforcements: Jat Kusar"
},
{
Name = "Hotfix 21.2.0.1",
Link = "Update 21#Hotfix 21.2.0.1",
Aliases = { "21.2.0.1" },
ShortName = "H21.2.0.1",
Date = "2017-07-26",
Parent = "21.2",
ForumLink = "https://forums.warframe.com/topic/823165-chains-of-harrow-update-2120-21201/",
ArchiveLink = "https://web.archive.org/web/20211118185455/https://forums.warframe.com/topic/823165-chains-of-harrow-update-2120-21201/",
ArchiveDate = "2021-11-18",
Timestamp = 1501103817
},
{
Name = "Hotfix 21.2.1",
Link = "Update 21#Hotfix 21.2.1",
Aliases = { "21.2.1" },
ShortName = "H21.2.1",
Date = "2017-08-01",
Parent = "21.2",
ForumLink = "https://forums.warframe.com/topic/825578-chains-of-harrow-hotfix-2121/",
ArchiveLink = "https://web.archive.org/web/20201024035353/https://forums.warframe.com/topic/825578-chains-of-harrow-hotfix-2121/",
ArchiveDate = "2020-10-24",
Timestamp = 1501610335
},
{
Name = "Update 21.3",
Link = "Update 21#Update 21.3",
Aliases = { "21.3.0", "21.3" },
ShortName = "U21.3",
Date = "2017-08-02",
Parent = "21.3",
ForumLink = "https://forums.warframe.com/topic/826127-chains-of-harrow-update-2130/",
ArchiveLink = "https://web.archive.org/web/20211122132619/https://forums.warframe.com/topic/826127-chains-of-harrow-update-2130/",
ArchiveDate = "2021-11-22",
Timestamp = 1501709334,
Subtitle = "Tenno Reinforcements: Lenz"
},
{
Name = "Hotfix 21.3.1",
Link = "Update 21#Hotfix 21.3.1",
Aliases = { "21.3.1" },
ShortName = "H21.3.1",
Date = "2017-08-04",
Parent = "21.3",
ForumLink = "https://forums.warframe.com/topic/827047-chains-of-harrow-hotfix-2131/",
ArchiveLink = "https://web.archive.org/web/20201020235956/https://forums.warframe.com/topic/827047-chains-of-harrow-hotfix-2131/",
ArchiveDate = "2020-10-20",
Timestamp = 1501877426
},
{
Name = "Hotfix 21.3.2",
Link = "Update 21#Hotfix 21.3.2",
Aliases = { "21.3.2" },
ShortName = "H21.3.2",
Date = "2017-08-04",
Parent = "21.3",
ForumLink = "https://forums.warframe.com/topic/827131-chains-of-harrow-hotfix-2132/",
ArchiveLink = "https://web.archive.org/web/20201028145740/https://forums.warframe.com/topic/827131-chains-of-harrow-hotfix-2132/",
ArchiveDate = "2020-10-28",
Timestamp = 1501886560
},
{
Name = "Update 21.4",
Link = "Update 21#Update 21.4",
Aliases = { "21.4.0", "21.4" },
ShortName = "U21.4",
Date = "2017-08-10",
Parent = "21.4",
ForumLink = "https://forums.warframe.com/topic/829596-chains-of-harrow-update-2140/",
ArchiveLink = "https://web.archive.org/web/20211104103122/https://forums.warframe.com/topic/829596-chains-of-harrow-update-2140/",
ArchiveDate = "2021-11-04",
Timestamp = 1502385981,
Subtitle = "Hydroid Revisited"
},
{
Name = "Hotfix 21.4.1",
Link = "Update 21#Hotfix 21.4.1",
Aliases = { "21.4.1" },
ShortName = "H21.4.1",
Date = "2017-08-10",
Parent = "21.4",
ForumLink = "https://forums.warframe.com/topic/829696-chains-of-harrow-hotfix-2141/",
ArchiveLink = "https://web.archive.org/web/20201020232816/https://forums.warframe.com/topic/829696-chains-of-harrow-hotfix-2141/",
ArchiveDate = "2020-10-20",
Timestamp = 1502401310
},
{
Name = "Hotfix 21.4.2",
Link = "Update 21#Hotfix 21.4.2",
Aliases = { "21.4.2" },
ShortName = "H21.4.2",
Date = "2017-08-11",
Parent = "21.4",
ForumLink = "https://forums.warframe.com/topic/830166-chains-of-harrow-hotfix-2142/",
ArchiveLink = "https://web.archive.org/web/20201021000126/https://forums.warframe.com/topic/830166-chains-of-harrow-hotfix-2142/",
ArchiveDate = "2020-10-21",
Timestamp = 1502489467
},
{
Name = "Update 21.5",
Link = "Update 21#Update 21.5",
Aliases = { "21.5.0", "21.5" },
ShortName = "U21.5",
Date = "2016-08-16",
Parent = "21.5",
ForumLink = "https://forums.warframe.com/topic/832153-chains-of-harrow-update-2150/",
ArchiveLink = "https://web.archive.org/web/20211104064156/https://forums.warframe.com/topic/832153-chains-of-harrow-update-2150/",
ArchiveDate = "2021-11-04",
Timestamp = 1502916247,
Subtitle = "TennoGen Round 9"
},
{
Name = "Hotfix 21.5.1",
Link = "Update 21#Hotfix 21.5.1",
Aliases = { "21.5.1" },
ShortName = "H21.5.1",
Date = "2017-08-17",
Parent = "21.5",
ForumLink = "https://forums.warframe.com/topic/832597-chains-of-harrow-hotfix-2151/",
ArchiveLink = "https://web.archive.org/web/20201028154044/https://forums.warframe.com/topic/832597-chains-of-harrow-hotfix-2151/",
ArchiveDate = "2020-10-28",
Timestamp = 1503002193
},
{
Name = "Hotfix 21.5.2",
Link = "Update 21#Hotfix 21.5.2",
Aliases = { "21.5.2" },
ShortName = "H21.5.2",
Date = "2017-08-18",
Parent = "21.5",
ForumLink = "https://forums.warframe.com/topic/832984-chains-of-harrow-hotfix-2152/",
ArchiveLink = "https://web.archive.org/web/20201020234250/https://forums.warframe.com/topic/832984-chains-of-harrow-hotfix-2152/",
ArchiveDate = "2020-10-20",
Timestamp = 1503088817
},
{
Name = "Update 21.6",
Link = "Update 21#Update 21.6",
Aliases = { "21.6.0", "21.6" },
ShortName = "U21.6",
Date = "2017-08-29",
Parent = "21.6",
ForumLink = "https://forums.warframe.com/topic/836927-hydroid-prime-update-2160/",
ArchiveLink = "https://web.archive.org/web/20211106223642/https://forums.warframe.com/topic/836927-hydroid-prime-update-2160/",
ArchiveDate = "2021-11-06",
Timestamp = 1504029346,
Subtitle = "Hydroid Prime"
},
{
Name = "Hotfix 21.6.1",
Link = "Update 21#Hotfix 21.6.1",
Aliases = { "21.6.1" },
ShortName = "H21.6.1",
Date = "2017-08-31",
Parent = "21.6",
ForumLink = "https://forums.warframe.com/topic/837704-hydroid-prime-update-2161/",
ArchiveLink = "https://web.archive.org/web/20211107130838/https://forums.warframe.com/topic/837704-hydroid-prime-update-2161/",
ArchiveDate = "2021-11-07",
Timestamp = 1504207316
},
{
Name = "Update 21.7",
Link = "Update 21#Update 21.7",
Aliases = { "21.7.0", "21.7" },
ShortName = "U21.7",
Date = "2017-09-09",
Parent = "21.7",
ForumLink = "https://forums.warframe.com/topic/840010-hydroid-prime-update-2170/",
ArchiveLink = "https://web.archive.org/web/20211121092309/https://forums.warframe.com/topic/840010-hydroid-prime-update-2170/",
ArchiveDate = "2021-11-21",
Timestamp = 1504809852,
Subtitle = "Tenno Reinforcements: Arca Plasmor, Arca Scisco, and Arca Titron"
},
{
Name = "Hotfix 21.7.1",
Link = "Update 21#Hotfix 21.7.1",
Aliases = { "21.7.1" },
ShortName = "H21.7.1",
Date = "2017-09-12",
Parent = "21.7",
ForumLink = "https://forums.warframe.com/topic/841802-hydroid-prime-hotfix-2171/",
ArchiveLink = "https://web.archive.org/web/20210518164032/https://forums.warframe.com/topic/841802-hydroid-prime-hotfix-2171/",
ArchiveDate = "2021-05-18",
Timestamp = 1505226556
},
{
Name = "Update 22.0",
Link = "Update 22#Update 22.0",
Aliases = { "Update 22", "22.0", "22", "Plains of Eidolon", "PoE" },
ShortName = "U22.0",
Date = "2017-10-12",
Parent = "22.0",
ForumLink = "https://forums.warframe.com/topic/854253-warframe-update-22-plains-of-eidolon/",
ArchiveLink = "https://web.archive.org/web/20211020172145/https://forums.warframe.com/topic/854253-warframe-update-22-plains-of-eidolon/",
ArchiveDate = "2021-10-20",
Timestamp = 1507845620,
Subtitle = "Plains of Eidolon"
},
{
Name = "Hotfix 22.0.1",
Link = "Update 22#Hotfix 22.0.1",
Aliases = { "22.0.1" },
ShortName = "H22.0.1",
Date = "2017-10-13",
Parent = "22.0",
ForumLink = "https://forums.warframe.com/topic/854601-plains-of-eidolon-hotfix-2201/",
ArchiveLink = "https://web.archive.org/web/20210307151810/https://forums.warframe.com/topic/854601-plains-of-eidolon-hotfix-2201/",
ArchiveDate = "2021-03-07",
Timestamp = 1507864068
},
{
Name = "Hotfix 22.0.2",
Link = "Update 22#Hotfix 22.0.2",
Aliases = { "22.0.2" },
ShortName = "H22.0.2",
Date = "2017-10-13",
Parent = "22.0",
ForumLink = "https://forums.warframe.com/topic/855756-plains-of-eidolon-hotfix-2202/",
ArchiveLink = "https://web.archive.org/web/20210226194328/https://forums.warframe.com/topic/855756-plains-of-eidolon-hotfix-2202/",
ArchiveDate = "2021-02-26",
Timestamp = 1507924627
},
{
Name = "Hotfix 22.0.3",
Link = "Update 22#Hotfix 22.0.3",
Aliases = { "22.0.3" },
ShortName = "H22.0.3",
Date = "2017-10-16",
Parent = "22.0",
ForumLink = "https://forums.warframe.com/topic/859709-plains-of-eidolon-hotfix-2203/",
ArchiveLink = "https://web.archive.org/web/20210226192530/https://forums.warframe.com/topic/859709-plains-of-eidolon-hotfix-2203/",
ArchiveDate = "2021-02-26",
Timestamp = 1508190436
},
{
Name = "Hotfix 22.0.4",
Link = "Update 22#Hotfix 22.0.4",
Aliases = { "22.0.4" },
ShortName = "H22.0.4",
Date = "2017-10-16",
Parent = "22.0",
ForumLink = "https://forums.warframe.com/topic/859840-plains-of-eidolon-hotfix-2204/",
ArchiveLink = "https://web.archive.org/web/20210226183312/https://forums.warframe.com/topic/859840-plains-of-eidolon-hotfix-2204/",
ArchiveDate = "2021-02-26",
Timestamp = 1508196269
},
{
Name = "Hotfix 22.0.5",
Link = "Update 22#Hotfix 22.0.5",
Aliases = { "22.0.5" },
ShortName = "H22.0.5",
Date = "2017-10-17",
Parent = "22.0",
ForumLink = "https://forums.warframe.com/topic/860760-plains-of-eidolon-hotfix-2205/",
ArchiveLink = "https://web.archive.org/web/20210226190846/https://forums.warframe.com/topic/860760-plains-of-eidolon-hotfix-2205/",
ArchiveDate = "2021-02-26",
Timestamp = 1508272888
},
{
Name = "Hotfix 22.0.6",
Link = "Update 22#Hotfix 22.0.6",
Aliases = { "22.0.6" },
ShortName = "H22.0.6",
Date = "2017-10-18",
Parent = "22.0",
ForumLink = "https://forums.warframe.com/topic/861790-plains-of-eidolon-hotfix-2206-22061/",
ArchiveLink = "https://web.archive.org/web/20210302115351/https://forums.warframe.com/topic/861790-plains-of-eidolon-hotfix-2206-22061/",
ArchiveDate = "2021-03-02",
Timestamp = 1508361085
},
{
Name = "Hotfix 22.0.6.1",
Link = "Update 22#Hotfix 22.0.6.1",
Aliases = { "22.0.6.1" },
ShortName = "H22.0.6.1",
Date = "2017-10-18",
Parent = "22.0",
ForumLink = "https://forums.warframe.com/topic/861790-plains-of-eidolon-hotfix-2206-22061/",
ArchiveLink = "https://web.archive.org/web/20210302115351/https://forums.warframe.com/topic/861790-plains-of-eidolon-hotfix-2206-22061/",
ArchiveDate = "2021-03-02",
Timestamp = 1508361085
},
{
Name = "Hotfix 22.0.7",
Link = "Update 22#Hotfix 22.0.7",
Aliases = { "22.0.7" },
ShortName = "H22.0.7",
Date = "2017-10-19",
Parent = "22.0",
ForumLink = "https://forums.warframe.com/topic/862704-plains-of-eidolon-hotfix-2207/",
ArchiveLink = "https://web.archive.org/web/20201204180632/https://forums.warframe.com/topic/862704-plains-of-eidolon-hotfix-2207/",
ArchiveDate = "2020-12-04",
Timestamp = 1508446099
},
{
Name = "Hotfix 22.0.8",
Link = "Update 22#Hotfix 22.0.8",
Aliases = { "22.0.8" },
ShortName = "H22.0.8",
Date = "2017-10-20",
Parent = "22.0",
ForumLink = "https://forums.warframe.com/topic/863518-plains-of-eidolon-hotfix-2208/",
ArchiveLink = "https://web.archive.org/web/20210226013048/https://forums.warframe.com/topic/863518-plains-of-eidolon-hotfix-2208/",
ArchiveDate = "2021-02-26",
Timestamp = 1508535873
},
{
Name = "Hotfix 22.0.9",
Link = "Update 22#Hotfix 22.0.9",
Aliases = { "22.0.9" },
ShortName = "H22.0.9",
Date = "2017-10-23",
Parent = "22.0",
ForumLink = "https://forums.warframe.com/topic/865725-plains-of-eidolon-hotfix-2209/",
ArchiveLink = "https://web.archive.org/web/20210226010711/https://forums.warframe.com/topic/865725-plains-of-eidolon-hotfix-2209/",
ArchiveDate = "2021-02-26",
Timestamp = 1508795519
},
{
Name = "Update 22.1",
Link = "Update 22#Update 22.1",
Aliases = { "22.1.0", "22.1" },
ShortName = "U22.1",
Date = "2017-10-25",
Parent = "22.1",
ForumLink = "https://forums.warframe.com/topic/867056-plains-of-eidolon-update-2210/",
ArchiveLink = "https://web.archive.org/web/20201112011502/https://forums.warframe.com/topic/867056-plains-of-eidolon-update-2210/",
ArchiveDate = "2020-11-12",
Timestamp = 1508965063,
Subtitle = "TennoGen Round 10"
},
{
Name = "Hotfix 22.1.0.1",
Link = "Update 22#Hotfix 22.1.0.1",
Aliases = { "22.1.0.1" },
ShortName = "H22.1.0.1",
Date = "2017-10-25",
Parent = "22.1",
ForumLink = "https://forums.warframe.com/topic/867114-plains-of-eidolon-hotfix-22101/",
ArchiveLink = "https://web.archive.org/web/20210302115541/https://forums.warframe.com/topic/867114-plains-of-eidolon-hotfix-22101/",
ArchiveDate = "2021-03-02",
Timestamp = 1508969910
},
{
Name = "Hotfix 22.1.1",
Link = "Update 22#Hotfix 22.1.1",
Aliases = { "22.1.1" },
ShortName = "H22.1.1",
Date = "2017-10-27",
Parent = "22.1",
ForumLink = "https://forums.warframe.com/topic/868348-plains-of-eidolon-hotfix-2211/",
ArchiveLink = "https://web.archive.org/web/20210226020349/https://forums.warframe.com/topic/868348-plains-of-eidolon-hotfix-2211/",
ArchiveDate = "2021-02-26",
Timestamp = 1509135703
},
{
Name = "Hotfix 22.1.2",
Link = "Update 22#Hotfix 22.1.2",
Aliases = { "22.1.2" },
ShortName = "H22.1.2",
Date = "2017-10-30",
Parent = "22.1",
ForumLink = "https://forums.warframe.com/topic/870250-plains-of-eidolon-hotfix-2212/",
ArchiveLink = "https://web.archive.org/web/20210226191249/https://forums.warframe.com/topic/870250-plains-of-eidolon-hotfix-2212/",
ArchiveDate = "2021-02-26",
Timestamp = 1509399380
},
{
Name = "Update 22.2",
Link = "Update 22#Update 22.2",
Aliases = { "22.2.0", "22.2" },
ShortName = "U22.2",
Date = "2017-11-01",
Parent = "22.2",
ForumLink = "https://forums.warframe.com/topic/871334-plains-of-eidolon-update-2220/",
ArchiveLink = "https://web.archive.org/web/20211020210217/https://forums.warframe.com/topic/871334-plains-of-eidolon-update-2220/",
ArchiveDate = "2021-10-20",
Timestamp = 1509569673,
Subtitle = "Nekros Deluxe Irkalla and Ember Deluxe Vermillion Skin Collections"
},
{
Name = "Hotfix 22.2.1",
Link = "Update 22#Hotfix 22.2.1",
Aliases = { "22.2.1" },
ShortName = "H22.2.1",
Date = "2017-11-01",
Parent = "22.2",
ForumLink = "https://forums.warframe.com/topic/871440-plains-of-eidolon-hotfix-2221/",
ArchiveLink = "https://web.archive.org/web/20210304120906/https://forums.warframe.com/topic/871440-plains-of-eidolon-hotfix-2221/",
ArchiveDate = "2021-03-04",
Timestamp = 1509578304
},
{
Name = "Hotfix 22.2.2",
Link = "Update 22#Hotfix 22.2.2",
Aliases = { "22.2.2" },
ShortName = "H22.2.2",
Date = "2017-11-02",
Parent = "22.2",
ForumLink = "https://forums.warframe.com/topic/872095-plains-of-eidolon-hotfix-2222/",
ArchiveLink = "https://web.archive.org/web/20210307152027/https://forums.warframe.com/topic/872095-plains-of-eidolon-hotfix-2222/",
ArchiveDate = "2021-03-07",
Timestamp = 1509647537
},
{
Name = "Hotfix 22.2.3",
Link = "Update 22#Hotfix 22.2.3",
Aliases = { "22.2.3" },
ShortName = "H22.2.3",
Date = "2017-11-02",
Parent = "22.2",
ForumLink = "https://forums.warframe.com/topic/872261-plains-of-eidolon-hotfix-2223/",
ArchiveLink = "https://web.archive.org/web/20210307154226/https://forums.warframe.com/topic/872261-plains-of-eidolon-hotfix-2223/",
ArchiveDate = "2021-03-07",
Timestamp = 1509664208
},
{
Name = "Hotfix 22.2.4",
Link = "Update 22#Hotfix 22.2.4",
Aliases = { "22.2.4" },
ShortName = "H22.2.4",
Date = "2017-11-06",
Parent = "22.2",
ForumLink = "https://forums.warframe.com/topic/874821-plains-of-eidolon-hotfix-2224/",
ArchiveLink = "https://web.archive.org/web/20210226190941/https://forums.warframe.com/topic/874821-plains-of-eidolon-hotfix-2224/",
ArchiveDate = "2021-02-26",
Timestamp = 1510004002
},
{
Name = "Hotfix 22.2.5",
Link = "Update 22#Hotfix 22.2.5",
Aliases = { "22.2.5" },
ShortName = "H22.2.5",
Date = "2017-11-11",
Parent = "22.2",
ForumLink = "https://forums.warframe.com/topic/877028-plains-of-eidolon-hotfix-2225/",
ArchiveLink = "https://web.archive.org/web/20210226182539/https://forums.warframe.com/topic/877028-plains-of-eidolon-hotfix-2225/",
ArchiveDate = "2021-02-26",
Timestamp = 1510366766
},
{
Name = "Hotfix 22.2.5.1",
Link = "Update 22#Hotfix 22.2.5.1",
Aliases = { "22.2.5.1" },
ShortName = "H22.2.5.1",
Date = "2017-11-11",
Parent = "22.2",
ForumLink = "https://forums.warframe.com/topic/877121-plains-of-eidolon-hotfix-22251/",
ArchiveLink = "https://web.archive.org/web/20210303141459/https://forums.warframe.com/topic/877121-plains-of-eidolon-hotfix-22251/",
ArchiveDate = "2021-03-03",
Timestamp = 1510375062
},
{
Name = "Update 22.3",
Link = "Update 22#Update 22.3",
Aliases = { "22.3.0", "22.3" },
ShortName = "U22.3",
Date = "2017-11-15",
Parent = "22.3",
ForumLink = "https://forums.warframe.com/topic/879496-plains-of-eidolon-update-2230/",
ArchiveLink = "https://web.archive.org/web/20211126181931/https://forums.warframe.com/topic/879496-plains-of-eidolon-update-2230/",
ArchiveDate = "2021-11-26",
Timestamp = 1510764655,
Subtitle = "Operation Plague Star"
},
{
Name = "Hotfix 22.3.1",
Link = "Update 22#Hotfix 22.3.1",
Aliases = { "22.3.1" },
ShortName = "H22.3.1",
Date = "2017-11-15",
Parent = "22.3",
ForumLink = "https://forums.warframe.com/topic/879562-plains-of-eidolon-hotfix-2231/",
ArchiveLink = "https://web.archive.org/web/20210307145332/https://forums.warframe.com/topic/879562-plains-of-eidolon-hotfix-2231/",
ArchiveDate = "2021-03-07",
Timestamp = 1510770950
},
{
Name = "Hotfix 22.3.2",
Link = "Update 22#Hotfix 22.3.2",
Aliases = { "22.3.2" },
ShortName = "H22.3.2",
Date = "2017-11-15",
Parent = "22.3",
ForumLink = "https://forums.warframe.com/topic/879723-plains-of-eidolon-hotfix-2232/",
ArchiveLink = "https://web.archive.org/web/20210226193017/https://forums.warframe.com/topic/879723-plains-of-eidolon-hotfix-2232/",
ArchiveDate = "2021-02-26",
Timestamp = 1510784019
},
{
Name = "Hotfix 22.3.3",
Link = "Update 22#Hotfix 22.3.3",
Aliases = { "22.3.3" },
ShortName = "H22.3.3",
Date = "2017-11-16",
Parent = "22.3",
ForumLink = "https://forums.warframe.com/topic/880130-plains-of-eidolon-hotfix-2233/",
ArchiveLink = "https://web.archive.org/web/20180103163440/https://forums.warframe.com/topic/880130-plains-of-eidolon-hotfix-2233/",
ArchiveDate = "2018-01-03",
Timestamp = 1510840752
},
{
Name = "Hotfix 22.3.4",
Link = "Update 22#Hotfix 22.3.4",
Aliases = { "22.3.4" },
ShortName = "H22.3.4",
Date = "2017-11-16",
Parent = "22.3",
ForumLink = "https://forums.warframe.com/topic/880465-plains-of-eidolon-hotfix-2234/",
ArchiveLink = "https://web.archive.org/web/20190401161957/https://forums.warframe.com/topic/880465-plains-of-eidolon-hotfix-2234/",
ArchiveDate = "2019-04-01",
Timestamp = 1510875013
},
{
Name = "Hotfix 22.3.5",
Link = "Update 22#Hotfix 22.3.5",
Aliases = { "22.3.5" },
ShortName = "H22.3.5",
Date = "2017-11-20",
Parent = "22.3",
ForumLink = "https://forums.warframe.com/topic/882798-plains-of-eidolon-hotfix-2235/",
ArchiveLink = "https://web.archive.org/web/20210302173123/https://forums.warframe.com/topic/882798-plains-of-eidolon-hotfix-2235/",
ArchiveDate = "2021-03-02",
Timestamp = 1511219202
},
{
Name = "Update 22.4",
Link = "Update 22#Update 22.4",
Aliases = { "22.4.0", "22.4" },
ShortName = "U22.4",
Date = "2017-11-23",
Parent = "22.4",
ForumLink = "https://forums.warframe.com/topic/884329-plains-of-eidolon-update-2240/",
ArchiveLink = "https://web.archive.org/web/20211020195654/https://forums.warframe.com/topic/884329-plains-of-eidolon-update-2240/",
ArchiveDate = "2021-10-20",
Timestamp = 1511467432,
Subtitle = "Tenno Reinforcements: Baza and Cassowar"
},
{
Name = "Hotfix 22.4.1",
Link = "Update 22#Hotfix 22.4.1",
Aliases = { "22.4.1" },
ShortName = "H22.4.1",
Date = "2017-11-24",
Parent = "22.4",
ForumLink = "https://forums.warframe.com/topic/884746-plains-of-eidolon-hotfix-2241/",
ArchiveLink = "https://web.archive.org/web/20210303161221/https://forums.warframe.com/topic/884746-plains-of-eidolon-hotfix-2241/",
ArchiveDate = "2021-03-03",
Timestamp = 1511537186
},
{
Name = "Update 22.5",
Link = "Update 22#Update 22.5",
Aliases = { "22.5.0", "22.5" },
ShortName = "U22.5",
Date = "2017-11-30",
Parent = "22.5",
ForumLink = "https://forums.warframe.com/topic/887725-plains-of-eidolon-update-2250-22501/",
ArchiveLink = "https://web.archive.org/web/20211021023657/https://forums.warframe.com/topic/887725-plains-of-eidolon-update-2250-22501/",
ArchiveDate = "2021-10-21",
Timestamp = 1512060771,
Subtitle = "Volt Deluxe Proto Collection + Volt QoL Changes"
},
{
Name = "Hotfix 22.5.0.1",
Link = "Update 22#Hotfix 22.5.0.1",
Aliases = { "22.5.0.1" },
ShortName = "H22.5.0.1",
Date = "2017-11-30",
Parent = "22.5",
ForumLink = "https://forums.warframe.com/topic/887725-plains-of-eidolon-update-2250-22501/",
ArchiveLink = "https://web.archive.org/web/20211021023657/https://forums.warframe.com/topic/887725-plains-of-eidolon-update-2250-22501/",
ArchiveDate = "2021-10-21",
Timestamp = 1512060771
},
{
Name = "Hotfix 22.5.1",
Link = "Update 22#Hotfix 22.5.1",
Aliases = { "22.5.1" },
ShortName = "H22.5.1",
Date = "2017-11-30",
Parent = "22.5",
ForumLink = "https://forums.warframe.com/topic/887879-plains-of-eidolon-hotfix-2251/",
ArchiveLink = "https://web.archive.org/web/20210303160953/https://forums.warframe.com/topic/887879-plains-of-eidolon-hotfix-2251/",
ArchiveDate = "2021-03-03",
Timestamp = 1512077940
},
{
Name = "Update 22.6",
Link = "Update 22#Update 22.6",
Aliases = { "22.6.0", "22.6" },
ShortName = "U22.6",
Date = "2017-12-07",
Parent = "22.6",
ForumLink = "https://forums.warframe.com/topic/891096-plains-of-eidolon-update-2260-hotfix-22601/",
ArchiveLink = "https://web.archive.org/web/20211030192142/https://forums.warframe.com/topic/891096-plains-of-eidolon-update-2260-hotfix-22601/",
ArchiveDate = "2021-10-30",
Timestamp = 1512684321,
Subtitle = "Focus 2.5"
},
{
Name = "Hotfix 22.6.0.1",
Link = "Update 22#Hotfix 22.6.0.1",
Aliases = { "22.6.0.1" },
ShortName = "H22.6.0.1",
Date = "2017-12-08",
Parent = "22.6",
ForumLink = "https://forums.warframe.com/topic/891096-plains-of-eidolon-update-2260-hotfix-22601/",
ArchiveLink = "https://web.archive.org/web/20211030192142/https://forums.warframe.com/topic/891096-plains-of-eidolon-update-2260-hotfix-22601/",
ArchiveDate = "2021-10-30",
Timestamp = 1512684321
},
{
Name = "Hotfix 22.6.1",
Link = "Update 22#Hotfix 22.6.1",
Aliases = { "22.6.1" },
ShortName = "H22.6.1",
Date = "2017-12-08",
Parent = "22.6",
ForumLink = "https://forums.warframe.com/topic/891922-plains-of-eidolon-hotfix-2261/",
ArchiveLink = "https://web.archive.org/web/20210307154303/https://forums.warframe.com/topic/891922-plains-of-eidolon-hotfix-2261/",
ArchiveDate = "2021-03-07",
Timestamp = 1512770764
},
{
Name = "Update 22.7",
Link = "Update 22#Update 22.7",
Aliases = { "22.7.0", "22.7" },
ShortName = "U22.7",
Date = "2017-12-12",
Parent = "22.7",
ForumLink = "https://forums.warframe.com/topic/893859-plains-of-eidolon-mirage-prime-2270/",
ArchiveLink = "https://web.archive.org/web/20210226185719/https://forums.warframe.com/topic/893859-plains-of-eidolon-mirage-prime-2270/",
ArchiveDate = "2021-02-26",
Timestamp = 1513105059,
Subtitle = "Mirage Prime"
},
{
Name = "Update 22.8",
Link = "Update 22#Update 22.8",
Aliases = { "22.8.0", "22.8" },
ShortName = "U22.8",
Date = "2017-12-21",
Parent = "22.8",
ForumLink = "https://forums.warframe.com/topic/897989-plains-of-eidolon-update-2280-hotfix-22801/",
ArchiveLink = "https://web.archive.org/web/20211020195710/https://forums.warframe.com/topic/897989-plains-of-eidolon-update-2280-hotfix-22801/",
ArchiveDate = "2021-10-20",
Timestamp = 1513882115,
Subtitle = "Ghoul Purge Bounties"
},
{
Name = "Hotfix 22.8.0.1",
Link = "Update 22#Hotfix 22.8.0.1",
Aliases = { "22.8.0.1" },
ShortName = "H22.8.0.1",
Date = "2017-12-21",
Parent = "22.8",
ForumLink = "https://forums.warframe.com/topic/897989-plains-of-eidolon-update-2280-hotfix-22801/",
ArchiveLink = "https://web.archive.org/web/20211020195710/https://forums.warframe.com/topic/897989-plains-of-eidolon-update-2280-hotfix-22801/",
ArchiveDate = "2021-10-20",
Timestamp = 1513882115
},
{
Name = "Hotfix 22.8.1",
Link = "Update 22#Hotfix 22.8.1",
Aliases = { "22.8.1" },
ShortName = "H22.8.1",
Date = "2017-12-22",
Parent = "22.8",
ForumLink = "https://forums.warframe.com/topic/898703-plains-of-eidolon-hotfix-2281/",
ArchiveLink = "https://web.archive.org/web/20180103163359/https://forums.warframe.com/topic/898703-plains-of-eidolon-hotfix-2281/",
ArchiveDate = "2018-01-03",
Timestamp = 1513966785
},
{
Name = "Hotfix 22.8.2",
Link = "Update 22#Hotfix 22.8.2",
Aliases = { "22.8.2" },
ShortName = "H22.8.2",
Date = "2018-01-04",
Parent = "22.8",
ForumLink = "https://forums.warframe.com/topic/904138-plains-of-eidolon-hotfix-2282/",
ArchiveLink = "https://web.archive.org/web/20201112024613/https://forums.warframe.com/topic/904138-plains-of-eidolon-hotfix-2282/",
ArchiveDate = "2020-11-12",
Timestamp = 1515098625
},
{
Name = "Hotfix 22.8.3",
Link = "Update 22#Hotfix 22.8.3",
Aliases = { "22.8.3" },
ShortName = "H22.8.3",
Date = "2018-01-11",
Parent = "22.8",
ForumLink = "https://forums.warframe.com/topic/906556-plains-of-eidolon-hotfix-2283/",
ArchiveLink = "https://web.archive.org/web/20210508084410/https://forums.warframe.com/topic/906556-plains-of-eidolon-hotfix-2283/",
ArchiveDate = "2021-05-08",
Timestamp = 1515681163
},
{
Name = "Hotfix 22.8.4",
Link = "Update 22#Hotfix 22.8.4",
Aliases = { "22.8.4" },
ShortName = "H22.8.4",
Date = "2018-01-11",
Parent = "22.8",
ForumLink = "https://forums.warframe.com/topic/906709-plains-of-eidolon-hotfix-2284/",
ArchiveLink = "https://web.archive.org/web/20220107233818/https://forums.warframe.com/topic/906709-plains-of-eidolon-hotfix-2284/",
ArchiveDate = "2022-01-07",
Timestamp = 1515708031
},
{
Name = "Update 22.9",
Link = "Update 22#Update 22.9",
Aliases = { "22.9.0", "22.9" },
ShortName = "U22.9",
Date = "2018-01-17",
Parent = "22.9",
ForumLink = "https://forums.warframe.com/topic/908909-plains-of-eidolon-update-2290/",
ArchiveLink = "https://web.archive.org/web/20211020172132/https://forums.warframe.com/topic/908909-plains-of-eidolon-update-2290/",
ArchiveDate = "2021-10-20",
Timestamp = 1516213873,
Subtitle = "TennoGen Round 11 - Part 1"
},
{
Name = "Update 22.10",
Link = "Update 22#Update 22.10",
Aliases = { "22.10.0", "22.10" },
ShortName = "U22.10",
Date = "2018-01-25",
Parent = "22.10",
ForumLink = "https://forums.warframe.com/topic/911802-plains-of-eidolon-update-22100/",
ArchiveLink = "https://web.archive.org/web/20211021023821/https://forums.warframe.com/topic/911802-plains-of-eidolon-update-22100/",
ArchiveDate = "2021-10-21",
Timestamp = 1516924394,
Subtitle = "Mesa Deluxe Presidio Collection"
},
{
Name = "Hotfix 22.10.1",
Link = "Update 22#Hotfix 22.10.1",
Aliases = { "22.10.1" },
ShortName = "H22.10.1",
Date = "2018-01-26",
Parent = "22.10",
ForumLink = "https://forums.warframe.com/topic/911974-plains-of-eidolon-hotfix-22101/",
ArchiveLink = "https://web.archive.org/web/20220107233636/https://forums.warframe.com/topic/911974-plains-of-eidolon-hotfix-22101/",
ArchiveDate = "2022-01-07",
Timestamp = 1516942118
},
{
Name = "Hotfix 22.10.2",
Link = "Update 22#Hotfix 22.10.2",
Aliases = { "22.10.2" },
ShortName = "H22.10.2",
Date = "2018-01-26",
Parent = "22.10",
ForumLink = "https://forums.warframe.com/topic/912278-plains-of-eidolon-hotfix-22102/",
ArchiveLink = "https://web.archive.org/web/20210511210042/https://forums.warframe.com/topic/912278-plains-of-eidolon-hotfix-22102/",
ArchiveDate = "2021-05-11",
Timestamp = 1516993336
},
{
Name = "Hotfix 22.10.3",
Link = "Update 22#Hotfix 22.10.3",
Aliases = { "22.10.3" },
ShortName = "H22.10.3",
Date = "2018-01-29",
Parent = "22.10",
ForumLink = "https://forums.warframe.com/topic/913560-plains-of-eidolon-hotfix-22103/",
ArchiveLink = "https://web.archive.org/web/20201109043638/https://forums.warframe.com/topic/913560-plains-of-eidolon-hotfix-22103/",
ArchiveDate = "2020-11-09",
Timestamp = 1517259102
},
{
Name = "Update 22.11",
Link = "Update 22#Update 22.11",
Aliases = { "22.11.0", "22.11" },
ShortName = "U22.11",
Date = "2018-01-31",
Parent = "22.11",
ForumLink = "https://forums.warframe.com/topic/914315-plains-of-eidolon-update-22110/",
ArchiveLink = "https://web.archive.org/web/20211020195703/https://forums.warframe.com/topic/914315-plains-of-eidolon-update-22110/",
ArchiveDate = "2021-10-20",
Timestamp = 1517434873,
Subtitle = "TennoGen Round 11 - Part 2"
},
{
Name = "Hotfix 22.11.1",
Link = "Update 22#Hotfix 22.11.1",
Aliases = { "22.11.1" },
ShortName = "H22.11.1",
Date = "2018-02-06",
Parent = "22.11",
ForumLink = "https://forums.warframe.com/topic/916858-plains-of-eidolon-hotfix-22111/",
ArchiveLink = "https://web.archive.org/web/20181231161716/https://forums.warframe.com/topic/916858-plains-of-eidolon-hotfix-22111/",
ArchiveDate = "2018-12-31",
Timestamp = 1517943537
},
{
Name = "Hotfix 22.11.2",
Link = "Update 22#Hotfix 22.11.2",
Aliases = { "22.11.2" },
ShortName = "H22.11.2",
Date = "2018-02-07",
Parent = "22.11",
ForumLink = "https://forums.warframe.com/topic/917423-plains-of-eidolon-hotfix-22112/",
ArchiveLink = "https://web.archive.org/web/20220107233335/https://forums.warframe.com/topic/917423-plains-of-eidolon-hotfix-22112/",
ArchiveDate = "2022-01-07",
Timestamp = 1518031449
},
{
Name = "Update 22.12",
Link = "Update 22#Update 22.12",
Aliases = { "22.12.0", "22.12", "Shrine of the Eidolon", "SotE" },
ShortName = "U22.12",
Date = "2018-02-09",
Parent = "22.12",
ForumLink = "https://forums.warframe.com/topic/918482-shrine-of-the-eidolon-update-22120/",
ArchiveLink = "https://web.archive.org/web/20211020195657/https://forums.warframe.com/topic/918482-shrine-of-the-eidolon-update-22120/",
ArchiveDate = "2021-10-20",
Timestamp = 1518219466,
Subtitle = "Shrine of the Eidolon"
},
{
Name = "Hotfix 22.12.1",
Link = "Update 22#Hotfix 22.12.1",
Aliases = { "22.12.1" },
ShortName = "H22.12.1",
Date = "2018-02-10",
Parent = "22.12",
ForumLink = "https://forums.warframe.com/topic/918608-shrine-of-the-eidolon-hotfix-22121/",
ArchiveLink = "https://web.archive.org/web/20220107232443/https://forums.warframe.com/topic/918608-shrine-of-the-eidolon-hotfix-22121/",
ArchiveDate = "2022-01-07",
Timestamp = 1518227370
},
{
Name = "Hotfix 22.12.2",
Link = "Update 22#Hotfix 22.12.2",
Aliases = { "22.12.2" },
ShortName = "H22.12.2",
Date = "2018-02-10",
Parent = "22.12",
ForumLink = "https://forums.warframe.com/topic/918715-shrine-of-the-eidolon-hotfix-22122/",
ArchiveLink = "https://web.archive.org/web/20220107232353/https://forums.warframe.com/topic/918715-shrine-of-the-eidolon-hotfix-22122/",
ArchiveDate = "2022-01-07",
Timestamp = 1518235274
},
{
Name = "Hotfix 22.12.3",
Link = "Update 22#Hotfix 22.12.3",
Aliases = { "22.12.3" },
ShortName = "H22.12.3",
Date = "2018-02-12",
Parent = "22.12",
ForumLink = "https://forums.warframe.com/topic/920621-shrine-of-the-eidolon-hotfix-22123/",
ArchiveLink = "https://web.archive.org/web/20220107232305/https://forums.warframe.com/topic/920621-shrine-of-the-eidolon-hotfix-22123/",
ArchiveDate = "2022-01-07",
Timestamp = 1518476171
},
{
Name = "Hotfix 22.12.4",
Link = "Update 22#Hotfix 22.12.4",
Aliases = { "22.12.4" },
ShortName = "H22.12.4",
Date = "2018-02-13",
Parent = "22.12",
ForumLink = "https://forums.warframe.com/topic/921186-shrine-of-the-eidolon-hotfix-22124/",
ArchiveLink = "https://web.archive.org/web/20220107232036/https://forums.warframe.com/topic/921186-shrine-of-the-eidolon-hotfix-22124/",
ArchiveDate = "2022-01-07",
Timestamp = 1518550665
},
{
Name = "Hotfix 22.12.5",
Link = "Update 22#Hotfix 22.12.5",
Aliases = { "22.12.5" },
ShortName = "H22.12.5",
Date = "2018-02-13",
Parent = "22.12",
ForumLink = "https://forums.warframe.com/topic/921306-shrine-of-the-eidolon-hotfix-22125/",
ArchiveLink = "https://web.archive.org/web/20220107231955/https://forums.warframe.com/topic/921306-shrine-of-the-eidolon-hotfix-22125/",
ArchiveDate = "2022-01-07",
Timestamp = 1518563250
},
{
Name = "Update 22.13",
Link = "Update 22#Update 22.13",
Aliases = { "22.13.0", "22.13" },
ShortName = "U22.13",
Date = "2018-02-15",
Parent = "22.13",
ForumLink = "https://forums.warframe.com/topic/922109-shrine-of-the-eidolon-update-22130/",
ArchiveLink = "https://web.archive.org/web/20211020210213/https://forums.warframe.com/topic/922109-shrine-of-the-eidolon-update-22130/",
ArchiveDate = "2021-10-20",
Timestamp = 1518712503,
Subtitle = "TennoGen Round 11 - Part 3"
},
{
Name = "Hotfix 22.13.1",
Link = "Update 22#Hotfix 22.13.1",
Aliases = { "22.13.1" },
ShortName = "H22.13.1",
Date = "2018-02-15",
Parent = "22.13",
ForumLink = "https://forums.warframe.com/topic/922278-shrine-of-the-eidolon-hotfix-22131/",
ArchiveLink = "https://web.archive.org/web/20220107231842/https://forums.warframe.com/topic/922278-shrine-of-the-eidolon-hotfix-22131/",
ArchiveDate = "2022-01-07",
Timestamp = 1518731334
},
{
Name = "Hotfix 22.13.2",
Link = "Update 22#Hotfix 22.13.2",
Aliases = { "22.13.2" },
ShortName = "H22.13.2",
Date = "2018-02-16",
Parent = "22.13",
ForumLink = "https://forums.warframe.com/topic/922693-shrine-of-the-eidolon-hotfix-22132/",
ArchiveLink = "https://web.archive.org/web/20210119002554/https://forums.warframe.com/topic/922693-shrine-of-the-eidolon-hotfix-22132/",
ArchiveDate = "2021-01-19",
Timestamp = 1518810499
},
{
Name = "Hotfix 22.13.3",
Link = "Update 22#Hotfix 22.13.3",
Aliases = { "22.13.3" },
ShortName = "H22.13.3",
Date = "2018-02-21",
Parent = "22.13",
ForumLink = "https://forums.warframe.com/topic/924885-shrine-of-the-eidolon-hotfix-22133/",
ArchiveLink = "https://web.archive.org/web/20210721052253/https://forums.warframe.com/topic/924885-shrine-of-the-eidolon-hotfix-22133/",
ArchiveDate = "2021-07-21",
Timestamp = 1519244313
},
{
Name = "Hotfix 22.13.4",
Link = "Update 22#Hotfix 22.13.4",
Aliases = { "22.13.4" },
ShortName = "H22.13.4",
Date = "2018-02-22",
Parent = "22.13",
ForumLink = "https://forums.warframe.com/topic/925435-shrine-of-the-eidolon-hotfix-22134/",
ArchiveLink = "https://web.archive.org/web/20201111232723/https://forums.warframe.com/topic/925435-shrine-of-the-eidolon-hotfix-22134/",
ArchiveDate = "2020-11-11",
Timestamp = 1519338301
},
{
Name = "Update 22.14",
Link = "Update 22#Update 22.14",
Aliases = { "22.14.0", "22.14" },
ShortName = "U22.14",
Date = "2018-03-01",
Parent = "22.14",
ForumLink = "https://forums.warframe.com/topic/928296-shrine-of-the-eidolon-update-22140/",
ArchiveLink = "https://web.archive.org/web/20211203045936/https://forums.warframe.com/topic/928296-shrine-of-the-eidolon-update-22140/",
ArchiveDate = "2021-12-03",
Timestamp = 1519928415,
Subtitle = "Octavia Deluxe Maestra Collection"
},
{
Name = "Hotfix 22.14.1",
Link = "Update 22#Hotfix 22.14.1",
Aliases = { "22.14.1" },
ShortName = "H22.14.1",
Date = "2018-03-01",
Parent = "22.14",
ForumLink = "https://forums.warframe.com/topic/928419-shrine-of-the-eidolon-hotfix-22141/",
ArchiveLink = "https://web.archive.org/web/20220107231526/https://forums.warframe.com/topic/928419-shrine-of-the-eidolon-hotfix-22141/",
ArchiveDate = "2022-01-07",
Timestamp = 1519941040
},
{
Name = "Hotfix 22.14.2",
Link = "Update 22#Hotfix 22.14.2",
Aliases = { "22.14.2" },
ShortName = "H22.14.2",
Date = "2018-03-02",
Parent = "22.14",
ForumLink = "https://forums.warframe.com/topic/928851-shrine-of-the-eidolon-hotfix-22142/",
ArchiveLink = "https://web.archive.org/web/20201128104922/https://forums.warframe.com/topic/928851-shrine-of-the-eidolon-hotfix-22142/",
ArchiveDate = "2020-11-28",
Timestamp = 1520021860
},
{
Name = "Update 22.15",
Link = "Update 22#Update 22.15",
Aliases = { "22.15.0", "22.15" },
ShortName = "U22.15",
Date = "2018-03-07",
Parent = "22.15",
ForumLink = "https://forums.warframe.com/topic/930667-shrine-of-the-eidolon-update-22150/",
ArchiveLink = "https://web.archive.org/web/20211020234501/https://forums.warframe.com/topic/930667-shrine-of-the-eidolon-update-22150/",
ArchiveDate = "2021-10-20",
Timestamp = 1520456672,
Subtitle = "Ceramica Collection"
},
{
Name = "Hotfix 22.15.1",
Link = "Update 22#Hotfix 22.15.1",
Aliases = { "22.15.1" },
ShortName = "H22.15.1",
Date = "2018-03-08",
Parent = "22.15",
ForumLink = "https://forums.warframe.com/topic/931023-shrine-of-the-eidolon-hotfix-22151/",
ArchiveLink = "https://web.archive.org/web/20220107231315/https://forums.warframe.com/topic/931023-shrine-of-the-eidolon-hotfix-22151/",
ArchiveDate = "2022-01-07",
Timestamp = 1520540991
},
{
Name = "Update 22.16",
Link = "Update 22#Update 22.16",
Aliases = { "22.16.0", "22.16" },
ShortName = "U22.16",
Date = "2018-03-15",
Parent = "22.16",
ForumLink = "https://forums.warframe.com/topic/933296-shrine-of-the-eidolon-update-22160/",
ArchiveLink = "https://web.archive.org/web/20210516182142/https://forums.warframe.com/topic/933296-shrine-of-the-eidolon-update-22160/",
ArchiveDate = "2021-05-16",
Timestamp = 1521145672,
Subtitle = "Dojo Remaster"
},
{
Name = "Hotfix 22.16.1",
Link = "Update 22#Hotfix 22.16.1",
Aliases = { "22.16.1" },
ShortName = "H22.16.1",
Date = "2018-03-16",
Parent = "22.16",
ForumLink = "https://forums.warframe.com/topic/933453-shrine-of-the-eidolon-hotfix-22161/",
ArchiveLink = "https://web.archive.org/web/20220107231226/https://forums.warframe.com/topic/933453-shrine-of-the-eidolon-hotfix-22161/",
ArchiveDate = "2022-01-07",
Timestamp = 1521160764
},
{
Name = "Hotfix 22.16.2",
Link = "Update 22#Hotfix 22.16.2",
Aliases = { "22.16.2" },
ShortName = "H22.16.2",
Date = "2018-03-16",
Parent = "22.16",
ForumLink = "https://forums.warframe.com/topic/933920-shrine-of-the-eidolon-hotfix-22162/",
ArchiveLink = "https://web.archive.org/web/20220107231129/https://forums.warframe.com/topic/933920-shrine-of-the-eidolon-hotfix-22162/",
ArchiveDate = "2022-01-07",
Timestamp = 1521223067
},
{
Name = "Hotfix 22.16.3",
Link = "Update 22#Hotfix 22.16.3",
Aliases = { "22.16.3" },
ShortName = "H22.16.3",
Date = "2018-03-16",
Parent = "22.16",
ForumLink = "https://forums.warframe.com/topic/934023-shrine-of-the-eidolon-hotfix-22163/",
ArchiveLink = "https://web.archive.org/web/20210305023124/https://forums.warframe.com/topic/934023-shrine-of-the-eidolon-hotfix-22163/",
ArchiveDate = "2021-03-05",
Timestamp = 1521235308
},
{
Name = "Hotfix 22.16.4",
Link = "Update 22#Hotfix 22.16.4",
Aliases = { "22.16.4" },
ShortName = "H22.16.4",
Date = "2018-03-20",
Parent = "22.16",
ForumLink = "https://forums.warframe.com/topic/935648-shrine-of-the-eidolon-zephyr-prime-22164/",
ArchiveLink = "https://web.archive.org/web/20220107231038/https://forums.warframe.com/topic/935648-shrine-of-the-eidolon-zephyr-prime-22164/",
ArchiveDate = "2022-01-07",
Timestamp = 1521568714,
Subtitle = "Zephyr Prime"
},
{
Name = "Hotfix 22.16.5",
Link = "Update 22#Hotfix 22.16.5",
Aliases = { "22.16.5" },
ShortName = "H22.16.5",
Date = "2018-03-21",
Parent = "22.16",
ForumLink = "https://forums.warframe.com/topic/936239-shrine-of-the-eidolon-hotfix-22165-221651/",
ArchiveLink = "https://web.archive.org/web/20220107230842/https://forums.warframe.com/topic/936239-shrine-of-the-eidolon-hotfix-22165-221651/",
ArchiveDate = "2022-01-07",
Timestamp = 1521668311
},
{
Name = "Hotfix 22.16.5.1",
Link = "Update 22#Hotfix 22.16.5.1",
Aliases = { "22.16.5.1" },
ShortName = "H22.16.5.1",
Date = "2018-03-21",
Parent = "22.16",
ForumLink = "https://forums.warframe.com/topic/936239-shrine-of-the-eidolon-hotfix-22165-221651/",
ArchiveLink = "https://web.archive.org/web/20220107230842/https://forums.warframe.com/topic/936239-shrine-of-the-eidolon-hotfix-22165-221651/",
ArchiveDate = "2022-01-07",
Timestamp = 1521668311
},
{
Name = "Update 22.17",
Link = "Update 22#Update 22.17",
Aliases = { "22.17.0", "22.17" },
ShortName = "U22.17",
Date = "2018-03-28",
Parent = "22.17",
ForumLink = "https://forums.warframe.com/topic/939097-shrine-of-the-eidolon-update-22170-221701/",
ArchiveLink = "https://web.archive.org/web/20210307035854/https://forums.warframe.com/topic/939097-shrine-of-the-eidolon-update-22170-221701/",
ArchiveDate = "2021-03-07",
Timestamp = 1522262986,
Subtitle = "Inaros Deluxe Ramses Collection"
},
{
Name = "Hotfix 22.17.0.1",
Link = "Update 22#Hotfix 22.17.0.1",
Aliases = { "22.17.0.1" },
ShortName = "H22.17.0.1",
Date = "2018-03-28",
Parent = "22.17",
ForumLink = "https://forums.warframe.com/topic/939097-shrine-of-the-eidolon-update-22170-221701/",
ArchiveLink = "https://web.archive.org/web/20210307035854/https://forums.warframe.com/topic/939097-shrine-of-the-eidolon-update-22170-221701/",
ArchiveDate = "2021-03-07",
Timestamp = 1522262986
},
{
Name = "Hotfix 22.17.1",
Link = "Update 22#Hotfix 22.17.1",
Aliases = { "22.17.1" },
ShortName = "H22.17.1",
Date = "2018-04-05",
Parent = "22.17",
ForumLink = "https://forums.warframe.com/topic/942090-shrine-of-the-eidolon-hotfix-22171-221711/",
ArchiveLink = "https://web.archive.org/web/20201109023804/https://forums.warframe.com/topic/942090-shrine-of-the-eidolon-hotfix-22171-221711/",
ArchiveDate = "2020-11-09",
Timestamp = 1522953069
},
{
Name = "Hotfix 22.17.1.1",
Link = "Update 22#Hotfix 22.17.1.1",
Aliases = { "22.17.1.1" },
ShortName = "H22.17.1.1",
Date = "2018-04-05",
Parent = "22.17",
ForumLink = "https://forums.warframe.com/topic/942090-shrine-of-the-eidolon-hotfix-22171-221711/",
ArchiveLink = "https://web.archive.org/web/20201109023804/https://forums.warframe.com/topic/942090-shrine-of-the-eidolon-hotfix-22171-221711/",
ArchiveDate = "2020-11-09",
Timestamp = 1522953069
},
{
Name = "Hotfix 22.17.2",
Link = "Update 22#Hotfix 22.17.2",
Aliases = { "22.17.2" },
ShortName = "H22.17.2",
Date = "2018-04-10",
Parent = "22.17",
ForumLink = "https://forums.warframe.com/topic/943833-shrine-of-the-eidolon-hotfix-22172/",
ArchiveLink = "https://web.archive.org/web/20220107230630/https://forums.warframe.com/topic/943833-shrine-of-the-eidolon-hotfix-22172/",
ArchiveDate = "2022-01-07",
Timestamp = 1523383154
},
{
Name = "Hotfix 22.17.3",
Link = "Update 22#Hotfix 22.17.3",
Aliases = { "22.17.3" },
ShortName = "H22.17.3",
Date = "2018-04-11",
Parent = "22.17",
ForumLink = "https://forums.warframe.com/topic/944270-shrine-of-the-eidolon-update-22173/",
ArchiveLink = "https://web.archive.org/web/20211118185448/https://forums.warframe.com/topic/944270-shrine-of-the-eidolon-update-22173/",
ArchiveDate = "2021-11-18",
Timestamp = 1523481915
},
{
Name = "Hotfix 22.17.4",
Link = "Update 22#Hotfix 22.17.4",
Aliases = { "22.17.4" },
ShortName = "H22.17.4",
Date = "2018-04-13",
Parent = "22.17",
ForumLink = "https://forums.warframe.com/topic/944966-shrine-of-the-eidolon-hotfix-22174/",
ArchiveLink = "https://web.archive.org/web/20220107230533/https://forums.warframe.com/topic/944966-shrine-of-the-eidolon-hotfix-22174/",
ArchiveDate = "2022-01-07",
Timestamp = 1523649837
},
{
Name = "Update 22.18",
Link = "Update 22#Update 22.18",
Aliases = { "22.18.0", "22.18", "Beasts of the Sanctuary", "BotS" },
ShortName = "U22.18",
Date = "2018-04-20",
Parent = "22.18",
ForumLink = "https://forums.warframe.com/topic/947321-beasts-of-the-sanctuary-update-22180/",
ArchiveLink = "https://web.archive.org/web/20211023042124/https://forums.warframe.com/topic/947321-beasts-of-the-sanctuary-update-22180/",
ArchiveDate = "2021-10-23",
Timestamp = 1524234432,
Subtitle = "Beasts of the Sanctuary"
},
{
Name = "Hotfix 22.18.1",
Link = "Update 22#Hotfix 22.18.1",
Aliases = { "22.18.1" },
ShortName = "H22.18.1",
Date = "2018-04-20",
Parent = "22.18",
ForumLink = "https://forums.warframe.com/topic/947482-beasts-of-the-sanctuary-hotfix-22181/",
ArchiveLink = "https://web.archive.org/web/20210122161659/https://forums.warframe.com/topic/947482-beasts-of-the-sanctuary-hotfix-22181/",
ArchiveDate = "2021-01-22",
Timestamp = 1524250173
},
{
Name = "Hotfix 22.18.2",
Link = "Update 22#Hotfix 22.18.2",
Aliases = { "22.18.2" },
ShortName = "H22.18.2",
Date = "2018-04-20",
Parent = "22.18",
ForumLink = "https://forums.warframe.com/topic/947643-beasts-of-the-sanctuary-hotfix-22182/",
ArchiveLink = "https://web.archive.org/web/20210122223232/https://forums.warframe.com/topic/947643-beasts-of-the-sanctuary-hotfix-22182/",
ArchiveDate = "2021-01-22",
Timestamp = 1524266346
},
{
Name = "Hotfix 22.18.3",
Link = "Update 22#Hotfix 22.18.3",
Aliases = { "22.18.3" },
ShortName = "H22.18.3",
Date = "2018-04-21",
Parent = "22.18",
ForumLink = "https://forums.warframe.com/topic/947977-beasts-of-the-sanctuary-hotfix-22183/",
ArchiveLink = "https://web.archive.org/web/20210507035444/https://forums.warframe.com/topic/947977-beasts-of-the-sanctuary-hotfix-22183/",
ArchiveDate = "2021-05-07",
Timestamp = 1524318973
},
{
Name = "Hotfix 22.18.4",
Link = "Update 22#Hotfix 22.18.4",
Aliases = { "22.18.4" },
ShortName = "H22.18.4",
Date = "2018-04-23",
Parent = "22.18",
ForumLink = "https://forums.warframe.com/topic/949165-beasts-of-the-sanctuary-hotfix-22184/",
ArchiveLink = "https://web.archive.org/web/20210122232534/https://forums.warframe.com/topic/949165-beasts-of-the-sanctuary-hotfix-22184/",
ArchiveDate = "2021-01-22",
Timestamp = 1524510383
},
{
Name = "Hotfix 22.18.5",
Link = "Update 22#Hotfix 22.18.5",
Aliases = { "22.18.5" },
ShortName = "H22.18.5",
Date = "2018-04-24",
Parent = "22.18",
ForumLink = "https://forums.warframe.com/topic/949543-beasts-of-the-sanctuary-hotfix-22185/",
ArchiveLink = "https://web.archive.org/web/20210122215908/https://forums.warframe.com/topic/949543-beasts-of-the-sanctuary-hotfix-22185/",
ArchiveDate = "2021-01-22",
Timestamp = 1524588944
},
{
Name = "Hotfix 22.18.6",
Link = "Update 22#Hotfix 22.18.6",
Aliases = { "22.18.6" },
ShortName = "H22.18.6",
Date = "2018-04-24",
Parent = "22.18",
ForumLink = "https://forums.warframe.com/topic/949603-beasts-of-the-sanctuary-hotfix-22186/",
ArchiveLink = "https://web.archive.org/web/20210122161529/https://forums.warframe.com/topic/949603-beasts-of-the-sanctuary-hotfix-22186/",
ArchiveDate = "2021-01-22",
Timestamp = 1524595308
},
{
Name = "Hotfix 22.18.7",
Link = "Update 22#Hotfix 22.18.7",
Aliases = { "22.18.7" },
ShortName = "H22.18.7",
Date = "2018-04-25",
Parent = "22.18",
ForumLink = "https://forums.warframe.com/topic/950089-beasts-of-the-sanctuary-hotfix-22187/",
ArchiveLink = "https://web.archive.org/web/20220107225132/https://forums.warframe.com/topic/950089-beasts-of-the-sanctuary-hotfix-22187/",
ArchiveDate = "2022-01-07",
Timestamp = 1524690732
},
{
Name = "Hotfix 22.18.8",
Link = "Update 22#Hotfix 22.18.8",
Aliases = { "22.18.8" },
ShortName = "H22.18.8",
Date = "2018-04-28",
Parent = "22.18",
ForumLink = "https://forums.warframe.com/topic/950912-beasts-of-the-sanctuary-hotfix-22188/",
ArchiveLink = "https://web.archive.org/web/20200923170424/https://forums.warframe.com/topic/950912-beasts-of-the-sanctuary-hotfix-22188/",
ArchiveDate = "2020-09-23",
Timestamp = 1524870892
},
{
Name = "Update 22.19",
Link = "Update 22#Update 22.19",
Aliases = { "22.19.0", "22.19" },
ShortName = "U22.19",
Date = "2018-05-02",
Parent = "22.19",
ForumLink = "https://forums.warframe.com/topic/952702-beasts-of-the-sanctuary-update-22190/",
ArchiveLink = "https://web.archive.org/web/20211020234459/https://forums.warframe.com/topic/952702-beasts-of-the-sanctuary-update-22190/",
ArchiveDate = "2021-10-20",
Timestamp = 1525285806,
Subtitle = "TennoGen Round 12"
},
{
Name = "Hotfix 22.19.1",
Link = "Update 22#Hotfix 22.19.1",
Aliases = { "22.19.1" },
ShortName = "H22.19.1",
Date = "2018-05-03",
Parent = "22.19",
ForumLink = "https://forums.warframe.com/topic/953077-beasts-of-the-sanctuary-hotfix-22191/",
ArchiveLink = "https://web.archive.org/web/20201202224128/https://forums.warframe.com/topic/953077-beasts-of-the-sanctuary-hotfix-22191/",
ArchiveDate = "2020-12-02",
Timestamp = 1525369922
},
{
Name = "Update 22.20",
Link = "Update 22#Update 22.20",
Aliases = { "22.20.0", "22.20" },
ShortName = "U22.20",
Date = "2018-05-17",
Parent = "22.20",
ForumLink = "https://forums.warframe.com/topic/957066-beasts-of-the-sanctuary-update-22200/",
ArchiveLink = "https://web.archive.org/web/20211125132732/https://forums.warframe.com/topic/957066-beasts-of-the-sanctuary-update-22200/",
ArchiveDate = "2021-11-25",
Timestamp = 1526568931,
Subtitle = "Saryn Revisted"
},
{
Name = "Hotfix 22.20.1",
Link = "Update 22#Hotfix 22.20.1",
Aliases = { "22.20.1" },
ShortName = "H22.20.1",
Date = "2018-05-17",
Parent = "22.20",
ForumLink = "https://forums.warframe.com/topic/957126-beasts-of-the-sanctuary-hotfix-22201/",
ArchiveLink = "https://web.archive.org/web/20220107224730/https://forums.warframe.com/topic/957126-beasts-of-the-sanctuary-hotfix-22201/",
ArchiveDate = "2022-01-07",
Timestamp = 1526575019
},
{
Name = "Hotfix 22.20.2",
Link = "Update 22#Hotfix 22.20.2",
Aliases = { "22.20.2" },
ShortName = "H22.20.2",
Date = "2018-05-17",
Parent = "22.20",
ForumLink = "https://forums.warframe.com/topic/957339-beasts-of-the-sanctuary-hotfix-22202/",
ArchiveLink = "https://web.archive.org/web/20210513111753/https://forums.warframe.com/topic/957339-beasts-of-the-sanctuary-hotfix-22202/",
ArchiveDate = "2021-05-13",
Timestamp = 1526590931
},
{
Name = "Hotfix 22.20.3",
Link = "Update 22#Hotfix 22.20.3",
Aliases = { "22.20.3" },
ShortName = "H22.20.3",
Date = "2018-05-18",
Parent = "22.20",
ForumLink = "https://forums.warframe.com/topic/957844-beasts-of-the-sanctuary-hotfix-22203/",
ArchiveLink = "https://web.archive.org/web/20210123055007/https://forums.warframe.com/topic/957844-beasts-of-the-sanctuary-hotfix-22203/",
ArchiveDate = "2021-01-23",
Timestamp = 1526673540
},
{
Name = "Hotfix 22.20.4",
Link = "Update 22#Hotfix 22.20.4",
Aliases = { "22.20.4" },
ShortName = "H22.20.4",
Date = "2018-05-22",
Parent = "22.20",
ForumLink = "https://forums.warframe.com/topic/959378-beasts-of-the-sanctuary-hotfix-22204/",
ArchiveLink = "https://web.archive.org/web/20200811074700/https://forums.warframe.com/topic/959378-beasts-of-the-sanctuary-hotfix-22204/",
ArchiveDate = "2020-08-11",
Timestamp = 1527020000
},
{
Name = "Hotfix 22.20.5",
Link = "Update 22#Hotfix 22.20.5",
Aliases = { "22.20.5" },
ShortName = "H22.20.5",
Date = "2018-05-24",
Parent = "22.20",
ForumLink = "https://forums.warframe.com/topic/960082-beasts-of-the-sanctuary-hotfix-22205/",
ArchiveLink = "https://web.archive.org/web/20220107224411/https://forums.warframe.com/topic/960082-beasts-of-the-sanctuary-hotfix-22205/",
ArchiveDate = "2022-01-07",
Timestamp = 1527190399
},
{
Name = "Hotfix 22.20.6",
Link = "Update 22#Hotfix 22.20.6",
Aliases = { "22.20.6" },
ShortName = "H22.20.6",
Date = "2018-05-24",
Parent = "22.20",
ForumLink = "https://forums.warframe.com/topic/960140-beasts-of-the-sanctuary-hotfix-22206/",
ArchiveLink = "https://web.archive.org/web/20201128113910/https://forums.warframe.com/topic/960140-beasts-of-the-sanctuary-hotfix-22206/",
ArchiveDate = "2020-11-28",
Timestamp = 1527199250
},
{
Name = "Hotfix 22.20.7",
Link = "Update 22#Hotfix 22.20.7",
Aliases = { "22.20.7" },
ShortName = "H22.20.7",
Date = "2018-05-30",
Parent = "22.20",
ForumLink = "https://forums.warframe.com/topic/961879-beasts-of-the-sanctuary-hotfix-22207/",
ArchiveLink = "https://web.archive.org/web/20200927154655/https://forums.warframe.com/topic/961879-beasts-of-the-sanctuary-hotfix-22207/",
ArchiveDate = "2020-09-27",
Timestamp = 1527707005
},
{
Name = "Hotfix 22.20.8",
Link = "Update 22#Hotfix 22.20.8",
Aliases = { "22.20.8" },
ShortName = "H22.20.8",
Date = "2018-06-05",
Parent = "22.20",
ForumLink = "https://forums.warframe.com/topic/963818-beasts-of-the-sanctuary-hotfix-22208-222081/",
ArchiveLink = "https://web.archive.org/web/20201111170346/https://forums.warframe.com/topic/963818-beasts-of-the-sanctuary-hotfix-22208-222081/",
ArchiveDate = "2020-11-11",
Timestamp = 1528219204
},
{
Name = "Hotfix 22.20.8.1",
Link = "Update 22#Hotfix 22.20.8.1",
Aliases = { "22.20.8.1" },
ShortName = "H22.20.8.1",
Date = "2018-06-05",
Parent = "22.20",
ForumLink = "https://forums.warframe.com/topic/963818-beasts-of-the-sanctuary-hotfix-22208-222081/",
ArchiveLink = "https://web.archive.org/web/20201111170346/https://forums.warframe.com/topic/963818-beasts-of-the-sanctuary-hotfix-22208-222081/",
ArchiveDate = "2020-11-11",
Timestamp = 1528219204
},
{
Name = "Hotfix 22.20.9",
Link = "Update 22#Hotfix 22.20.9",
Aliases = { "22.20.9" },
ShortName = "H22.20.9",
Date = "2018-06-07",
Parent = "22.20",
ForumLink = "https://forums.warframe.com/topic/964770-beasts-of-the-sanctuary-hotfix-22209-222091-222092/",
ArchiveLink = "https://web.archive.org/web/20201125223955/https://forums.warframe.com/topic/964770-beasts-of-the-sanctuary-hotfix-22209-222091-222092/",
ArchiveDate = "2020-11-25",
Timestamp = 1528392987
},
{
Name = "Hotfix 22.20.9.1",
Link = "Update 22#Hotfix 22.20.9.1",
Aliases = { "22.20.9.1" },
ShortName = "H22.20.9.1",
Date = "2018-06-07",
Parent = "22.20",
ForumLink = "https://forums.warframe.com/topic/964770-beasts-of-the-sanctuary-hotfix-22209-222091-222092/",
ArchiveLink = "https://web.archive.org/web/20201125223955/https://forums.warframe.com/topic/964770-beasts-of-the-sanctuary-hotfix-22209-222091-222092/",
ArchiveDate = "2020-11-25",
Timestamp = 1528392987
},
{
Name = "Hotfix 22.20.9.2",
Link = "Update 22#Hotfix 22.20.9.2",
Aliases = { "22.20.9.2" },
ShortName = "H22.20.9.2",
Date = "2018-06-07",
Parent = "22.20",
ForumLink = "https://forums.warframe.com/topic/964770-beasts-of-the-sanctuary-hotfix-22209-222091-222092/",
ArchiveLink = "https://web.archive.org/web/20201125223955/https://forums.warframe.com/topic/964770-beasts-of-the-sanctuary-hotfix-22209-222091-222092/",
ArchiveDate = "2020-11-25",
Timestamp = 1528392987
},
{
Name = "Update 23.0",
Link = "Update 23#Update 23.0",
Aliases = { "23", "23.0", "The Sacrifice" },
ShortName = "U23",
Date = "2018-06-15",
Parent = "23.0",
ForumLink = "https://forums.warframe.com/topic/967249-the-sacrifice-update-23/",
ArchiveLink = "https://web.archive.org/web/20211122171329/https://forums.warframe.com/topic/967249-the-sacrifice-update-23/",
ArchiveDate = "2021-11-22",
Timestamp = 1529023908,
Subtitle = "The Sacrifice"
},
{
Name = "Hotfix 23.0.1",
Link = "Update 23#Hotfix 23.0.1",
Aliases = { "23.0.1" },
ShortName = "H23.0.1",
Date = "2018-06-15",
Parent = "23.0",
ForumLink = "https://forums.warframe.com/topic/967531-the-sacrifice-hotfix-2301/",
ArchiveLink = "https://web.archive.org/web/20201024210140/https://forums.warframe.com/topic/967531-the-sacrifice-hotfix-2301/",
ArchiveDate = "2020-10-24",
Timestamp = 1529040501
},
{
Name = "Hotfix 23.0.2",
Link = "Update 23#Hotfix 23.0.2",
Aliases = { "23.0.2" },
ShortName = "H23.0.2",
Date = "2018-06-15",
Parent = "23.0",
ForumLink = "https://forums.warframe.com/topic/968321-the-sacrifice-hotfix-2302-23021/",
ArchiveLink = "https://web.archive.org/web/20201112031957/https://forums.warframe.com/topic/968321-the-sacrifice-hotfix-2302-23021/",
ArchiveDate = "2020-11-12",
Timestamp = 1529096138
},
{
Name = "Hotfix 23.0.2.1",
Link = "Update 23#Hotfix 23.0.2.1",
Aliases = { "23.0.2.1" },
ShortName = "H23.0.2.1",
Date = "2018-06-15",
Parent = "23.0",
ForumLink = "https://forums.warframe.com/topic/968321-the-sacrifice-hotfix-2302-23021/",
ArchiveLink = "https://web.archive.org/web/20201112031957/https://forums.warframe.com/topic/968321-the-sacrifice-hotfix-2302-23021/",
ArchiveDate = "2020-11-12",
Timestamp = 1529096138
},
{
Name = "Hotfix 23.0.3",
Link = "Update 23#Hotfix 23.0.3",
Aliases = { "23.0.3" },
ShortName = "H23.0.3",
Date = "2018-06-19",
Parent = "23.0",
ForumLink = "https://forums.warframe.com/topic/971211-the-sacrifice-hotfix-2303-limbo-prime/",
ArchiveLink = "https://web.archive.org/web/20210303031808/https://forums.warframe.com/topic/971211-the-sacrifice-hotfix-2303-limbo-prime/",
ArchiveDate = "2021-03-03",
Timestamp = 1529431098
},
{
Name = "Hotfix 23.0.4",
Link = "Update 23#Hotfix 23.0.4",
Aliases = { "23.0.4" },
ShortName = "H23.0.4",
Date = "2018-06-20",
Parent = "23.0",
ForumLink = "https://forums.warframe.com/topic/971991-the-sacrifice-hotfix-2304/",
ArchiveLink = "https://web.archive.org/web/20200920181201/https://forums.warframe.com/topic/971991-the-sacrifice-hotfix-2304/",
ArchiveDate = "2020-09-20",
Timestamp = 1529527445
},
{
Name = "Hotfix 23.0.5",
Link = "Update 23#Hotfix 23.0.5",
Aliases = { "23.0.5" },
ShortName = "H23.0.5",
Date = "2018-06-22",
Parent = "23.0",
ForumLink = "https://forums.warframe.com/topic/972941-the-sacrifice-hotfix-2305/",
ArchiveLink = "https://web.archive.org/web/20210307033221/https://forums.warframe.com/topic/972941-the-sacrifice-hotfix-2305/",
ArchiveDate = "2021-03-07",
Timestamp = 1529694455
},
{
Name = "Hotfix 23.0.6",
Link = "Update 23#Hotfix 23.0.6",
Aliases = { "23.0.6" },
ShortName = "H23.0.6",
Date = "2018-06-27",
Parent = "23.0",
ForumLink = "https://forums.warframe.com/topic/975040-the-sacrifice-hotfix-2306/",
ArchiveLink = "https://web.archive.org/web/20181108082921/https://forums.warframe.com/topic/975040-the-sacrifice-hotfix-2306/",
ArchiveDate = "2018-11-08",
Timestamp = 1530120190
},
{
Name = "Hotfix 23.0.7",
Link = "Update 23#Hotfix 23.0.7",
Aliases = { "23.0.7" },
ShortName = "H23.0.7",
Date = "2018-06-28",
Parent = "23.0",
ForumLink = "https://forums.warframe.com/topic/975538-the-sacrifice-hotfix-2307/",
ArchiveLink = "https://web.archive.org/web/20180628202806/https://forums.warframe.com/topic/975538-the-sacrifice-hotfix-2307/",
ArchiveDate = "2018-06-28",
Timestamp = 1530217455
},
{
Name = "Hotfix 23.0.8",
Link = "Update 23#Hotfix 23.0.8",
Aliases = { "23.0.8" },
ShortName = "H23.0.8",
Date = "2018-07-09",
Parent = "23.0",
ForumLink = "https://forums.warframe.com/topic/980491-the-sacrifice-hotfix-2308/",
ArchiveLink = "https://web.archive.org/web/20180709200803/https://forums.warframe.com/topic/980491-the-sacrifice-hotfix-2308/",
ArchiveDate = "2018-07-09",
Timestamp = 1531166725
},
{
Name = "Update 23.1",
Link = "Update 23#Update 23.1",
Aliases = { "23.1", "23.1.0" },
ShortName = "U23.1",
Date = "2018-07-18",
Parent = "23.1",
ForumLink = "https://forums.warframe.com/topic/984990-the-sacrifice-update-2310-tennogen-round-13/",
ArchiveLink = "https://web.archive.org/web/20211118000643/https://forums.warframe.com/topic/984990-the-sacrifice-update-2310-tennogen-round-13/",
ArchiveDate = "2021-11-18",
Timestamp = 1531935011,
Subtitle = "TennoGen Round 13"
},
{
Name = "Hotfix 23.1.1",
Link = "Update 23#Hotfix 23.1.1",
Aliases = { "23.1.1" },
ShortName = "H23.1.1",
Date = "2018-07-19",
Parent = "23.1",
ForumLink = "https://forums.warframe.com/topic/985581-the-sacrifice-hotfix-2311/",
ArchiveLink = "https://web.archive.org/web/20180719203252/https://forums.warframe.com/topic/985581-the-sacrifice-hotfix-2311/",
ArchiveDate = "2018-07-19",
Timestamp = 1532032298
},
{
Name = "Hotfix 23.1.2",
Link = "Update 23#Hotfix 23.1.2",
Aliases = { "23.1.2" },
ShortName = "H23.1.2",
Date = "2018-07-24",
Parent = "23.1",
ForumLink = "https://forums.warframe.com/topic/987805-the-sacrifice-prime-vault-hotfix-2312/",
ArchiveLink = "https://web.archive.org/web/20201109020058/https://forums.warframe.com/topic/987805-the-sacrifice-prime-vault-hotfix-2312/",
ArchiveDate = "2020-11-09",
Timestamp = 1532455002,
Subtitle = "Nyx & Rhino Prime Vault"
},
{
Name = "Hotfix 23.1.3",
Link = "Update 23#Hotfix 23.1.3",
Aliases = { "23.1.3" },
ShortName = "H23.1.3",
Date = "2018-07-26",
Parent = "23.1",
ForumLink = "https://forums.warframe.com/topic/988847-the-sacrifice-hotfix-2313/",
ArchiveLink = "https://web.archive.org/web/20210303025817/https://forums.warframe.com/topic/988847-the-sacrifice-hotfix-2313/",
ArchiveDate = "2021-03-03",
Timestamp = 1532639044
},
{
Name = "Update 23.2",
Link = "Update 23#Hotfix 23.2",
Aliases = { "23.2", "23.2.0" },
ShortName = "U23.2",
Date = "2018-08-02",
Parent = "23.2",
ForumLink = "https://forums.warframe.com/topic/991847-the-sacrifice-update-2320/",
ArchiveLink = "https://web.archive.org/web/20211108063402/https://forums.warframe.com/topic/991847-the-sacrifice-update-2320/",
ArchiveDate = "2021-11-08",
Timestamp = 1533222146
},
{
Name = "Hotfix 23.2.1",
Link = "Update 23#Hotfix 23.2.1",
Aliases = { "23.2.1" },
ShortName = "H23.2.1",
Date = "2018-08-03",
Parent = "23.2",
ForumLink = "https://forums.warframe.com/topic/992319-the-sacrifice-hotfix-2321/",
ArchiveLink = "https://web.archive.org/web/20210119093212/https://forums.warframe.com/topic/992319-the-sacrifice-hotfix-2321/",
ArchiveDate = "2021-01-19",
Timestamp = 1533309494
},
{
Name = "Update 23.3",
Link = "Update 23#Update 23.3",
Aliases = { "23.3", "23.3.0" },
ShortName = "U23.3",
Date = "2018-08-09",
Parent = "23.3",
ForumLink = "https://forums.warframe.com/topic/995084-the-sacrifice-update-2330-23301/",
ArchiveLink = "https://web.archive.org/web/20211115074340/https://forums.warframe.com/topic/995084-the-sacrifice-update-2330-23301/",
ArchiveDate = "2021-11-15",
Timestamp = 1533829566,
Subtitle = "Vauban Deluxe Citadel Collection"
},
{
Name = "Hotfix 23.3.0.1",
Link = "Update 23#Hotfix 23.3.0.1",
Aliases = { "23.3.0.1" },
ShortName = "H23.3.0.1",
Date = "2018-08-09",
Parent = "23.3",
ForumLink = "https://forums.warframe.com/topic/995084-the-sacrifice-update-2330-23301/",
ArchiveLink = "https://web.archive.org/web/20211115074340/https://forums.warframe.com/topic/995084-the-sacrifice-update-2330-23301/",
ArchiveDate = "2021-11-15",
Timestamp = 1533829566
},
{
Name = "Hotfix 23.3.1",
Link = "Update 23#Hotfix 23.3.1",
Aliases = { "23.3.1" },
ShortName = "H23.3.1",
Date = "2018-08-09",
Parent = "23.3",
ForumLink = "https://forums.warframe.com/topic/995277-the-sacrifice-hotfix-2331/",
ArchiveLink = "https://web.archive.org/web/20210226020444/https://forums.warframe.com/topic/995277-the-sacrifice-hotfix-2331/",
ArchiveDate = "2021-02-26",
Timestamp = 1533847968
},
{
Name = "Hotfix 23.3.2",
Link = "Update 23#Hotfix 23.3.2",
Aliases = { "23.3.2" },
ShortName = "H23.3.2",
Date = "2018-08-13",
Parent = "23.3",
ForumLink = "https://forums.warframe.com/topic/996876-the-sacrifice-hotfix-2332/",
ArchiveLink = "https://web.archive.org/web/20180814030015/https://forums.warframe.com/topic/996876-the-sacrifice-hotfix-2332/",
ArchiveDate = "2018-08-14",
Timestamp = 1534173029
},
{
Name = "Update 23.4",
Link = "Update 23#Update 23.4",
Aliases = { "23.4", "23.4.0" },
ShortName = "U23.4",
Date = "2018-08-16",
Parent = "23.4",
ForumLink = "https://forums.warframe.com/topic/998116-the-sacrifice-update-2340/",
ArchiveLink = "https://web.archive.org/web/20211118091420/https://forums.warframe.com/topic/998116-the-sacrifice-update-2340/",
ArchiveDate = "2021-11-18",
Timestamp = 1534453612,
Subtitle = "New Minigame: Frame Fighter"
},
{
Name = "Hotfix 23.4.1",
Link = "Update 23#Hotfix 23.4.1",
Aliases = { "23.4.1" },
ShortName = "H23.4.1",
Date = "2018-08-16",
Parent = "23.4",
ForumLink = "https://forums.warframe.com/topic/998190-the-sacrifice-hotfix-2341/",
ArchiveLink = "https://web.archive.org/web/20210303031814/https://forums.warframe.com/topic/998190-the-sacrifice-hotfix-2341/",
ArchiveDate = "2021-03-03",
Timestamp = 1534462847
},
{
Name = "Hotfix 23.4.2",
Link = "Update 23#Hotfix 23.4.2",
Aliases = { "23.4.2" },
ShortName = "H23.4.2",
Date = "2018-08-17",
Parent = "23.4",
ForumLink = "https://forums.warframe.com/topic/998594-the-sacrifice-hotfix-2342/",
ArchiveLink = "https://web.archive.org/web/20210514163954/https://forums.warframe.com/topic/998594-the-sacrifice-hotfix-2342/",
ArchiveDate = "2021-05-14",
Timestamp = 1534536507
},
{
Name = "Update 23.5",
Link = "Update 23#Update 23.5",
Aliases = { "23.5", "23.5.0" },
ShortName = "U23.5",
Date = "2018-08-24",
Parent = "23.5",
ForumLink = "https://forums.warframe.com/topic/1001509-mask-of-the-revenant-update-2350/",
ArchiveLink = "https://web.archive.org/web/20211122132048/https://forums.warframe.com/topic/1001509-mask-of-the-revenant-update-2350/",
ArchiveDate = "2021-11-22",
Timestamp = 1535146749,
Subtitle = "Mask of the Revenant"
},
{
Name = "Update 23.6",
Link = "Update 23#Update 23.6",
Aliases = { "23.6", "23.6.0" },
ShortName = "U23.6",
Date = "2018-08-30",
Parent = "23.6",
ForumLink = "https://forums.warframe.com/topic/1003787-mask-of-the-revenant-update-2360/",
ArchiveLink = "https://web.archive.org/web/20201111214410/https://forums.warframe.com/topic/1003787-mask-of-the-revenant-update-2360/",
ArchiveDate = "2020-11-11",
Timestamp = 1535645082,
Subtitle = "The Pyrus Project"
},
{
Name = "Hotfix 23.6.1",
Link = "Update 23#Hotfix 23.6.1",
Aliases = { "23.6.1" },
ShortName = "U23.6.1",
Date = "2018-08-30",
Parent = "23.6",
ForumLink = "https://forums.warframe.com/topic/1003947-mask-of-the-revenant-hotfix-2361/",
ArchiveLink = "https://web.archive.org/web/20210508083750/https://forums.warframe.com/topic/1003947-mask-of-the-revenant-hotfix-2361/",
ArchiveDate = "2021-05-08",
Timestamp = 1535670255
},
{
Name = "Hotfix 23.6.2",
Link = "Update 23#Hotfix 23.6.2",
Aliases = { "23.6.2" },
ShortName = "U23.6.2",
Date = "2018-08-31",
Parent = "23.6",
ForumLink = "https://forums.warframe.com/topic/1004345-mask-of-the-revenant-hotfix-2362/",
ArchiveLink = "https://web.archive.org/web/20210303025446/https://forums.warframe.com/topic/1004345-mask-of-the-revenant-hotfix-2362/",
ArchiveDate = "2021-03-03",
Timestamp = 1535747363
},
{
Name = "Update 23.7",
Link = "Update 23#Update 23.7",
Aliases = { "23.7", "23.7.0" },
ShortName = "U23.7",
Date = "2018-09-06",
Parent = "23.7",
ForumLink = "https://forums.warframe.com/topic/1006276-mask-of-the-revenant-update-2370/",
ArchiveLink = "https://web.archive.org/web/20200922011638/https://forums.warframe.com/topic/1006276-mask-of-the-revenant-update-2370/",
ArchiveDate = "2020-09-22",
Timestamp = 1536255018,
Subtitle = "New Warframe Augments"
},
{
Name = "Hotfix 23.7.1",
Link = "Update 23#Hotfix 23.7.1",
Aliases = { "23.7.1" },
ShortName = "H3.7.1",
Date = "2018-09-06",
Parent = "23.7",
ForumLink = "https://forums.warframe.com/topic/1006342-mask-of-the-revenant-hotfix-2371/",
ArchiveLink = "https://web.archive.org/web/20211216014741/https://forums.warframe.com/topic/1006342-mask-of-the-revenant-hotfix-2371/",
ArchiveDate = "2021-12-16",
Timestamp = 1536266817
},
{
Name = "Update 23.8",
Link = "Update 23#Update 23.8",
Aliases = { "23.8", "23.8.0" },
ShortName = "U23.8",
Date = "2018-09-12",
Parent = "23.8",
ForumLink = "https://forums.warframe.com/topic/1008095-mask-of-the-revenant-update-2380-23801-23802/",
ArchiveLink = "https://web.archive.org/web/20211203045856/https://forums.warframe.com/topic/1008095-mask-of-the-revenant-update-2380-23801-23802/",
ArchiveDate = "2021-12-03",
Timestamp = 1536777672,
Subtitle = "Nezha Revisited + Nezha Deluxe Empyrean Collection"
},
{
Name = "Hotfix 23.8.0.1",
Link = "Update 23#Hotfix 23.8.0.1",
Aliases = { "23.8.0.1" },
ShortName = "H23.8.0.1",
Date = "2018-09-12",
Parent = "23.8",
ForumLink = "https://forums.warframe.com/topic/1008095-mask-of-the-revenant-update-2380-23801-23802/",
ArchiveLink = "https://web.archive.org/web/20211203045856/https://forums.warframe.com/topic/1008095-mask-of-the-revenant-update-2380-23801-23802/",
ArchiveDate = "2021-12-03",
Timestamp = 1536777672
},
{
Name = "Hotfix 23.8.0.2",
Link = "Update 23#Hotfix 23.8.0.2",
Aliases = { "23.8.0.2" },
ShortName = "H23.8.0.2",
Date = "2018-09-12",
Parent = "23.8",
ForumLink = "https://forums.warframe.com/topic/1008095-mask-of-the-revenant-update-2380-23801-23802/",
ArchiveLink = "https://web.archive.org/web/20211203045856/https://forums.warframe.com/topic/1008095-mask-of-the-revenant-update-2380-23801-23802/",
ArchiveDate = "2021-12-03",
Timestamp = 1536777672
},
{
Name = "Hotfix 23.8.1",
Link = "Update 23#Hotfix 23.8.1",
Aliases = { "23.8.1" },
ShortName = "H23.8.1",
Date = "2018-09-14",
Parent = "23.8",
ForumLink = "https://forums.warframe.com/topic/1008738-mask-of-the-revenant-hotfix-2381/",
ArchiveLink = "https://web.archive.org/web/20210301111142/https://forums.warframe.com/topic/1008738-mask-of-the-revenant-hotfix-2381/",
ArchiveDate = "2021-03-01",
Timestamp = 1536932997
},
{
Name = "Hotfix 23.8.2",
Link = "Update 23#Hotfix 23.8.2",
Aliases = { "23.8.2" },
ShortName = "H23.8.2",
Date = "2018-09-19",
Parent = "23.8",
ForumLink = "https://forums.warframe.com/topic/1010324-mask-of-the-revenant-hotfix-2382/",
ArchiveLink = "https://web.archive.org/web/20190515155642/https://forums.warframe.com/topic/1010324-mask-of-the-revenant-hotfix-2382/",
ArchiveDate = "2019-05-15",
Timestamp = 1537367383
},
{
Name = "Update 23.9",
Link = "Update 23#Update 23.9",
Aliases = { "23.9", "23.9.0" },
ShortName = "U23.9",
Date = "2018-09-25",
Parent = "23.9",
ForumLink = "https://forums.warframe.com/topic/1011982-mask-of-the-revenant-chroma-prime-2390-23901/",
ArchiveLink = "https://web.archive.org/web/20210307034908/https://forums.warframe.com/topic/1011982-mask-of-the-revenant-chroma-prime-2390-23901/",
ArchiveDate = "2021-03-07",
Timestamp = 1537898231,
Subtitle = "Chroma Prime"
},
{
Name = "Hotfix 23.9.0.1",
Link = "Update 23#Hotfix 23.9.0.1",
Aliases = { "23.9.0.1" },
ShortName = "H23.9.0.1",
Date = "2018-09-25",
Parent = "23.9",
ForumLink = "https://forums.warframe.com/topic/1011982-mask-of-the-revenant-chroma-prime-2390-23901/",
ArchiveLink = "https://web.archive.org/web/20210307034908/https://forums.warframe.com/topic/1011982-mask-of-the-revenant-chroma-prime-2390-23901/",
ArchiveDate = "2021-03-07",
Timestamp = 1537898231
},
{
Name = "Hotfix 23.9.1",
Link = "Update 23#Hotfix 23.9.1",
Aliases = { "23.9.1" },
ShortName = "H23.9.1",
Date = "2018-09-27",
Parent = "23.9",
ForumLink = "https://forums.warframe.com/topic/1012649-mask-of-the-revenant-hotfix-2391/",
ArchiveLink = "https://web.archive.org/web/20201024152845/https://forums.warframe.com/topic/1012649-mask-of-the-revenant-hotfix-2391/",
ArchiveDate = "2020-10-24",
Timestamp = 1538069006
},
{
Name = "Update 23.10",
Link = "Update 23#Update 23.10",
Aliases = { "23.10", "23.10.0" },
ShortName = "U23.10",
Date = "2018-10-12",
Parent = "23.10",
ForumLink = "https://forums.warframe.com/topic/1016610-chimera-update-2310/",
ArchiveLink = "https://web.archive.org/web/20211028125810/https://forums.warframe.com/topic/1016610-chimera-update-2310/",
ArchiveDate = "2021-10-28",
Timestamp = 1539352603,
Subtitle = "Chimera"
},
{
Name = "Hotfix 23.10.1",
Link = "Update 23#Hotfix 23.10.1",
Aliases = { "23.10.1" },
ShortName = "H23.10.1",
Date = "2018-10-12",
Parent = "23.10",
ForumLink = "https://forums.warframe.com/topic/1016718-chimera-hotfix-23101/",
ArchiveLink = "https://web.archive.org/web/20201112015516/https://forums.warframe.com/topic/1016718-chimera-hotfix-23101/",
ArchiveDate = "2020-11-12",
Timestamp = 1539362436
},
{
Name = "Hotfix 23.10.2",
Link = "Update 23#Hotfix 23.10.2",
Aliases = { "23.10.2" },
ShortName = "H23.10.2",
Date = "2018-10-12",
Parent = "23.10",
ForumLink = "https://forums.warframe.com/topic/1016966-chimera-hotfix-23102/",
ArchiveLink = "https://web.archive.org/web/20210226013941/https://forums.warframe.com/topic/1016966-chimera-hotfix-23102/",
ArchiveDate = "2021-02-26",
Timestamp = 1539382020
},
{
Name = "Hotfix 23.10.3",
Link = "Update 23#Hotfix 23.10.3",
Aliases = { "23.10.3" },
ShortName = "H23.10.3",
Date = "2018-10-15",
Parent = "23.10",
ForumLink = "https://forums.warframe.com/topic/1018682-chimera-hotfix-23103/",
ArchiveLink = "https://web.archive.org/web/20210228201207/https://forums.warframe.com/topic/1018682-chimera-hotfix-23103/",
ArchiveDate = "2021-02-28",
Timestamp = 1539637993
},
{
Name = "Hotfix 23.10.4",
Link = "Update 23#Hotfix 23.10.4",
Aliases = { "23.10.4" },
ShortName = "H23.10.4",
Date = "2018-10-16",
Parent = "23.10",
ForumLink = "https://forums.warframe.com/topic/1019115-chimera-hotfix-23104/",
ArchiveLink = "https://web.archive.org/web/20210307154833/https://forums.warframe.com/topic/1019115-chimera-hotfix-23104/",
ArchiveDate = "2021-03-07",
Timestamp = 1539723750
},
{
Name = "Hotfix 23.10.5",
Link = "Update 23#Hotfix 23.10.5",
Aliases = { "23.10.5" },
ShortName = "H23.10.5",
Date = "2018-10-18",
Parent = "23.10",
ForumLink = "https://forums.warframe.com/topic/1019687-chimera-hotfix-23105/",
ArchiveLink = "https://web.archive.org/web/20210514180455/https://forums.warframe.com/topic/1019687-chimera-hotfix-23105/",
ArchiveDate = "2021-05-14",
Timestamp = 1539874331
},
{
Name = "Hotfix 23.10.6",
Link = "Update 23#Hotfix 23.10.6",
Aliases = { "23.10.6" },
ShortName = "H23.10.6",
Date = "2018-10-18",
Parent = "23.10",
ForumLink = "https://forums.warframe.com/topic/1019814-chimera-hotfix-23106/",
ArchiveLink = "https://web.archive.org/web/20210304151249/https://forums.warframe.com/topic/1019814-chimera-hotfix-23106/",
ArchiveDate = "2021-03-04",
Timestamp = 1539895112
},
{
Name = "Hotfix 23.10.7",
Link = "Update 23#Hotfix 23.10.7",
Aliases = { "23.10.7" },
ShortName = "H23.10.7",
Date = "2018-10-24",
Parent = "23.10",
ForumLink = "https://forums.warframe.com/topic/1021711-chimera-hotfix-23107/",
ArchiveLink = "https://web.archive.org/web/20210304155701/https://forums.warframe.com/topic/1021711-chimera-hotfix-23107/",
ArchiveDate = "2021-03-04",
Timestamp = 1540391648
},
{
Name = "Hotfix 23.10.8",
Link = "Update 23#Hotfix 23.10.8",
Aliases = { "23.10.8" },
ShortName = "H23.10.8",
Date = "2018-10-25",
Parent = "23.10",
ForumLink = "https://forums.warframe.com/topic/1022013-chimera-hotfix-23108/",
ArchiveLink = "https://web.archive.org/web/20210304165055/https://forums.warframe.com/topic/1022013-chimera-hotfix-23108/",
ArchiveDate = "2021-03-04",
Timestamp = 1540479833
},
{
Name = "Update 24.0",
Link = "Update 24#Update 24.0",
Aliases = { "24", "24.0", "Fortuna" },
ShortName = "U24",
Date = "2018-11-08",
Parent = "24.0",
ForumLink = "https://forums.warframe.com/topic/1025679-fortuna-update-240/",
ArchiveLink = "https://web.archive.org/web/20210304124203/https://forums.warframe.com/topic/1025679-fortuna-update-240/",
ArchiveDate = "2021-03-04",
Timestamp = 1541709980,
Subtitle = "Fortuna"
},
{
Name = "Hotfix 24.0.1",
Link = "Update 24#Hotfix 24.0.1",
Aliases = { "24.0.1" },
ShortName = "H24.0.1",
Date = "2018-11-08",
Parent = "24.0",
ForumLink = "https://forums.warframe.com/topic/1025890-fortuna-hotfix-2401/",
ArchiveLink = "https://web.archive.org/web/20211109201457/https://forums.warframe.com/topic/1025890-fortuna-hotfix-2401/",
ArchiveDate = "2021-11-09",
Timestamp = 1541723599
},
{
Name = "Hotfix 24.0.2",
Link = "Update 24#Hotfix 24.0.2",
Aliases = { "24.0.2" },
ShortName = "H24.0.2",
Date = "2018-11-09",
Parent = "24.0",
ForumLink = "https://forums.warframe.com/topic/1027194-fortuna-hotfix-2402/",
ArchiveLink = "https://web.archive.org/web/20201111212256/https://forums.warframe.com/topic/1027194-fortuna-hotfix-2402/",
ArchiveDate = "2020-11-11",
Timestamp = 1541802192
},
{
Name = "Hotfix 24.0.3",
Link = "Update 24#Hotfix 24.0.3",
Aliases = { "24.0.3" },
ShortName = "H24.0.3",
Date = "2018-11-10",
Parent = "24.0",
ForumLink = "https://forums.warframe.com/topic/1028404-fortuna-hotfix-2403/",
ArchiveLink = "https://web.archive.org/web/20201111205701/https://forums.warframe.com/topic/1028404-fortuna-hotfix-2403/",
ArchiveDate = "2020-11-11",
Timestamp = 1541892400
},
{
Name = "Hotfix 24.0.4",
Link = "Update 24#Hotfix 24.0.4",
Aliases = { "24.0.4" },
ShortName = "H24.0.4",
Date = "2018-11-12",
Parent = "24.0",
ForumLink = "https://forums.warframe.com/topic/1030143-fortuna-hotfix-2404/",
ArchiveLink = "https://web.archive.org/web/20210305050132/https://forums.warframe.com/topic/1030143-fortuna-hotfix-2404/",
ArchiveDate = "2021-03-05",
Timestamp = 1542060880
},
{
Name = "Hotfix 24.0.5",
Link = "Update 24#Hotfix 24.0.5",
Aliases = { "24.0.5" },
ShortName = "H24.0.5",
Date = "2018-11-12",
Parent = "24.0",
ForumLink = "https://forums.warframe.com/topic/1030252-fortuna-hotfix-2405/",
ArchiveLink = "https://web.archive.org/web/20201112001633/https://forums.warframe.com/topic/1030252-fortuna-hotfix-2405/",
ArchiveDate = "2020-11-12",
Timestamp = 1542066892
},
{
Name = "Hotfix 24.0.6",
Link = "Update 24#Hotfix 24.0.6",
Aliases = { "24.0.6" },
ShortName = "H24.0.6",
Date = "2018-11-13",
Parent = "24.0",
ForumLink = "https://forums.warframe.com/topic/1030837-fortuna-hotfix-2406/",
ArchiveLink = "https://web.archive.org/web/20201127055914/https://forums.warframe.com/topic/1030837-fortuna-hotfix-2406/",
ArchiveDate = "2020-11-27",
Timestamp = 1542135498
},
{
Name = "Hotfix 24.0.7",
Link = "Update 24#Hotfix 24.0.7",
Aliases = { "24.0.7" },
ShortName = "H24.0.7",
Date = "2018-11-15",
Parent = "24.0",
ForumLink = "https://forums.warframe.com/topic/1032058-fortuna-hotfix-2407/",
ArchiveLink = "https://web.archive.org/web/20210214235236/https://forums.warframe.com/topic/1032058-fortuna-hotfix-2407/",
ArchiveDate = "2021-02-14",
Timestamp = 1542312507
},
{
Name = "Hotfix 24.0.8",
Link = "Update 24#Hotfix 24.0.8",
Aliases = { "24.0.8" },
ShortName = "H24.0.8",
Date = "2018-11-15",
Parent = "24.0",
ForumLink = "https://forums.warframe.com/topic/1032170-fortuna-hotfix-2408/",
ArchiveLink = "https://web.archive.org/web/20211109201053/https://forums.warframe.com/topic/1032170-fortuna-hotfix-2408/",
ArchiveDate = "2021-11-09",
Timestamp = 1542321270
},
{
Name = "Hotfix 24.0.9",
Link = "Update 24#Hotfix 24.0.9",
Aliases = { "24.0.9" },
ShortName = "H24.0.9",
Date = "2018-11-21",
Parent = "24.0",
ForumLink = "https://forums.warframe.com/topic/1035270-fortuna-hotfix-2409/",
ArchiveLink = "https://web.archive.org/web/20201112042021/https://forums.warframe.com/topic/1035270-fortuna-hotfix-2409/",
ArchiveDate = "2020-11-12",
Timestamp = 1542808916
},
{
Name = "Hotfix 24.0.10",
Link = "Update 24#Hotfix 24.0.10",
Aliases = { "24.0.10" },
ShortName = "H24.0.10",
Date = "2018-11-21",
Parent = "24.0",
ForumLink = "https://forums.warframe.com/topic/1035481-fortuna-hotfix-24010/",
ArchiveLink = "https://web.archive.org/web/20201112030739/https://forums.warframe.com/topic/1035481-fortuna-hotfix-24010/",
ArchiveDate = "2020-11-12",
Timestamp = 1542836292
},
{
Name = "Update 24.1",
Link = "Update 24#Update 24.1",
Aliases = { "24.1", "24.1.0" },
ShortName = "U24.1",
Date = "2018-11-22",
Parent = "24.1",
ForumLink = "https://forums.warframe.com/topic/1035982-fortuna-update-2410-tennogen-round-14/",
ArchiveLink = "https://web.archive.org/web/20201112001521/https://forums.warframe.com/topic/1035982-fortuna-update-2410-tennogen-round-14/",
ArchiveDate = "2020-11-12",
Timestamp = 1542923453,
Subtitle = "TennoGen Round 14"
},
{
Name = "Hotfix 24.1.1",
Link = "Update 24#Hotfix 24.1.1",
Aliases = { "24.1.1" },
ShortName = "H24.1.1",
Date = "2018-11-23",
Parent = "24.1",
ForumLink = "https://forums.warframe.com/topic/1036429-fortuna-hotfix-2411-24111/",
ArchiveLink = "https://web.archive.org/web/20201111204933/https://forums.warframe.com/topic/1036429-fortuna-hotfix-2411-24111/",
ArchiveDate = "2020-11-11",
Timestamp = 1543006351
},
{
Name = "Hotfix 24.1.1.1",
Link = "Update 24#Hotfix 24.1.1.1",
Aliases = { "24.1.1.1" },
ShortName = "H24.1.1.1",
Date = "2018-11-23",
Parent = "24.1",
ForumLink = "https://forums.warframe.com/topic/1036429-fortuna-hotfix-2411-24111/",
ArchiveLink = "https://web.archive.org/web/20201111204933/https://forums.warframe.com/topic/1036429-fortuna-hotfix-2411-24111/",
ArchiveDate = "2020-11-11",
Timestamp = 1543006351
},
{
Name = "Hotfix 24.1.2",
Link = "Update 24#Hotfix 24.1.2",
Aliases = { "24.1.2" },
ShortName = "H24.1.2",
Date = "2018-11-29",
Parent = "24.1",
ForumLink = "https://forums.warframe.com/topic/1038856-fortuna-hotfix-2412-24121/",
ArchiveLink = "https://web.archive.org/web/20201112022218/https://forums.warframe.com/topic/1038856-fortuna-hotfix-2412-24121/",
ArchiveDate = "2020-11-12",
Timestamp = 1543520787
},
{
Name = "Hotfix 24.1.2.1",
Link = "Update 24#Hotfix 24.1.2.1",
Aliases = { "24.1.2.1" },
ShortName = "H24.1.2.1",
Date = "2018-11-29",
Parent = "24.1",
ForumLink = "https://forums.warframe.com/topic/1038856-fortuna-hotfix-2412-24121/",
ArchiveLink = "https://web.archive.org/web/20201112022218/https://forums.warframe.com/topic/1038856-fortuna-hotfix-2412-24121/",
ArchiveDate = "2020-11-12",
Timestamp = 1543520787
},
{
Name = "Hotfix 24.1.3",
Link = "Update 24#Hotfix 24.1.3",
Aliases = { "24.1.3" },
ShortName = "H24.1.3",
Date = "2018-12-05",
Parent = "24.1",
ForumLink = "https://forums.warframe.com/topic/1040912-fortuna-hotfix-2413-24131/",
ArchiveLink = "https://web.archive.org/web/20201128082715/https://forums.warframe.com/topic/1040912-fortuna-hotfix-2413-24131/",
ArchiveDate = "2020-11-28",
Timestamp = 1544036408
},
{
Name = "Hotfix 24.1.3.1",
Link = "Update 24#Hotfix 24.1.3.1",
Aliases = { "24.1.3.1" },
ShortName = "H24.1.3.1",
Date = "2018-12-05",
Parent = "24.1",
ForumLink = "https://forums.warframe.com/topic/1040912-fortuna-hotfix-2413-24131/",
ArchiveLink = "https://web.archive.org/web/20201128082715/https://forums.warframe.com/topic/1040912-fortuna-hotfix-2413-24131/",
ArchiveDate = "2020-11-28",
Timestamp = 1544036408
},
{
Name = "Hotfix 24.1.3.2",
Link = "Update 24#Hotfix 24.1.3.2",
Aliases = { "24.1.3.2" },
ShortName = "H24.1.3.2",
Date = "2018-12-06",
Parent = "24.1",
ForumLink = "https://forums.warframe.com/topic/1041297-fortuna-hotfix-24132/",
ArchiveLink = "https://web.archive.org/web/20201125091930/https://forums.warframe.com/topic/1041297-fortuna-hotfix-24132/",
ArchiveDate = "2020-11-25",
Timestamp = 1544133358
},
{
Name = "Hotfix 24.1.4",
Link = "Update 24#Hotfix 24.1.4",
Aliases = { "24.1.4" },
ShortName = "H24.1.4",
Date = "2018-12-10",
Parent = "24.1",
ForumLink = "https://forums.warframe.com/topic/1042413-fortuna-hotfix-2414/",
ArchiveLink = "https://web.archive.org/web/20201112013655/https://forums.warframe.com/topic/1042413-fortuna-hotfix-2414/",
ArchiveDate = "2020-11-12",
Timestamp = 1544472554
},
{
Name = "Hotfix 24.1.5",
Link = "Update 24#Hotfix 24.1.5",
Aliases = { "24.1.5" },
ShortName = "H24.1.5",
Date = "2018-12-13",
Parent = "24.1",
ForumLink = "https://forums.warframe.com/topic/1043389-fortuna-hotfix-2415/",
ArchiveLink = "https://web.archive.org/web/20201108100626/https://forums.warframe.com/topic/1043389-fortuna-hotfix-2415/",
ArchiveDate = "2020-11-08",
Timestamp = 1544720251
},
{
Name = "Update 24.2",
Link = "Update 24#Update 24.2",
Aliases = { "24.2", "24.2.0" },
ShortName = "U24.2",
Date = "2018-12-18",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1044890-fortuna-the-profit-taker-update-242/",
ArchiveLink = "https://web.archive.org/web/20210718004122/https://forums.warframe.com/topic/1044890-fortuna-the-profit-taker-update-242/",
ArchiveDate = "2021-07-18",
Timestamp = 1545141554,
Subtitle = "The Profit-Taker"
},
{
Name = "Hotfix 24.2.1",
Link = "Update 24#Hotfix 24.2.1",
Aliases = { "24.2.1" },
ShortName = "H24.2.1",
Date = "2018-12-18",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1044968-fortuna-hotfix-2421/",
ArchiveLink = "https://web.archive.org/web/20211109175353/https://forums.warframe.com/topic/1044968-fortuna-hotfix-2421/",
ArchiveDate = "2021-11-09",
Timestamp = 1545148210
},
{
Name = "Hotfix 24.2.2",
Link = "Update 24#Hotfix 24.2.2",
Aliases = { "24.2.2" },
ShortName = "H24.2.2",
Date = "2018-12-18",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1045159-fortuna-mesa-prime-hotfix-2422/",
ArchiveLink = "https://web.archive.org/web/20210227154716/https://forums.warframe.com/topic/1045159-fortuna-mesa-prime-hotfix-2422/",
ArchiveDate = "2021-02-27",
Timestamp = 1545159516,
Subtitle = "Mesa Prime"
},
{
Name = "Hotfix 24.2.3",
Link = "Update 24#Hotfix 24.2.3",
Aliases = { "24.2.3" },
ShortName = "H24.2.3",
Date = "2018-12-19",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1045817-fortuna-mesa-prime-hotfix-2423/",
ArchiveLink = "https://web.archive.org/web/20210119033731/https://forums.warframe.com/topic/1045817-fortuna-mesa-prime-hotfix-2423/",
ArchiveDate = "2021-01-19",
Timestamp = 1545234781
},
{
Name = "Hotfix 24.2.4",
Link = "Update 24#Hotfix 24.2.4",
Aliases = { "24.2.4" },
ShortName = "H24.2.4",
Date = "2018-12-19",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1045982-fortuna-hotfix-2424/",
ArchiveLink = "https://web.archive.org/web/20210303122524/https://forums.warframe.com/topic/1045982-fortuna-hotfix-2424/",
ArchiveDate = "2021-03-03",
Timestamp = 1545251707
},
{
Name = "Hotfix 24.2.5",
Link = "Update 24#Hotfix 24.2.5",
Aliases = { "24.2.5" },
ShortName = "H24.2.5",
Date = "2018-12-20",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1046112-fortuna-hotfix-2425/",
ArchiveLink = "https://web.archive.org/web/20201127065152/https://forums.warframe.com/topic/1046112-fortuna-hotfix-2425/",
ArchiveDate = "2020-11-27",
Timestamp = 1545266707
},
{
Name = "Hotfix 24.2.6",
Link = "Update 24#Hotfix 24.2.6",
Aliases = { "24.2.6" },
ShortName = "H24.2.6",
Date = "2018-12-20",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1046637-fortuna-hotfix-2426/",
ArchiveLink = "https://web.archive.org/web/20210226005947/https://forums.warframe.com/topic/1046637-fortuna-hotfix-2426/",
ArchiveDate = "2021-02-26",
Timestamp = 1545343556
},
{
Name = "Hotfix 24.2.7",
Link = "Update 24#Hotfix 24.2.7",
Aliases = { "24.2.7" },
ShortName = "H24.2.7",
Date = "2018-01-09",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1052727-fortuna-hotfix-2427-24271/",
ArchiveLink = "https://web.archive.org/web/20201108000312/https://forums.warframe.com/topic/1052727-fortuna-hotfix-2427-24271/",
ArchiveDate = "2020-11-08",
Timestamp = 1547059038
},
{
Name = "Hotfix 24.2.7.1",
Link = "Update 24#Hotfix 24.2.7.1",
Aliases = { "24.2.7.1" },
ShortName = "H24.2.7.1",
Date = "2019-01-09",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1052727-fortuna-hotfix-2427-24271/",
ArchiveLink = "https://web.archive.org/web/20201108000312/https://forums.warframe.com/topic/1052727-fortuna-hotfix-2427-24271/",
ArchiveDate = "2020-11-08",
Timestamp = 1547059038
},
{
Name = "Hotfix 24.2.8",
Link = "Update 24#Hotfix 24.2.8",
Aliases = { "24.2.8" },
ShortName = "H24.2.8",
Date = "2019-01-15",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1054314-fortuna-hotfix-2428/",
ArchiveLink = "https://web.archive.org/web/20210122155315/https://forums.warframe.com/topic/1054314-fortuna-hotfix-2428/",
ArchiveDate = "2021-01-22",
Timestamp = 1547563614
},
{
Name = "Hotfix 24.2.9",
Link = "Update 24#Hotfix 24.2.9",
Aliases = { "24.2.9" },
ShortName = "H24.2.9",
Date = "2019-01-18",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1055092-fortuna-hotfix-2429-24291/",
ArchiveLink = "https://web.archive.org/web/20210721002406/https://forums.warframe.com/topic/1055092-fortuna-hotfix-2429-24291/",
ArchiveDate = "2021-07-21",
Timestamp = 1547820999
},
{
Name = "Hotfix 24.2.9.1",
Link = "Update 24#Hotfix 24.2.9.1",
Aliases = { "24.2.9.1" },
ShortName = "H24.2.9.1",
Date = "2019-01-18",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1055092-fortuna-hotfix-2429-24291/",
ArchiveLink = "https://web.archive.org/web/20210721002406/https://forums.warframe.com/topic/1055092-fortuna-hotfix-2429-24291/",
ArchiveDate = "2021-07-21",
Timestamp = 1547820999
},
{
Name = "Hotfix 24.2.10",
Link = "Update 24#Hotfix 24.2.10",
Aliases = { "24.2.10" },
ShortName = "H24.2.10",
Date = "2019-01-23",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1056534-fortuna-hotfix-24210/",
ArchiveLink = "https://web.archive.org/web/20201111231041/https://forums.warframe.com/topic/1056534-fortuna-hotfix-24210/",
ArchiveDate = "2020-11-11",
Timestamp = 1548274095
},
{
Name = "Hotfix 24.2.11",
Link = "Update 24#Hotfix 24.2.11",
Aliases = { "24.2.11" },
ShortName = "H24.2.11",
Date = "2019-01-29",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1057949-fortuna-hotfix-24211/",
ArchiveLink = "https://web.archive.org/web/20201130232503/https://forums.warframe.com/topic/1057949-fortuna-hotfix-24211/",
ArchiveDate = "2020-11-30",
Timestamp = 1548788488
},
{
Name = "Hotfix 24.2.12",
Link = "Update 24#Hotfix 24.2.12",
Aliases = { "24.2.12" },
ShortName = "H24.2.12",
Date = "2019-01-30",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1058298-fortuna-hotfix-24212/",
ArchiveLink = "https://web.archive.org/web/20201125091238/https://forums.warframe.com/topic/1058298-fortuna-hotfix-24212/",
ArchiveDate = "2020-11-25",
Timestamp = 1548879083
},
{
Name = "Hotfix 24.2.13",
Link = "Update 24#Hotfix 24.2.13",
Aliases = { "24.2.13" },
ShortName = "H24.2.13",
Date = "2019-02-06",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1059874-fortuna-hotfix-24213/",
ArchiveLink = "https://web.archive.org/web/20211109195514/https://forums.warframe.com/topic/1059874-fortuna-hotfix-24213/",
ArchiveDate = "2021-11-09",
Timestamp = 1549479564
},
{
Name = "Hotfix 24.2.14",
Link = "Update 24#Hotfix 24.2.14",
Aliases = { "24.2.14" },
ShortName = "H24.2.14",
Date = "2019-02-08",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1060398-fortuna-hotfix-24214/",
ArchiveLink = "https://web.archive.org/web/20211109195605/https://forums.warframe.com/topic/1060398-fortuna-hotfix-24214/",
ArchiveDate = "2021-11-09",
Timestamp = 1549667654
},
{
Name = "Hotfix 24.2.15",
Link = "Update 24#Hotfix 24.2.15",
Aliases = { "24.2.15" },
ShortName = "H24.2.15",
Date = "2019-02-15",
Parent = "24.2",
ForumLink = "https://forums.warframe.com/topic/1061972-fortuna-hotfix-24215/",
ArchiveLink = "https://web.archive.org/web/20201112020255/https://forums.warframe.com/topic/1061972-fortuna-hotfix-24215/",
ArchiveDate = "2020-11-12",
Timestamp = 1550244312
},
{
Name = "Update 24.3",
Link = "Update 24#Update 24.3",
Aliases = { "24.3" },
ShortName = "U24.3",
Date = "2019-02-27",
Parent = "24.3",
ForumLink = "https://forums.warframe.com/topic/1064591-fortuna-update-2430-nightwave/",
ArchiveLink = "https://web.archive.org/web/20201107230233/https://forums.warframe.com/topic/1064591-fortuna-update-2430-nightwave/",
ArchiveDate = "2020-11-07",
Timestamp = 1551293901,
Subtitle = "Nightwave"
},
{
Name = "Hotfix 24.3.1",
Link = "Update 24#Hotfix 24.3.1",
Aliases = { "24.3.1" },
ShortName = "H24.3.1",
Date = "2019-02-27",
Parent = "24.3",
ForumLink = "https://forums.warframe.com/topic/1064720-fortuna-hotfix-2431-nightwave/",
ArchiveLink = "https://web.archive.org/web/20201107225908/https://forums.warframe.com/topic/1064720-fortuna-hotfix-2431-nightwave/",
ArchiveDate = "2020-11-07",
Timestamp = 1551309618
},
{
Name = "Hotfix 24.3.2",
Link = "Update 24#Hotfix 24.3.2",
Aliases = { "24.3.2" },
ShortName = "H24.3.2",
Date = "2019-02-28",
Parent = "24.3",
ForumLink = "https://forums.warframe.com/topic/1065095-fortuna-hotfix-2432-nightwave/",
ArchiveLink = "https://web.archive.org/web/20211109195636/https://forums.warframe.com/topic/1065095-fortuna-hotfix-2432-nightwave/",
ArchiveDate = "2021-11-09",
Timestamp = 1551384877
},
{
Name = "Hotfix 24.3.3",
Link = "Update 24#Hotfix 24.3.3",
Aliases = { "24.3.3" },
ShortName = "H24.3.3",
Date = "2019-03-01",
Parent = "24.3",
ForumLink = "https://forums.warframe.com/topic/1065360-fortuna-hotfix-2433-nightwave/",
ArchiveLink = "https://web.archive.org/web/20211109195703/https://forums.warframe.com/topic/1065360-fortuna-hotfix-2433-nightwave/",
ArchiveDate = "2021-11-09",
Timestamp = 1551456858
},
{
Name = "Update 24.4",
Link = "Update 24#Update 24.4",
Aliases = { "24.4", "24.4.0" },
ShortName = "U24.4",
Date = "2019-03-08",
Parent = "24.4",
ForumLink = "https://forums.warframe.com/topic/1067397-buried-debts-update-2440/",
ArchiveLink = "https://web.archive.org/web/20201107230743/https://forums.warframe.com/topic/1067397-buried-debts-update-2440/",
ArchiveDate = "2020-11-07",
Timestamp = 1552010483,
Subtitle = "Operation: Buried Debts"
},
{
Name = "Hotfix 24.4.1",
Link = "Update 24#Hotfix 24.4.1",
Aliases = { "24.4.1" },
ShortName = "H24.4.1",
Date = "2019-03-08",
Parent = "24.4",
ForumLink = "https://forums.warframe.com/topic/1067531-buried-debts-hotfix-2441/",
ArchiveLink = "https://web.archive.org/web/20201112031715/https://forums.warframe.com/topic/1067531-buried-debts-hotfix-2441/",
ArchiveDate = "2020-11-12",
Timestamp = 1552021281
},
{
Name = "Hotfix 24.4.2",
Link = "Update 24#Hotfix 24.4.2",
Aliases = { "24.4.2" },
ShortName = "H24.4.2",
Date = "2019-03-08",
Parent = "24.4",
ForumLink = "https://forums.warframe.com/topic/1068218-buried-debts-hotfix-2442/",
ArchiveLink = "https://web.archive.org/web/20210116130051/https://forums.warframe.com/topic/1068218-buried-debts-hotfix-2442/",
ArchiveDate = "2021-01-16",
Timestamp = 1552087535
},
{
Name = "Hotfix 24.4.3",
Link = "Update 24#Hotfix 24.4.3",
Aliases = { "24.4.3" },
ShortName = "H24.4.3",
Date = "2019-03-09",
Parent = "24.4",
ForumLink = "https://forums.warframe.com/topic/1068816-buried-debts-hotfix-2443/",
ArchiveLink = "https://web.archive.org/web/20210303124639/https://forums.warframe.com/topic/1068816-buried-debts-hotfix-2443/",
ArchiveDate = "2021-03-03",
Timestamp = 1552166272
},
{
Name = "Hotfix 24.4.4",
Link = "Update 24#Hotfix 24.4.4",
Aliases = { "24.4.4" },
ShortName = "H24.4.4",
Date = "2019-03-11",
Parent = "24.4",
ForumLink = "https://forums.warframe.com/topic/1069857-buried-debts-hotfix-2444-24441/",
ArchiveLink = "https://web.archive.org/web/20211109195743/https://forums.warframe.com/topic/1069857-buried-debts-hotfix-2444-24441/",
ArchiveDate = "2021-11-09",
Timestamp = 1552338094
},
{
Name = "Hotfix 24.4.4.1",
Link = "Update 24#Hotfix 24.4.4.1",
Aliases = { "24.4.4.1" },
ShortName = "H24.4.4.1",
Date = "2019-03-11",
Parent = "24.4",
ForumLink = "https://forums.warframe.com/topic/1069857-buried-debts-hotfix-2444-24441/",
ArchiveLink = "https://web.archive.org/web/20211109195743/https://forums.warframe.com/topic/1069857-buried-debts-hotfix-2444-24441/",
ArchiveDate = "2021-11-09",
Timestamp = 1552338094
},
{
Name = "Update 24.5",
Link = "Update 24#Update 24.5",
Aliases = { "24.5", "24.5.0" },
ShortName = "U24.5",
Date = "2019-03-14",
Parent = "24.5",
ForumLink = "https://forums.warframe.com/topic/1070992-buried-debts-update-2450/",
ArchiveLink = "https://web.archive.org/web/20210119034118/https://forums.warframe.com/topic/1070992-buried-debts-update-2450/",
ArchiveDate = "2021-01-19",
Timestamp = 1552597572,
Subtitle = "Operation: Buried Debts - Deck 12 & TennoGen Round 15"
},
{
Name = "Hotfix 24.5.1",
Link = "Update 24#Hotfix 24.5.1",
Aliases = { "24.5.1" },
ShortName = "H24.5.1",
Date = "2019-03-15",
Parent = "24.5",
ForumLink = "https://forums.warframe.com/topic/1071547-buried-debts-hotfix-2451/",
ArchiveLink = "https://web.archive.org/web/20201112034616/https://forums.warframe.com/topic/1071547-buried-debts-hotfix-2451/",
ArchiveDate = "2020-11-12",
Timestamp = 1552684097
},
{
Name = "Hotfix 24.5.2",
Link = "Update 24#Hotfix 24.5.2",
Aliases = { "24.5.2" },
ShortName = "H24.5.2",
Date = "2019-03-18",
Parent = "24.5",
ForumLink = "https://forums.warframe.com/topic/1072987-buried-debts-hotfix-2452/",
ArchiveLink = "https://web.archive.org/web/20210119030114/https://forums.warframe.com/topic/1072987-buried-debts-hotfix-2452/",
ArchiveDate = "2021-01-19",
Timestamp = 1552948992
},
{
Name = "Hotfix 24.5.3",
Link = "Update 24#Hotfix 24.5.3",
Aliases = { "24.5.3" },
ShortName = "H24.5.3",
Date = "2019-03-19",
Parent = "24.5",
ForumLink = "https://forums.warframe.com/topic/1073342-buried-debts-hotfix-2453/",
ArchiveLink = "https://web.archive.org/web/20210228042408/https://forums.warframe.com/topic/1073342-buried-debts-hotfix-2453/",
ArchiveDate = "2021-02-28",
Timestamp = 1553019192
},
{
Name = "Hotfix 24.5.4",
Link = "Update 24#Hotfix 24.5.4",
Aliases = { "24.5.4" },
ShortName = "H24.5.4",
Date = "2019-03-20",
Parent = "24.5",
ForumLink = "https://forums.warframe.com/topic/1073818-buried-debts-hotfix-2454-24541/",
ArchiveLink = "https://web.archive.org/web/20210303120459/https://forums.warframe.com/topic/1073818-buried-debts-hotfix-2454-24541/",
ArchiveDate = "2021-03-03",
Timestamp = 1553102376
},
{
Name = "Hotfix 24.5.4.1",
Link = "Update 24#Hotfix 24.5.4.1",
Aliases = { "24.5.4.1" },
ShortName = "H24.5.4.1",
Date = "2019-03-20",
Parent = "24.5",
ForumLink = "https://forums.warframe.com/topic/1073818-buried-debts-hotfix-2454-24541/",
ArchiveLink = "https://web.archive.org/web/20210303120459/https://forums.warframe.com/topic/1073818-buried-debts-hotfix-2454-24541/",
ArchiveDate = "2021-03-03",
Timestamp = 1553102376
},
{
Name = "Hotfix 24.5.5",
Link = "Update 24#Hotfix 24.5.5",
Aliases = { "24.5.5" },
ShortName = "H24.5.5",
Date = "2019-03-25",
Parent = "24.5",
ForumLink = "https://forums.warframe.com/topic/1076040-buried-debts-hotfix-2455/",
ArchiveLink = "https://web.archive.org/web/20210301232146/https://forums.warframe.com/topic/1076040-buried-debts-hotfix-2455/",
ArchiveDate = "2021-03-01",
Timestamp = 1553548911
},
{
Name = "Hotfix 24.5.6",
Link = "Update 24#Hotfix 24.5.6",
Aliases = { "24.5.6" },
ShortName = "H24.5.6",
Date = "2019-03-26",
Parent = "24.5",
ForumLink = "https://forums.warframe.com/topic/1076435-buried-debts-hotfix-2456/",
ArchiveLink = "https://web.archive.org/web/20210303114740/https://forums.warframe.com/topic/1076435-buried-debts-hotfix-2456/",
ArchiveDate = "2021-03-03",
Timestamp = 1553632949
},
{
Name = "Hotfix 24.5.7",
Link = "Update 24#Hotfix 24.5.7",
Aliases = { "24.5.7" },
ShortName = "H24.5.7",
Date = "2019-03-28",
Parent = "24.5",
ForumLink = "https://forums.warframe.com/topic/1077145-buried-debts-hotfix-2457/",
ArchiveLink = "https://web.archive.org/web/20210303115146/https://forums.warframe.com/topic/1077145-buried-debts-hotfix-2457/",
ArchiveDate = "2021-03-03",
Timestamp = 1553805379
},
{
Name = "Hotfix 24.5.8",
Link = "Update 24#Hotfix 24.5.8",
Aliases = { "24.5.8" },
ShortName = "H24.5.8",
Date = "2019-04-02",
Parent = "24.5",
ForumLink = "https://forums.warframe.com/topic/1078777-equinox-prime-hotfix-2458-24581/",
ArchiveLink = "https://web.archive.org/web/20201112000509/https://forums.warframe.com/topic/1078777-equinox-prime-hotfix-2458-24581/",
ArchiveDate = "2020-11-12",
Timestamp = 1554227965,
Subtitle = "Equinox Prime"
},
{
Name = "Hotfix 24.5.8.1",
Link = "Update 24#Hotfix 24.5.8.1",
Aliases = { "24.5.8.1" },
ShortName = "H24.5.8.1",
Date = "2019-04-02",
Parent = "24.5",
ForumLink = "https://forums.warframe.com/topic/1078777-equinox-prime-hotfix-2458-24581/",
ArchiveLink = "https://web.archive.org/web/20201112000509/https://forums.warframe.com/topic/1078777-equinox-prime-hotfix-2458-24581/",
ArchiveDate = "2020-11-12",
Timestamp = 1554227965
},
{
Name = "Update 24.6",
Link = "Update 24#Update 24.6",
Aliases = { "24.6", "24.6.0" },
ShortName = "U24.6",
Date = "2019-04-04",
Parent = "24.6",
ForumLink = "https://forums.warframe.com/topic/1079621-plains-of-eidolon-remaster-update-2460/",
ArchiveLink = "https://web.archive.org/web/20210116190937/https://forums.warframe.com/topic/1079621-plains-of-eidolon-remaster-update-2460/",
ArchiveDate = "2021-01-16",
Timestamp = 1554419654,
Subtitle = "Plains of Eidolon Remaster"
},
{
Name = "Hotfix 24.6.1",
Link = "Update 24#Hotfix 24.6.1",
Aliases = { "24.6.1" },
ShortName = "H24.6.1",
Date = "2019-04-05",
Parent = "24.6",
ForumLink = "https://forums.warframe.com/topic/1079735-plains-of-eidolon-remaster-hotfix-2461/",
ArchiveLink = "https://web.archive.org/web/20201111232832/https://forums.warframe.com/topic/1079735-plains-of-eidolon-remaster-hotfix-2461/",
ArchiveDate = "2020-11-11",
Timestamp = 1554429614
},
{
Name = "Hotfix 24.6.2",
Link = "Update 24#Hotfix 24.6.2",
Aliases = { "24.6.2" },
ShortName = "H24.6.2",
Date = "2019-04-05",
Parent = "24.6",
ForumLink = "https://forums.warframe.com/topic/1080295-plains-of-eidolon-remaster-hotfix-2462-24621/",
ArchiveLink = "https://web.archive.org/web/20201111225320/https://forums.warframe.com/topic/1080295-plains-of-eidolon-remaster-hotfix-2462-24621/",
ArchiveDate = "2020-11-11",
Timestamp = 1554497412
},
{
Name = "Hotfix 24.6.2.1",
Link = "Update 24#Hotfix 24.6.2.1",
Aliases = { "24.6.2.1" },
ShortName = "H24.6.2.1",
Date = "2019-04-05",
Parent = "24.6",
ForumLink = "https://forums.warframe.com/topic/1080295-plains-of-eidolon-remaster-hotfix-2462-24621/",
ArchiveLink = "https://web.archive.org/web/20201111225320/https://forums.warframe.com/topic/1080295-plains-of-eidolon-remaster-hotfix-2462-24621/",
ArchiveDate = "2020-11-11",
Timestamp = 1554497412
},
{
Name = "Update 24.7",
Link = "Update 24#Update 24.7",
Aliases = { "24.7", "24.7.0" },
ShortName = "U24.7",
Date = "2019-04-10",
Parent = "24.7",
ForumLink = "https://forums.warframe.com/topic/1082779-plains-of-eidolon-remaster-update-2470-24701/",
ArchiveLink = "https://web.archive.org/web/20201113131612/https://forums.warframe.com/topic/1082779-plains-of-eidolon-remaster-update-2470-24701/",
ArchiveDate = "2020-11-13",
Timestamp = 1554927732,
Subtitle = "Atlas Deluxe Karst Collection + New Warframe Augments"
},
{
Name = "Hotfix 24.7.0.1",
Link = "Update 24#Hotfix 24.7.0.1",
Aliases = { "24.7.0.1" },
ShortName = "H24.7.0.1",
Date = "2019-04-10",
Parent = "24.7",
ForumLink = "https://forums.warframe.com/topic/1082779-plains-of-eidolon-remaster-update-2470-24701/",
ArchiveLink = "https://web.archive.org/web/20201113131612/https://forums.warframe.com/topic/1082779-plains-of-eidolon-remaster-update-2470-24701/",
ArchiveDate = "2020-11-13",
Timestamp = 1554927732
},
{
Name = "Hotfix 24.7.1",
Link = "Update 24#Hotfix 24.7.1",
Aliases = { "24.7.1" },
ShortName = "H24.7.1",
Date = "2019-04-11",
Parent = "24.7",
ForumLink = "https://forums.warframe.com/topic/1083262-plains-of-eidolon-remaster-hotfix-2471/",
ArchiveLink = "https://web.archive.org/web/20210303152001/https://forums.warframe.com/topic/1083262-plains-of-eidolon-remaster-hotfix-2471/",
ArchiveDate = "2021-03-03",
Timestamp = 1555013129
},
{
Name = "Hotfix 24.7.2",
Link = "Update 24#Hotfix 24.7.2",
Aliases = { "24.7.2" },
ShortName = "H24.7.2",
Date = "2019-04-17",
Parent = "24.7",
ForumLink = "https://forums.warframe.com/topic/1085611-plains-of-eidolon-remaster-hotfix-2472/",
ArchiveLink = "https://web.archive.org/web/20201124155056/https://forums.warframe.com/topic/1085611-plains-of-eidolon-remaster-hotfix-2472/",
ArchiveDate = "2020-11-24",
Timestamp = 1555530376
},
{
Name = "Hotfix 24.7.3",
Link = "Update 24#Hotfix 24.7.3",
Aliases = { "24.7.3" },
ShortName = "H24.7.3",
Date = "2019-04-22",
Parent = "24.7",
ForumLink = "https://forums.warframe.com/topic/1087205-plains-of-eidolon-remaster-hotfix-2473/",
ArchiveLink = "https://web.archive.org/web/20201127045921/https://forums.warframe.com/topic/1087205-plains-of-eidolon-remaster-hotfix-2473/",
ArchiveDate = "2020-11-27",
Timestamp = 1555961487
},
{
Name = "Update 24.8",
Link = "Update 24#Update 24.8",
Aliases = { "24.8", "24.8.0" },
ShortName = "U24.8",
Date = "2019-04-24",
Parent = "24.8",
ForumLink = "https://forums.warframe.com/topic/1087864-plains-of-eidolon-remaster-update-2480/",
ArchiveLink = "https://web.archive.org/web/20211106175349/https://forums.warframe.com/topic/1087864-plains-of-eidolon-remaster-update-2480/",
ArchiveDate = "2021-11-06",
Timestamp = 1556137215,
Subtitle = "Arbitration 'Iteration 1' Changes"
},
{
Name = "Hotfix 24.8.1",
Link = "Update 24#Hotfix 24.8.1",
Aliases = { "24.8.1" },
ShortName = "H24.8.1",
Date = "2019-04-26",
Parent = "24.8",
ForumLink = "https://forums.warframe.com/topic/1088451-plains-of-eidolon-remaster-hotfix-2481/",
ArchiveLink = "https://web.archive.org/web/20210228201527/https://forums.warframe.com/topic/1088451-plains-of-eidolon-remaster-hotfix-2481/",
ArchiveDate = "2021-02-28",
Timestamp = 1556303896
},
{
Name = "Hotfix 24.8.2",
Link = "Update 24#Hotfix 24.8.2",
Aliases = { "24.8.2" },
ShortName = "H24.8.2",
Date = "2019-04-30",
Parent = "24.8",
ForumLink = "https://forums.warframe.com/topic/1089501-plains-of-eidolon-remaster-hotfix-2482/",
ArchiveLink = "https://web.archive.org/web/20210303020832/https://forums.warframe.com/topic/1089501-plains-of-eidolon-remaster-hotfix-2482/",
ArchiveDate = "2021-03-03",
Timestamp = 1556647163
},
{
Name = "Hotfix 24.8.3",
Link = "Update 24#Hotfix 24.8.3",
Aliases = { "24.8.3" },
ShortName = "H24.8.3",
Date = "2019-05-10",
Parent = "24.8",
ForumLink = "https://forums.warframe.com/topic/1092041-plains-of-eidolon-remaster-hotfix-2483/",
ArchiveLink = "https://web.archive.org/web/20190518032312/https://forums.warframe.com/topic/1092041-plains-of-eidolon-remaster-hotfix-2483/",
ArchiveDate = "2019-05-18",
Timestamp = 1557511104
},
{
Name = "Update 25.0",
Link = "Update 25#Update 25.0",
Aliases = { "25", "25.0", "The Jovian Concord" },
ShortName = "U25",
Date = "2019-05-22",
Parent = "25.0",
ForumLink = "https://forums.warframe.com/topic/1094942-the-jovian-concord-update-25/",
ArchiveLink = "https://web.archive.org/web/20211009215059/https://forums.warframe.com/topic/1094942-the-jovian-concord-update-25/",
ArchiveDate = "2021-10-09",
Timestamp = 1558560685,
Subtitle = "The Jovian Concord"
},
{
Name = "Hotfix 25.0.1",
Link = "Update 25#Hotfix 25.0.1",
Aliases = { "25.0.1" },
ShortName = "H25.0.1",
Date = "2019-05-23",
Parent = "25.0",
ForumLink = "https://forums.warframe.com/topic/1095160-the-jovian-concord-hotfix-2501/",
ArchiveLink = "https://web.archive.org/web/20201113122413/https://forums.warframe.com/topic/1095160-the-jovian-concord-hotfix-2501/",
ArchiveDate = "2020-11-13",
Timestamp = 1558578492
},
{
Name = "Hotfix 25.0.2",
Link = "Update 25#Hotfix 25.0.2",
Aliases = { "25.0.2" },
ShortName = "H25.0.2",
Date = "2019-05-23",
Parent = "25.0",
ForumLink = "https://forums.warframe.com/topic/1095724-the-jovian-concord-hotfix-2502-25021/",
ArchiveLink = "https://web.archive.org/web/20210303185100/https://forums.warframe.com/topic/1095724-the-jovian-concord-hotfix-2502-25021/",
ArchiveDate = "2021-03-03",
Timestamp = 1558644114
},
{
Name = "Hotfix 25.0.2.1",
Link = "Update 25#Hotfix 25.0.2.1",
Aliases = { "25.0.2.1" },
ShortName = "H25.0.2.1",
Date = "2019-05-23",
Parent = "25.0",
ForumLink = "https://forums.warframe.com/topic/1095724-the-jovian-concord-hotfix-2502-25021/",
ArchiveLink = "https://web.archive.org/web/20210303185100/https://forums.warframe.com/topic/1095724-the-jovian-concord-hotfix-2502-25021/",
ArchiveDate = "2021-03-03",
Timestamp = 1558644114
},
{
Name = "Hotfix 25.0.3",
Link = "Update 25#Hotfix 25.0.3",
Aliases = { "25.0.3" },
ShortName = "H25.0.3",
Date = "2019-05-24",
Parent = "25.0",
ForumLink = "https://forums.warframe.com/topic/1096333-the-jovian-concord-hotfix-2503/",
ArchiveLink = "https://web.archive.org/web/20211109195845/https://forums.warframe.com/topic/1096333-the-jovian-concord-hotfix-2503/",
ArchiveDate = "2021-11-09",
Timestamp = 1558735701
},
{
Name = "Hotfix 25.0.4",
Link = "Update 25#Hotfix 25.0.4",
Aliases = { "25.0.4" },
ShortName = "H25.0.4",
Date = "2019-05-28",
Parent = "25.0",
ForumLink = "https://forums.warframe.com/topic/1098019-the-jovian-concord-hotfix-2504/",
ArchiveLink = "https://web.archive.org/web/20201205230819/https://forums.warframe.com/topic/1098019-the-jovian-concord-hotfix-2504/",
ArchiveDate = "2020-12-05",
Timestamp = 1559068348
},
{
Name = "Hotfix 25.0.5",
Link = "Update 25#Hotfix 25.0.5",
Aliases = { "25.0.5" },
ShortName = "H25.0.5",
Date = "2019-05-28",
Parent = "25.0",
ForumLink = "https://forums.warframe.com/topic/1098082-the-jovian-concord-hotfix-2505/",
ArchiveLink = "https://web.archive.org/web/20210119034331/https://forums.warframe.com/topic/1098082-the-jovian-concord-hotfix-2505/",
ArchiveDate = "2021-01-19",
Timestamp = 1559078082
},
{
Name = "Hotfix 25.0.6",
Link = "Update 25#Hotfix 25.0.6",
Aliases = { "25.0.6" },
ShortName = "H25.0.6",
Date = "2019-05-29",
Parent = "25.0",
ForumLink = "https://forums.warframe.com/topic/1098415-the-jovian-concord-hotfix-2506/",
ArchiveLink = "https://web.archive.org/web/20210119033929/https://forums.warframe.com/topic/1098415-the-jovian-concord-hotfix-2506/",
ArchiveDate = "2021-01-19",
Timestamp = 1559160901
},
{
Name = "Hotfix 25.0.7",
Link = "Update 25#Hotfix 25.0.7",
Aliases = { "25.0.7" },
ShortName = "H25.0.7",
Date = "2019-05-30",
Parent = "25.0",
ForumLink = "https://forums.warframe.com/topic/1098762-the-jovian-concord-hotfix-2507/",
ArchiveLink = "https://web.archive.org/web/20211109200008/https://forums.warframe.com/topic/1098762-the-jovian-concord-hotfix-2507/",
ArchiveDate = "2021-11-09",
Timestamp = 1559247868
},
{
Name = "Hotfix 25.0.8",
Link = "Update 25#Hotfix 25.0.8",
Aliases = { "25.0.8" },
ShortName = "H25.0.8",
Date = "2019-05-31",
Parent = "25.0",
ForumLink = "https://forums.warframe.com/topic/1099109-the-jovian-concord-hotfix-2508/",
ArchiveLink = "https://web.archive.org/web/20211109172751/https://forums.warframe.com/topic/1099109-the-jovian-concord-hotfix-2508/",
ArchiveDate = "2021-11-09",
Timestamp = 1559333729
},
{
Name = "Update 25.1",
Link = "Update 25#Update 25.1",
Aliases = { "25.1", "25.1.0" },
ShortName = "U25.1",
Date = "2019-06-05",
Parent = "25.1",
ForumLink = "https://forums.warframe.com/topic/1100452-the-jovian-concord-update-2510/",
ArchiveLink = "https://web.archive.org/web/20201111221108/https://forums.warframe.com/topic/1100452-the-jovian-concord-update-2510/",
ArchiveDate = "2020-11-11",
Timestamp = 1559759775,
Subtitle = "TennoGen Round 16"
},
{
Name = "Hotfix 25.1.1",
Link = "Update 25#Hotfix 25.1.1",
Aliases = { "25.1.1" },
ShortName = "H25.1.1",
Date = "2019-06-06",
Parent = "25.1",
ForumLink = "https://forums.warframe.com/topic/1100799-the-jovian-concord-hotfix-2511/",
ArchiveLink = "https://web.archive.org/web/20201124145336/https://forums.warframe.com/topic/1100799-the-jovian-concord-hotfix-2511/",
ArchiveDate = "2020-11-24",
Timestamp = 1559854204
},
{
Name = "Hotfix 25.1.2",
Link = "Update 25#Hotfix 25.1.2",
Aliases = { "25.1.2" },
ShortName = "H25.1.2",
Date = "2019-06-12",
Parent = "25.1",
ForumLink = "https://forums.warframe.com/topic/1102274-the-jovian-concord-hotfix-2512-25121/",
ArchiveLink = "https://web.archive.org/web/20211109172441/https://forums.warframe.com/topic/1102274-the-jovian-concord-hotfix-2512-25121/",
ArchiveDate = "2021-11-09",
Timestamp = 1560362133
},
{
Name = "Hotfix 25.1.2.1",
Link = "Update 25#Hotfix 25.1.2.1",
Aliases = { "25.1.2.1" },
ShortName = "H25.1.2.1",
Date = "2019-06-12",
Parent = "25.1",
ForumLink = "https://forums.warframe.com/topic/1102274-the-jovian-concord-hotfix-2512-25121/",
ArchiveLink = "https://web.archive.org/web/20211109172441/https://forums.warframe.com/topic/1102274-the-jovian-concord-hotfix-2512-25121/",
ArchiveDate = "2021-11-09",
Timestamp = 1560362133
},
{
Name = "Hotfix 25.1.3",
Link = "Update 25#Hotfix 25.1.3",
Aliases = { "25.1.3" },
ShortName = "H25.1.3",
Date = "2019-06-14",
Parent = "25.1",
ForumLink = "https://forums.warframe.com/topic/1102887-the-jovian-concord-hotfix-2513/",
ArchiveLink = "https://web.archive.org/web/20201024183257/https://forums.warframe.com/topic/1102887-the-jovian-concord-hotfix-2513/",
ArchiveDate = "2020-10-24",
Timestamp = 1560533635
},
{
Name = "Update 25.2",
Link = "Update 25#Update 25.2",
Aliases = { "25.2", "25.2.0" },
ShortName = "U25.2",
Date = "2019-06-19",
Parent = "25.2",
ForumLink = "https://forums.warframe.com/topic/1104200-the-jovian-concord-update-2520/",
ArchiveLink = "https://web.archive.org/web/20211106123850/https://forums.warframe.com/topic/1104200-the-jovian-concord-update-2520/",
ArchiveDate = "2021-11-06",
Timestamp = 1560974411,
Subtitle = "Wukong Revisited"
},
{
Name = "Hotfix 25.2.1",
Link = "Update 25#Hotfix 25.2.1",
Aliases = { "25.2.1" },
ShortName = "H25.2.1",
Date = "2019-06-20",
Parent = "25.2",
ForumLink = "https://forums.warframe.com/topic/1104491-the-jovian-concord-hotfix-2521/",
ArchiveLink = "https://web.archive.org/web/20201112011419/https://forums.warframe.com/topic/1104491-the-jovian-concord-hotfix-2521/",
ArchiveDate = "2020-11-12",
Timestamp = 1561059315
},
{
Name = "Hotfix 25.2.2",
Link = "Update 25#Hotfix 25.2.2",
Aliases = { "25.2.2" },
ShortName = "H25.2.2",
Date = "2019-06-21",
Parent = "25.2",
ForumLink = "https://forums.warframe.com/topic/1104781-the-jovian-concord-hotfix-2522/",
ArchiveLink = "https://web.archive.org/web/20210226014932/https://forums.warframe.com/topic/1104781-the-jovian-concord-hotfix-2522/",
ArchiveDate = "2021-02-26",
Timestamp = 1561142912
},
{
Name = "Hotfix 25.2.3",
Link = "Update 25#Hotfix 25.2.3",
Aliases = { "25.2.3" },
ShortName = "H25.2.3",
Date = "2019-06-25",
Parent = "25.2",
ForumLink = "https://forums.warframe.com/topic/1105676-the-jovian-concord-hotfix-2523/",
ArchiveLink = "https://web.archive.org/web/20210302182940/https://forums.warframe.com/topic/1105676-the-jovian-concord-hotfix-2523/",
ArchiveDate = "2021-03-02",
Timestamp = 1561485886
},
{
Name = "Hotfix 25.2.4",
Link = "Update 25#Hotfix 25.2.4",
Aliases = { "25.2.4" },
ShortName = "H25.2.4",
Date = "2019-06-27",
Parent = "25.2",
ForumLink = "https://forums.warframe.com/topic/1106175-the-jovian-concord-hotfix-2524/",
ArchiveLink = "https://web.archive.org/web/20211109172051/https://forums.warframe.com/topic/1106175-the-jovian-concord-hotfix-2524/",
ArchiveDate = "2021-11-09",
Timestamp = 1561657841
},
{
Name = "Update 25.3",
Link = "Update 25#Update 25.3",
Aliases = { "25.3", "25.3.0" },
ShortName = "U25.3",
Date = "2019-07-06",
Parent = "25.3",
ForumLink = "https://forums.warframe.com/topic/1108021-wukong-prime-update-2530/",
ArchiveLink = "https://web.archive.org/web/20201129014701/https://forums.warframe.com/topic/1108021-wukong-prime-update-2530/",
ArchiveDate = "2020-11-29",
Timestamp = 1562443899,
Subtitle = "Wukong Prime"
},
{
Name = "Hotfix 25.3.1",
Link = "Update 25#Hotfix 25.3.1",
Aliases = { "25.3.1" },
ShortName = "H25.3.1",
Date = "2019-07-08",
Parent = "25.3",
ForumLink = "https://forums.warframe.com/topic/1108983-wukong-prime-hotfix-2531/",
ArchiveLink = "https://web.archive.org/web/20210303124906/https://forums.warframe.com/topic/1108983-wukong-prime-hotfix-2531/",
ArchiveDate = "2021-03-03",
Timestamp = 1562616242
},
{
Name = "Hotfix 25.3.2",
Link = "Update 25#Hotfix 25.3.2",
Aliases = { "25.3.2" },
ShortName = "H25.3.2",
Date = "2019-07-12",
Parent = "25.3",
ForumLink = "https://forums.warframe.com/topic/1110370-wukong-prime-hotfix-2532-25321/",
ArchiveLink = "https://web.archive.org/web/20210117012353/https://forums.warframe.com/topic/1110370-wukong-prime-hotfix-2532-25321/",
ArchiveDate = "2021-01-17",
Timestamp = 1562944466
},
{
Name = "Hotfix 25.3.2.1",
Link = "Update 25#Hotfix 25.3.2.1",
Aliases = { "25.3.2.1" },
ShortName = "H25.3.2.1",
Date = "2019-07-12",
Parent = "25.3",
ForumLink = "https://forums.warframe.com/topic/1110370-wukong-prime-hotfix-2532-25321/",
ArchiveLink = "https://web.archive.org/web/20210117012353/https://forums.warframe.com/topic/1110370-wukong-prime-hotfix-2532-25321/",
ArchiveDate = "2021-01-17",
Timestamp = 1562944466
},
{
Name = "Hotfix 25.3.3",
Link = "Update 25#Hotfix 25.3.3",
Aliases = { "25.3.3" },
ShortName = "H25.3.3",
Date = "2019-07-16",
Parent = "25.3",
ForumLink = "https://forums.warframe.com/topic/1111888-prime-vault-hotfix-2533-25331/",
ArchiveLink = "https://web.archive.org/web/20210116070045/https://forums.warframe.com/topic/1111888-prime-vault-hotfix-2533-25331/",
ArchiveDate = "2021-01-16",
Timestamp = 1563300037,
Subtitle = "Nyx & Rhino Prime Vault"
},
{
Name = "Hotfix 25.3.3.1",
Link = "Update 25#Hotfix 25.3.3.1",
Aliases = { "25.3.3.1" },
ShortName = "H25.3.3.1",
Date = "2019-07-16",
Parent = "25.3",
ForumLink = "https://forums.warframe.com/topic/1111888-prime-vault-hotfix-2533-25331/",
ArchiveLink = "https://web.archive.org/web/20210116070045/https://forums.warframe.com/topic/1111888-prime-vault-hotfix-2533-25331/",
ArchiveDate = "2021-01-16",
Timestamp = 1563300037
},
{
Name = "Update 25.4",
Link = "Update 25#Update 25.4",
Aliases = { "25.4", "25.4.0" },
ShortName = "U25.4",
Date = "2019-07-18",
Parent = "25.4",
ForumLink = "https://forums.warframe.com/topic/1112632-tenno-reinforcements-update-2540/",
ArchiveLink = "https://web.archive.org/web/20210224170152/https://forums.warframe.com/topic/1112632-tenno-reinforcements-update-2540/",
ArchiveDate = "2021-02-24",
Timestamp = 1563476525,
Subtitle = "Tenno Reinforcements: The Quatz Collection"
},
{
Name = "Hotfix 25.4.1",
Link = "Update 25#Hotfix 25.4.1",
Aliases = { "25.4.1" },
ShortName = "H25.4.1",
Date = "2019-07-24",
Parent = "25.4",
ForumLink = "https://forums.warframe.com/topic/1114367-hotfix-2541-25411/",
ArchiveLink = "https://web.archive.org/web/20210226182938/https://forums.warframe.com/topic/1114367-hotfix-2541-25411/",
ArchiveDate = "2021-02-26",
Timestamp = 1563997448
},
{
Name = "Hotfix 25.4.1.1",
Link = "Update 25#Hotfix 25.4.1.1",
Aliases = { "25.4.1.1" },
ShortName = "H25.4.1.1",
Date = "2019-07-24",
Parent = "25.4",
ForumLink = "https://forums.warframe.com/topic/1114367-hotfix-2541-25411/",
ArchiveLink = "https://web.archive.org/web/20210226182938/https://forums.warframe.com/topic/1114367-hotfix-2541-25411/",
ArchiveDate = "2021-02-26",
Timestamp = 1563997448
},
{
Name = "Hotfix 25.4.2",
Link = "Update 25#Hotfix 25.4.2",
Aliases = { "25.4.2" },
ShortName = "H25.4.2",
Date = "2019-07-25",
Parent = "25.4",
ForumLink = "https://forums.warframe.com/topic/1114731-hotfix-2542/",
ArchiveLink = "https://web.archive.org/web/20201111233356/https://forums.warframe.com/topic/1114731-hotfix-2542/",
ArchiveDate = "2020-11-11",
Timestamp = 1564081827
},
{
Name = "Hotfix 25.4.3",
Link = "Update 25#Hotfix 25.4.3",
Aliases = { "25.4.3" },
ShortName = "H25.4.3",
Date = "2019-07-26",
Parent = "25.4",
ForumLink = "https://forums.warframe.com/topic/1115040-hotfix-2543/",
ArchiveLink = "https://web.archive.org/web/20201112011011/https://forums.warframe.com/topic/1115040-hotfix-2543/",
ArchiveDate = "2020-11-12",
Timestamp = 1564173520
},
{
Name = "Update 25.5",
Link = "Update 25#Update 25.5",
Aliases = { "25.5", "25.5.0" },
ShortName = "U25.5",
Date = "2019-07-31",
Parent = "25.5",
ForumLink = "https://forums.warframe.com/topic/1116515-wukong-deluxe-update-2550-25501/",
ArchiveLink = "https://web.archive.org/web/20210226185442/https://forums.warframe.com/topic/1116515-wukong-deluxe-update-2550-25501/",
ArchiveDate = "2021-02-26",
Timestamp = 1564596301,
Subtitle = "Wukong Deluxe Samadhi Collection"
},
{
Name = "Hotfix 25.5.0.1",
Link = "Update 25#Hotfix 25.5.0.1",
Aliases = { "25.5.0.1" },
ShortName = "H25.5.0.1",
Date = "2019-07-31",
Parent = "25.5",
ForumLink = "https://forums.warframe.com/topic/1116515-wukong-deluxe-update-2550-25501/",
ArchiveLink = "https://web.archive.org/web/20210226185442/https://forums.warframe.com/topic/1116515-wukong-deluxe-update-2550-25501/",
ArchiveDate = "2021-02-26",
Timestamp = 1564596301
},
{
Name = "Hotfix 25.5.1",
Link = "Update 25#Hotfix 25.5.1",
Aliases = { "25.5.1" },
ShortName = "H25.5.1",
Date = "2019-08-02",
Parent = "25.5",
ForumLink = "https://forums.warframe.com/topic/1117121-wukong-deluxe-hotfix-2551-2552/",
ArchiveLink = "https://web.archive.org/web/20210307153508/https://forums.warframe.com/topic/1117121-wukong-deluxe-hotfix-2551-2552/",
ArchiveDate = "2021-03-07",
Timestamp = 1564776253
},
{
Name = "Hotfix 25.5.2",
Link = "Update 25#Hotfix 25.5.2",
Aliases = { "25.5.2" },
ShortName = "H25.5.2",
Date = "2019-08-02",
Parent = "25.5",
ForumLink = "https://forums.warframe.com/topic/1117121-wukong-deluxe-hotfix-2551-2552/",
ArchiveLink = "https://web.archive.org/web/20210307153508/https://forums.warframe.com/topic/1117121-wukong-deluxe-hotfix-2551-2552/",
ArchiveDate = "2021-03-07",
Timestamp = 1564776253
},
{
Name = "Hotfix 25.5.3",
Link = "Update 25#Hotfix 25.5.3",
Aliases = { "25.5.3" },
ShortName = "H25.5.3",
Date = "2019-08-06",
Parent = "25.5",
ForumLink = "https://forums.warframe.com/topic/1118336-wukong-deluxe-hotfix-2553/",
ArchiveLink = "https://web.archive.org/web/20210226020130/https://forums.warframe.com/topic/1118336-wukong-deluxe-hotfix-2553/",
ArchiveDate = "2021-02-26",
Timestamp = 1565122067
},
{
Name = "Hotfix 25.5.4",
Link = "Update 25#Hotfix 25.5.4",
Aliases = { "25.5.4" },
ShortName = "H25.5.4",
Date = "2019-08-06",
Parent = "25.5",
ForumLink = "https://forums.warframe.com/topic/1118374-wukong-deluxe-hotfix-2554/",
ArchiveLink = "https://web.archive.org/web/20201123195255/https://forums.warframe.com/topic/1118374-wukong-deluxe-hotfix-2554/",
ArchiveDate = "2020-11-23",
Timestamp = 1565128299
},
{
Name = "Update 25.6",
Link = "Update 25#Update 25.6",
Aliases = { "25.6", "25.6.0" },
ShortName = "U25.6",
Date = "2019-08-08",
Parent = "25.6",
ForumLink = "https://forums.warframe.com/topic/1118825-augment-tweaks-update-2560/",
ArchiveLink = "https://web.archive.org/web/20211024161552/https://forums.warframe.com/topic/1118825-augment-tweaks-update-2560/",
ArchiveDate = "2021-10-24",
Timestamp= 1565275817,
Subtitle = "Augment Tweaks"
},
{
Name = "Hotfix 25.6.1",
Link = "Update 25#Hotfix 25.6.1",
Aliases = { "25.6.1" },
ShortName = "H25.6.1",
Date = "2019-08-08",
Parent = "25.6",
ForumLink = "https://forums.warframe.com/topic/1118930-augment-tweaks-hotfix-2561/",
ArchiveLink = "https://web.archive.org/web/20210119003338/https://forums.warframe.com/topic/1118930-augment-tweaks-hotfix-2561/",
ArchiveDate = "2021-01-19",
Timestamp = 1565297255
},
{
Name = "Hotfix 25.6.2",
Link = "Update 25#Hotfix 25.6.2",
Aliases = { "25.6.2" },
ShortName = "H25.6.2",
Date = "2019-08-09",
Parent = "25.6",
ForumLink = "https://forums.warframe.com/topic/1119199-augment-tweaks-hotfix-2562/",
ArchiveLink = "https://web.archive.org/web/20210116124217/https://forums.warframe.com/topic/1119199-augment-tweaks-hotfix-2562/",
ArchiveDate = "2021-01-16",
Timestamp = 1565376428
},
{
Name = "Hotfix 25.6.3",
Link = "Update 25#Hotfix 25.6.3",
Aliases = { "25.6.3" },
ShortName = "H25.6.3",
Date = "2019-08-14",
Parent = "25.6",
ForumLink = "https://forums.warframe.com/topic/1120514-hotfix-2563/",
ArchiveLink = "https://web.archive.org/web/20210307034537/https://forums.warframe.com/topic/1120514-hotfix-2563/",
ArchiveDate = "2021-03-07",
Timestamp = 1565811523
},
{
Name = "Update 25.7",
Link = "Update 25#Update 25.7",
Aliases = { "25.7", "Saint of Altra" },
ShortName = "U25.7",
Date = "2019-08-29",
Parent = "25.7",
ForumLink = "https://forums.warframe.com/topic/1123841-saint-of-altra-update-2570/",
ArchiveLink = "https://web.archive.org/web/20210307035129/https://forums.warframe.com/topic/1123841-saint-of-altra-update-2570/",
ArchiveDate = "2021-03-07",
Timestamp = 1567114556,
Subtitle = "Saint of Altra"
},
{
Name = "Hotfix 25.7.1",
Link = "Update 25#Hotfix 25.7.1",
Aliases = { "25.7.1" },
ShortName = "H25.7.1",
Date = "2019-08-30",
Parent = "25.7",
ForumLink = "https://forums.warframe.com/topic/1123946-hotfix-2571/",
ArchiveLink = "https://web.archive.org/web/20201112032304/https://forums.warframe.com/topic/1123946-hotfix-2571/",
ArchiveDate = "2020-11-12",
Timestamp = 1567125410
},
{
Name = "Hotfix 25.7.2",
Link = "Update 25#Hotfix 25.7.2",
Aliases = { "25.7.2" },
ShortName = "H25.7.2",
Date = "2019-08-30",
Parent = "25.7",
ForumLink = "https://forums.warframe.com/topic/1124402-hotfix-2572-25721/",
ArchiveLink = "https://web.archive.org/web/20210226190533/https://forums.warframe.com/topic/1124402-hotfix-2572-25721/",
ArchiveDate = "2021-02-26",
Timestamp = 1567192309
},
{
Name = "Hotfix 25.7.2.1",
Link = "Update 25#Hotfix 25.7.2.1",
Aliases = { "25.7.2.1" },
ShortName = "H25.7.2.1",
Date = "2019-08-30",
Parent = "25.7",
ForumLink = "https://forums.warframe.com/topic/1124402-hotfix-2572-25721/",
ArchiveLink = "https://web.archive.org/web/20210226190533/https://forums.warframe.com/topic/1124402-hotfix-2572-25721/",
ArchiveDate = "2021-02-26",
Timestamp = 1567192309
},
{
Name = "Hotfix 25.7.3",
Link = "Update 25#Hotfix 25.7.3",
Aliases = { "25.7.3" },
ShortName = "H25.7.3",
Date = "2019-09-03",
Parent = "25.7",
ForumLink = "https://forums.warframe.com/topic/1125828-prime-vault-hotfix-2573-25731/",
ArchiveLink = "https://web.archive.org/web/20210226190009/https://forums.warframe.com/topic/1125828-prime-vault-hotfix-2573-25731/",
ArchiveDate = "2021-02-26",
Timestamp = 1567533639,
Subtitle = "Valkyr & Saryn Prime Vault"
},
{
Name = "Hotfix 25.7.3.1",
Link = "Update 25#Hotfix 25.7.3.1",
Aliases = { "25.7.3.1" },
ShortName = "H25.7.3.1",
Date = "2019-09-03",
Parent = "25.7",
ForumLink = "https://forums.warframe.com/topic/1125828-prime-vault-hotfix-2573-25731/",
ArchiveLink = "https://web.archive.org/web/20210226190009/https://forums.warframe.com/topic/1125828-prime-vault-hotfix-2573-25731/",
ArchiveDate = "2021-02-26",
Timestamp = 1567533639
},
{
Name = "Hotfix 25.7.4",
Link = "Update 25#Hotfix 25.7.4",
Aliases = { "25.7.4" },
ShortName = "H25.7.4",
Date = "2019-09-05",
Parent = "25.7",
ForumLink = "https://forums.warframe.com/topic/1126459-prime-vault-hotfix-2574-25741/",
ArchiveLink = "https://web.archive.org/web/20210302181523/https://forums.warframe.com/topic/1126459-prime-vault-hotfix-2574-25741/",
ArchiveDate = "2021-03-02",
Timestamp = 1567710126
},
{
Name = "Hotfix 25.7.4.1",
Link = "Update 25#Hotfix 25.7.4.1",
Aliases = { "25.7.4.1" },
ShortName = "H25.7.4.1",
Date = "2019-09-05",
Parent = "25.7",
ForumLink = "https://forums.warframe.com/topic/1126459-prime-vault-hotfix-2574-25741/",
ArchiveLink = "https://web.archive.org/web/20210302181523/https://forums.warframe.com/topic/1126459-prime-vault-hotfix-2574-25741/",
ArchiveDate = "2021-03-02",
Timestamp = 1567710126
},
{
Name = "Hotfix 25.7.5",
Link = "Update 25#Hotfix 25.7.5",
Aliases = { "25.7.5" },
ShortName = "H25.7.5",
Date = "2019-09-09",
Parent = "25.7",
ForumLink = "https://forums.warframe.com/topic/1127427-prime-vault-hotfix-2575/",
ArchiveLink = "https://web.archive.org/web/20211109170637/https://forums.warframe.com/topic/1127427-prime-vault-hotfix-2575/",
ArchiveDate = "2021-11-09",
Timestamp = 1568055950
},
{
Name = "Hotfix 25.7.6",
Link = "Update 25#Hotfix 25.7.6",
Aliases = { "25.7.6" },
ShortName = "H25.7.6",
Date = "2019-09-18",
Parent = "25.7",
ForumLink = "https://forums.warframe.com/topic/1129207-arbitrations-revisited-hotfix-2576/",
ArchiveLink = "https://web.archive.org/web/20210123113535/https://forums.warframe.com/topic/1129207-arbitrations-revisited-hotfix-2576/",
ArchiveDate = "2021-01-23",
Timestamp = 1568833988,
Subtitle = "Arbitrations Revisited"
},
{
Name = "Hotfix 25.7.7",
Link = "Update 25#Hotfix 25.7.7",
Aliases = { "25.7.7" },
ShortName = "H25.7.7",
Date = "2019-09-26",
Parent = "25.7",
ForumLink = "https://forums.warframe.com/topic/1130656-tennogen-nightwave-episode-5-hotfix-2577/",
ArchiveLink = "https://web.archive.org/web/20201111190439/https://forums.warframe.com/topic/1130656-tennogen-nightwave-episode-5-hotfix-2577/",
ArchiveDate = "2020-11-11",
Timestamp = 1569514233,
Subtitle = "TennoGen Round 17 & Nightwave: Series 2 Episode 5"
},
{
Name = "Hotfix 25.7.8",
Link = "Update 25#Hotfix 25.7.8",
Aliases = { "25.7.8" },
ShortName = "H25.7.8",
Date = "2019-09-26",
Parent = "25.7",
ForumLink = "https://forums.warframe.com/topic/1130720-tennogen-nightwave-episode-5-hotfix-2578/",
ArchiveLink = "https://web.archive.org/web/20190927200142/https://forums.warframe.com/topic/1130720-tennogen-nightwave-episode-5-hotfix-2578/",
ArchiveDate = "2019-09-27",
Timestamp = 1569531627
},
{
Name = "Update 25.8",
Link = "Update 25#Update 25.8",
Aliases = { "25.8", "25.8.0" },
ShortName = "U25.8",
Date = "2019-10-01",
Parent = "25.8",
ForumLink = "https://forums.warframe.com/topic/1131643-atlas-prime-update-2580-25801/",
ArchiveLink = "https://web.archive.org/web/20211106123848/https://forums.warframe.com/topic/1131643-atlas-prime-update-2580-25801/",
ArchiveDate = "2021-11-06",
Timestamp = 1569952828,
Subtitle = "Atlas Prime"
},
{
Name = "Hotfix 25.8.0.1",
Link = "Update 25#Hotfix 25.8.0.1",
Aliases = { "25.8.0.1" },
ShortName = "H25.8.0.1",
Date = "2019-10-02",
Parent = "25.8",
ForumLink = "https://forums.warframe.com/topic/1131643-atlas-prime-update-2580-25801/",
ArchiveLink = "https://web.archive.org/web/20211106123848/https://forums.warframe.com/topic/1131643-atlas-prime-update-2580-25801/",
ArchiveDate = "2021-11-06",
Timestamp = 1569952828
},
{
Name = "Hotfix 25.8.1",
Link = "Update 25#Hotfix 25.8.1",
Aliases = { "25.8.1" },
ShortName = "H25.8.1",
Date = "2019-10-09",
Parent = "25.8",
ForumLink = "https://forums.warframe.com/topic/1133158-atlas-prime-hotfix-2581-25811/",
ArchiveLink = "https://web.archive.org/web/20210116130022/https://forums.warframe.com/topic/1133158-atlas-prime-hotfix-2581-25811/",
ArchiveDate = "2021-01-16",
Timestamp = 1570634953
},
{
Name = "Hotfix 25.8.1.1",
Link = "Update 25#Hotfix 25.8.1.1",
Aliases = { "25.8.1.1" },
ShortName = "H25.8.1.1",
Date = "2019-10-09",
Parent = "25.8",
ForumLink = "https://forums.warframe.com/topic/1133158-atlas-prime-hotfix-2581-25811/",
ArchiveLink = "https://web.archive.org/web/20210116130022/https://forums.warframe.com/topic/1133158-atlas-prime-hotfix-2581-25811/",
ArchiveDate = "2021-01-16",
Timestamp = 1570634953
},
{
Name = "Hotfix 25.8.2",
Link = "Update 25#Hotfix 25.8.2",
Aliases = { "25.8.2" },
ShortName = "H25.8.2",
Date = "2019-10-18",
Parent = "25.8",
ForumLink = "https://forums.warframe.com/topic/1134461-atlas-prime-hotfix-2582/",
ArchiveLink = "https://web.archive.org/web/20201111223946/https://forums.warframe.com/topic/1134461-atlas-prime-hotfix-2582/",
ArchiveDate = "2020-11-11",
Timestamp = 1571413436
},
{
Name = "Update 26.0",
Link = "Update 26#Update 26.0",
Aliases = { "26", "26.0", "The Old Blood" },
ShortName = "U26",
Date = "2019-10-31",
Parent = "26.0",
ForumLink = "https://forums.warframe.com/topic/1136784-update-26-the-old-blood/",
ArchiveLink = "https://web.archive.org/web/20201111181655/https://forums.warframe.com/topic/1136784-update-26-the-old-blood/",
ArchiveDate = "2020-11-11",
Timestamp = 1572552442,
Subtitle = "The Old Blood"
},
{
Name = "Hotfix 26.0.1",
Link = "Update 26#Hotfix 26.0.1",
Aliases = { "26.0.1" },
ShortName = "H26.0.1",
Date = "2019-10-31",
Parent = "26.0",
ForumLink = "https://forums.warframe.com/topic/1136833-the-old-blood-hotfix-2601/",
ArchiveLink = "https://web.archive.org/web/20201024141622/https://forums.warframe.com/topic/1136833-the-old-blood-hotfix-2601/",
ArchiveDate = "2020-10-24",
Timestamp = 1572561331
},
{
Name = "Hotfix 26.0.2",
Link = "Update 26#Hotfix 26.0.2",
Aliases = { "26.0.2" },
ShortName = "H26.0.2",
Date = "2019-11-01",
Parent = "26.0",
ForumLink = "https://forums.warframe.com/topic/1137019-the-old-blood-hotfix-2602/",
ArchiveLink = "https://web.archive.org/web/20201111234521/https://forums.warframe.com/topic/1137019-the-old-blood-hotfix-2602/",
ArchiveDate = "2020-11-11",
Timestamp = 1572579521
},
{
Name = "Hotfix 26.0.3",
Link = "Update 26#Hotfix 26.0.3",
Aliases = { "26.0.3" },
ShortName = "H26.0.3",
Date = "2019-11-01",
Parent = "26.0",
ForumLink = "https://forums.warframe.com/topic/1137487-the-old-blood-hotfix-2603/",
ArchiveLink = "https://web.archive.org/web/20201112004248/https://forums.warframe.com/topic/1137487-the-old-blood-hotfix-2603/",
ArchiveDate = "2020-11-12",
Timestamp = 1572640867
},
{
Name = "Hotfix 26.0.4",
Link = "Update 26#Hotfix 26.0.4",
Aliases = { "26.0.4" },
ShortName = "H26.0.4",
Date = "2019-11-05",
Parent = "26.0",
ForumLink = "https://forums.warframe.com/topic/1139431-the-old-blood-hotfix-2604-26041/",
ArchiveLink = "https://web.archive.org/web/20210119095525/https://forums.warframe.com/topic/1139431-the-old-blood-hotfix-2604-26041/",
ArchiveDate = "2021-01-19",
Timestamp = 1572972739
},
{
Name = "Hotfix 26.0.4.1",
Link = "Update 26#Hotfix 26.0.4.1",
Aliases = { "26.0.4.1" },
ShortName = "H26.0.4.1",
Date = "2019-11-05",
Parent = "26.0",
ForumLink = "https://forums.warframe.com/topic/1139431-the-old-blood-hotfix-2604-26041/",
ArchiveLink = "https://web.archive.org/web/20210119095525/https://forums.warframe.com/topic/1139431-the-old-blood-hotfix-2604-26041/",
ArchiveDate = "2021-01-19",
Timestamp = 1572972739
},
{
Name = "Hotfix 26.0.5",
Link = "Update 26#Hotfix 26.0.5",
Aliases = { "26.0.5" },
ShortName = "H26.0.5",
Date = "2019-11-06",
Parent = "26.0",
ForumLink = "https://forums.warframe.com/topic/1139999-the-old-blood-hotfix-2605/",
ArchiveLink = "https://web.archive.org/web/20201111191327/https://forums.warframe.com/topic/1139999-the-old-blood-hotfix-2605/",
ArchiveDate = "2020-11-11",
Timestamp = 1573073436
},
{
Name = "Hotfix 26.0.6",
Link = "Update 26#Hotfix 26.0.6",
Aliases = { "26.0.6" },
ShortName = "H26.0.6",
Date = "2019-11-07",
Parent = "26.0",
ForumLink = "https://forums.warframe.com/topic/1140467-the-old-blood-hotfix-2606-26061/",
ArchiveLink = "https://web.archive.org/web/20210305050042/https://forums.warframe.com/topic/1140467-the-old-blood-hotfix-2606-26061/",
ArchiveDate = "2021-03-05",
Timestamp = 1573164810
},
{
Name = "Hotfix 26.0.6.1",
Link = "Update 26#Hotfix 26.0.6.1",
Aliases = { "26.0.6.1" },
ShortName = "H26.0.6.1",
Date = "2019-11-07",
Parent = "26.0",
ForumLink = "https://forums.warframe.com/topic/1140467-the-old-blood-hotfix-2606-26061/",
ArchiveLink = "https://web.archive.org/web/20210305050042/https://forums.warframe.com/topic/1140467-the-old-blood-hotfix-2606-26061/",
ArchiveDate = "2021-03-05",
Timestamp = 1573164810
},
{
Name = "Hotfix 26.0.7",
Link = "Update 26#Hotfix 26.0.7",
Aliases = { "26.0.7" },
ShortName = "H26.0.7",
Date = "2019-11-14",
Parent = "26.0",
ForumLink = "https://forums.warframe.com/topic/1142475-the-old-blood-hotfix-2607/",
ArchiveLink = "https://web.archive.org/web/20210506090307/https://forums.warframe.com/topic/1142475-the-old-blood-hotfix-2607/",
ArchiveDate = "2021-05-06",
Timestamp = 1573766632
},
{
Name = "Hotfix 26.0.8",
Link = "Update 26#Hotfix 26.0.8",
Aliases = { "26.0.8" },
ShortName = "H26.0.8",
Date = "2019-11-19",
Parent = "26.0",
ForumLink = "https://forums.warframe.com/topic/1143840-the-old-blood-prime-vault-2608-26081/",
ArchiveLink = "https://web.archive.org/web/20201024034456/https://forums.warframe.com/topic/1143840-the-old-blood-prime-vault-2608-26081/",
ArchiveDate = "2020-10-24",
Timestamp = 1574189881,
Subtitle = "Vauban & Ash Prime Vault"
},
{
Name = "Hotfix 26.0.8.1",
Link = "Update 26#Hotfix 26.0.8.1",
Aliases = { "26.0.8.1" },
ShortName = "H26.0.8.1",
Date = "2019-11-19",
Parent = "26.0",
ForumLink = "https://forums.warframe.com/topic/1143840-the-old-blood-prime-vault-2608-26081/",
ArchiveLink = "https://web.archive.org/web/20201024034456/https://forums.warframe.com/topic/1143840-the-old-blood-prime-vault-2608-26081/",
ArchiveDate = "2020-10-24",
Timestamp = 1574189881
},
{
Name = "Update 26.1",
Link = "Update 26#Update 26.1",
Aliases = { "26.1", "Rising Tide" },
ShortName = "U26.1",
Date = "2019-11-22",
Parent = "26.1",
ForumLink = "https://forums.warframe.com/topic/1144842-rising-tide-update-261/",
ArchiveLink = "https://web.archive.org/web/20211103190139/https://forums.warframe.com/topic/1144842-rising-tide-update-261/",
ArchiveDate = "2021-11-03",
Timestamp = 1574458714,
Subtitle = "Rising Tide"
},
{
Name = "Hotfix 26.1.1",
Link = "Update 26#Hotfix 26.1.1",
Aliases = { "26.1.1" },
ShortName = "H26.1.1",
Date = "2019-11-23",
Parent = "26.1",
ForumLink = "https://forums.warframe.com/topic/1145002-rising-tide-hotfix-2611/",
ArchiveLink = "https://web.archive.org/web/20210302183903/https://forums.warframe.com/topic/1145002-rising-tide-hotfix-2611/",
ArchiveDate = "2021-03-02",
Timestamp = 1574473820
},
{
Name = "Hotfix 26.1.2",
Link = "Update 26#Hotfix 26.1.2",
Aliases = { "26.1.2" },
ShortName = "H26.1.2",
Date = "2019-11-25",
Parent = "26.1",
ForumLink = "https://forums.warframe.com/topic/1146388-rising-tide-hotfix-2612/",
ArchiveLink = "https://web.archive.org/web/20201112024623/https://forums.warframe.com/topic/1146388-rising-tide-hotfix-2612/",
ArchiveDate = "2020-11-12",
Timestamp = 1574716827
},
{
Name = "Hotfix 26.1.3",
Link = "Update 26#Hotfix 26.1.3",
Aliases = { "26.1.3" },
ShortName = "H26.1.3",
Date = "2019-11-26",
Parent = "26.1",
ForumLink = "https://forums.warframe.com/topic/1146782-rising-tide-hotfix-2613/",
ArchiveLink = "https://web.archive.org/web/20201112021150/https://forums.warframe.com/topic/1146782-rising-tide-hotfix-2613/",
ArchiveDate = "2020-11-12",
Timestamp = 1574796836
},
{
Name = "Update 27.0",
Link = "Update 27#Update 27.0",
Aliases = { "27.0", "27", "Empyrean" },
ShortName = "U27.0",
Date = "2019-12-13",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1151428-empyrean-update-27/",
ArchiveLink = "https://web.archive.org/web/20211104161235/https://forums.warframe.com/topic/1151428-empyrean-update-27/",
ArchiveDate = "2021-11-04",
Timestamp = 1576204469,
Subtitle = "Empyrean"
},
{
Name = "Hotfix 27.0.1",
Link = "Update 27#Hotfix 27.0.1",
Aliases = { "27.0.1" },
ShortName = "H27.0.1",
Date = "2019-12-13",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1151534-empyrean-hotfix-2701/",
ArchiveLink = "https://web.archive.org/web/20210224182633/https://forums.warframe.com/topic/1151534-empyrean-hotfix-2701/",
ArchiveDate = "2021-02-24",
Timestamp = 1576217269
},
{
Name = "Hotfix 27.0.2",
Link = "Update 27#Hotfix 27.0.2",
Aliases = { "27.0.2" },
ShortName = "H27.0.2",
Date = "2019-12-13",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1151964-empyrean-hotfix-2702/",
ArchiveLink = "https://web.archive.org/web/20210226193748/https://forums.warframe.com/topic/1151964-empyrean-hotfix-2702/",
ArchiveDate = "2021-02-26",
Timestamp = 1576275657
},
{
Name = "Hotfix 27.0.3",
Link = "Update 27#Hotfix 27.0.3",
Aliases = { "27.0.3" },
ShortName = "H27.0.3",
Date = "2019-12-16",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1153336-empyrean-hotfix-2703/",
ArchiveLink = "https://web.archive.org/web/20210226014026/https://forums.warframe.com/topic/1153336-empyrean-hotfix-2703/",
ArchiveDate = "2021-02-26",
Timestamp = 1576511061
},
{
Name = "Hotfix 27.0.4",
Link = "Update 27#Hotfix 27.0.4",
Aliases = { "27.0.4" },
ShortName = "H27.0.4",
Date = "2019-12-17",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1154021-empyrean-ivara-prime-2704/",
ArchiveLink = "https://web.archive.org/web/20210224183240/https://forums.warframe.com/topic/1154021-empyrean-ivara-prime-2704/",
ArchiveDate = "2021-02-24",
Timestamp = 1576609082,
Subtitle = "Ivara Prime"
},
{
Name = "Hotfix 27.0.5",
Link = "Update 27#Hotfix 27.0.5",
Aliases = { "27.0.5" },
ShortName = "H27.0.5",
Date = "2019-12-17",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1154134-empyrean-ivara-prime-2705/",
ArchiveLink = "https://web.archive.org/web/20201214232517/https://forums.warframe.com/topic/1154134-empyrean-ivara-prime-2705/",
ArchiveDate = "2020-12-14",
Timestamp = 1576623695
},
{
Name = "Hotfix 27.0.6",
Link = "Update 27#Hotfix 27.0.6",
Aliases = { "27.0.6" },
ShortName = "H27.0.6",
Date = "2019-12-18",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1154608-empyrean-ivara-prime-27061/",
ArchiveLink = "https://web.archive.org/web/20210226015745/https://forums.warframe.com/topic/1154608-empyrean-ivara-prime-27061/",
ArchiveDate = "2021-02-26",
Timestamp = 1576709651
},
{
Name = "Hotfix 27.0.6.1",
Link = "Update 27#Hotfix 27.0.6.1",
Aliases = { "27.0.6.1" },
ShortName = "H27.0.6.1",
Date = "2019-12-18",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1154608-empyrean-ivara-prime-27061/",
ArchiveLink = "https://web.archive.org/web/20210226015745/https://forums.warframe.com/topic/1154608-empyrean-ivara-prime-27061/",
ArchiveDate = "2021-02-26",
Timestamp = 1576709651
},
{
Name = "Hotfix 27.0.7",
Link = "Update 27#Hotfix 27.0.7",
Aliases = { "27.0.7" },
ShortName = "H27.0.7",
Date = "2019-12-20",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1155166-empyrean-ivara-prime-2707/",
ArchiveLink = "https://web.archive.org/web/20210226021751/https://forums.warframe.com/topic/1155166-empyrean-ivara-prime-2707/",
ArchiveDate = "2021-02-26",
Timestamp = 1576793840
},
{
Name = "Hotfix 27.0.8",
Link = "Update 27#Hotfix 27.0.8",
Aliases = { "27.0.8" },
ShortName = "H27.0.8",
Date = "2019-12-21",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1155657-empyrean-ivara-prime-2708/",
ArchiveLink = "https://web.archive.org/web/20210302115918/https://forums.warframe.com/topic/1155657-empyrean-ivara-prime-2708/",
ArchiveDate = "2021-03-02",
Timestamp = 1576875096
},
{
Name = "Hotfix 27.0.9",
Link = "Update 27#Hotfix 27.0.9",
Aliases = { "27.0.9" },
ShortName = "H27.0.9",
Date = "2020-01-09",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1160497-empyrean-ivara-prime-2709/",
ArchiveLink = "https://web.archive.org/web/20210119002658/https://forums.warframe.com/topic/1160497-empyrean-ivara-prime-2709/",
ArchiveDate = "2021-01-19",
Timestamp = 1578588191
},
{
Name = "Hotfix 27.0.10",
Link = "Update 27#Hotfix 27.0.10",
Aliases = { "27.0.10" },
ShortName = "H27.0.10",
Date = "2020-01-11",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1160887-empyrean-ivara-prime-27010/",
ArchiveLink = "https://web.archive.org/web/20201214231836/https://forums.warframe.com/topic/1160887-empyrean-ivara-prime-27010/",
ArchiveDate = "2020-12-14",
Timestamp = 1578690260
},
{
Name = "Hotfix 27.0.11",
Link = "Update 27#Hotfix 27.0.11",
Aliases = { "27.0.11" },
ShortName = "H27.0.11",
Date = "2020-01-16",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1162207-empyrean-ivara-prime-27011-270113/",
ArchiveLink = "https://web.archive.org/web/20201214231839/https://forums.warframe.com/topic/1162207-empyrean-ivara-prime-27011-270113/",
ArchiveDate = "2020-12-14",
Timestamp = 1579198946
},
{
Name = "Hotfix 27.0.11.1",
Link = "Update 27#Hotfix 27.0.11.1",
Aliases = { "27.0.11.1" },
ShortName = "H27.0.11.1",
Date = "2020-01-16",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1162207-empyrean-ivara-prime-27011-270113/",
ArchiveLink = "https://web.archive.org/web/20201214231839/https://forums.warframe.com/topic/1162207-empyrean-ivara-prime-27011-270113/",
ArchiveDate = "2020-12-14",
Timestamp = 1579198946
},
{
Name = "Hotfix 27.0.11.2",
Link = "Update 27#Hotfix 27.0.11.2",
Aliases = { "27.0.11.2" },
ShortName = "H27.0.11.2",
Date = "2020-01-16",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1162207-empyrean-ivara-prime-27011-270113/",
ArchiveLink = "https://web.archive.org/web/20201214231839/https://forums.warframe.com/topic/1162207-empyrean-ivara-prime-27011-270113/",
ArchiveDate = "2020-12-14",
Timestamp = 1579198946
},
{
Name = "Hotfix 27.0.11.3",
Link = "Update 27#Hotfix 27.0.11.3",
Aliases = { "27.0.11.3" },
ShortName = "H27.0.11.3",
Date = "2020-01-16",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1162207-empyrean-ivara-prime-27011-270113/",
ArchiveLink = "https://web.archive.org/web/20201214231839/https://forums.warframe.com/topic/1162207-empyrean-ivara-prime-27011-270113/",
ArchiveDate = "2020-12-14",
Timestamp = 1579198946
},
{
Name = "Hotfix 27.0.12",
Link = "Update 27#Hotfix 27.0.12",
Aliases = { "27.0.12" },
ShortName = "H27.0.12",
Date = "2020-01-23",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1163746-empyrean-ivara-prime-27012-270121/",
ArchiveLink = "https://web.archive.org/web/20210307154756/https://forums.warframe.com/topic/1163746-empyrean-ivara-prime-27012-270121/",
ArchiveDate = "2021-03-07",
Timestamp = 1579793767
},
{
Name = "Hotfix 27.0.12.1",
Link = "Update 27#Hotfix 27.0.12.1",
Aliases = { "27.0.12.1" },
ShortName = "H27.0.12.1",
Date = "2020-01-23",
Parent = "27.0",
ForumLink = "https://forums.warframe.com/topic/1163746-empyrean-ivara-prime-27012-270121/",
ArchiveLink = "https://web.archive.org/web/20210307154756/https://forums.warframe.com/topic/1163746-empyrean-ivara-prime-27012-270121/",
ArchiveDate = "2021-03-07",
Timestamp = 1579793767
},
{
Name = "Update 27.1",
Link = "Update 27#Update 27.1",
Aliases = { "27.1", "Kuva Lich Changes" },
ShortName = "U27.1",
Date = "2020-02-04",
Parent = "27.1",
ForumLink = "https://forums.warframe.com/topic/1166021-empyrean-kuva-lich-changes-2710-27101/",
ArchiveLink = "https://web.archive.org/web/20210304175214/https://forums.warframe.com/topic/1166021-empyrean-kuva-lich-changes-2710-27101/",
ArchiveDate = "2021-03-04",
Timestamp = 1580842710,
Subtitle = "Kuva Lich Changes"
},
{
Name = "Hotfix 27.1.0.1",
Link = "Update 27#Hotfix 27.1.0.1",
Aliases = { "27.1.0.1" },
ShortName = "H27.1.0.1",
Date = "2020-02-04",
Parent = "27.1",
ForumLink = "https://forums.warframe.com/topic/1166021-empyrean-kuva-lich-changes-2710-27101/",
ArchiveLink = "https://web.archive.org/web/20210304175214/https://forums.warframe.com/topic/1166021-empyrean-kuva-lich-changes-2710-27101/",
ArchiveDate = "2021-03-04",
Timestamp = 1580842710
},
{
Name = "Hotfix 27.1.1",
Link = "Update 27#Hotfix 27.1.1",
Aliases = { "27.1.1" },
ShortName = "H27.1.1",
Date = "2020-02-11",
Parent = "27.1",
ForumLink = "https://forums.warframe.com/topic/1167915-empyrean-prime-vault-2711/",
ArchiveLink = "https://web.archive.org/web/20210126193804/https://forums.warframe.com/topic/1167915-empyrean-prime-vault-2711/",
ArchiveDate = "2021-01-26",
Timestamp = 1581447528,
Subtitle = "Oberon & Nekros Prime Vault"
},
{
Name = "Hotfix 27.1.2",
Link = "Update 27#Hotfix 27.1.2",
Aliases = { "27.1.2" },
ShortName = "H27.1.2",
Date = "2020-02-18",
Parent = "27.1",
ForumLink = "https://forums.warframe.com/topic/1169441-empyrean-prime-vault-2712/",
ArchiveLink = "https://web.archive.org/web/20210704211814/https://forums.warframe.com/topic/1169441-empyrean-prime-vault-2712/",
ArchiveDate = "2021-07-04",
Timestamp = 1582058062
},
{
Name = "Update 27.2",
Link = "Update 27#Update 27.2",
Aliases = { "27.2", "Warframe Revised" },
ShortName = "U27.2",
Date = "2020-03-05",
Parent = "27.2",
ForumLink = "https://forums.warframe.com/topic/1172454-warframe-revised-update-2720/",
ArchiveLink = "https://web.archive.org/web/20210118233206/https://forums.warframe.com/topic/1172454-warframe-revised-update-2720/",
ArchiveDate = "2021-01-18",
Timestamp = 1583422352,
Subtitle = "Warframe Revised"
},
{
Name = "Hotfix 27.2.1",
Link = "Update 27#Hotfix 27.2.1",
Aliases = { "27.2.1" },
ShortName = "H27.2.1",
Date = "2020-03-05",
Parent = "27.2",
ForumLink = "https://forums.warframe.com/topic/1172684-warframe-revised-hotfix-2721/",
ArchiveLink = "https://web.archive.org/web/20210304160958/https://forums.warframe.com/topic/1172684-warframe-revised-hotfix-2721/",
ArchiveDate = "2021-03-04",
Timestamp = 1583449581
},
{
Name = "Hotfix 27.2.2",
Link = "Update 27#Hotfix 27.2.2",
Aliases = { "27.2.2" },
ShortName = "H27.2.2",
Date = "2020-03-06",
Parent = "27.2",
ForumLink = "https://forums.warframe.com/topic/1173118-warframe-revised-hotfix-2722/",
ArchiveLink = "https://web.archive.org/web/20210302120023/https://forums.warframe.com/topic/1173118-warframe-revised-hotfix-2722/",
ArchiveDate = "2021-03-02",
Timestamp = 1583524887
},
{
Name = "Update 27.3",
Link = "Update 27#Update 27.3",
Aliases = { "27.3" },
ShortName = "U27.3",
Date = "2020-03-24",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1178095-operation-scarlet-spear-2730/",
ArchiveLink = "https://web.archive.org/web/20210303184144/https://forums.warframe.com/topic/1178095-operation-scarlet-spear-2730/",
ArchiveDate = "2021-03-03",
Timestamp = 1585069387,
Subtitle = "Operation: Scarlet Spear"
},
{
Name = "Hotfix 27.3.1",
Link = "Update 27#Hotfix 27.3.1",
Aliases = { "27.3.1" },
ShortName = "H27.3.1",
Date = "2020-03-24",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1178166-operation-scarlet-spear-hotfix-2731/",
ArchiveLink = "https://web.archive.org/web/20201214234236/https://forums.warframe.com/topic/1178166-operation-scarlet-spear-hotfix-2731/",
ArchiveDate = "2020-12-14",
Timestamp = 1585077699
},
{
Name = "Hotfix 27.3.2",
Link = "Update 27#Hotfix 27.3.2",
Aliases = { "27.3.2" },
ShortName = "H27.3.2",
Date = "2020-03-24",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1178343-operation-scarlet-spear-hotfix-2732/",
ArchiveLink = "https://web.archive.org/web/20201214234110/https://forums.warframe.com/topic/1178343-operation-scarlet-spear-hotfix-2732/",
ArchiveDate = "2020-12-14",
Timestamp = 1585103573
},
{
Name = "Hotfix 27.3.3",
Link = "Update 27#Hotfix 27.3.3",
Aliases = { "27.3.3" },
ShortName = "H27.3.3",
Date = "2020-03-25",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1178728-operation-scarlet-spear-hotfix-2733/",
ArchiveLink = "https://web.archive.org/web/20210507044300/https://forums.warframe.com/topic/1178728-operation-scarlet-spear-hotfix-2733/",
ArchiveDate = "2021-05-07",
Timestamp = 1585172512
},
{
Name = "Hotfix 27.3.4",
Link = "Update 27#Hotfix 27.3.4",
Aliases = { "27.3.4" },
ShortName = "H27.3.4",
Date = "2020-03-26",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1179144-operation-scarlet-spear-hotfix-2734/",
ArchiveLink = "https://web.archive.org/web/20210226193917/https://forums.warframe.com/topic/1179144-operation-scarlet-spear-hotfix-2734/",
ArchiveDate = "2021-02-26",
Timestamp = 1585252299
},
{
Name = "Hotfix 27.3.5",
Link = "Update 27#Hotfix 27.3.5",
Aliases = { "27.3.5" },
ShortName = "H27.3.5",
Date = "2020-03-27",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1179539-operation-scarlet-spear-hotfix-2735/",
ArchiveLink = "https://web.archive.org/web/20201214231635/https://forums.warframe.com/topic/1179539-operation-scarlet-spear-hotfix-2735/",
ArchiveDate = "2020-12-14",
Timestamp = 1585332067
},
{
Name = "Hotfix 27.3.6",
Link = "Update 27#Hotfix 27.3.6",
Aliases = { "27.3.6" },
ShortName = "H27.3.6",
Date = "2020-03-31",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1180787-operation-scarlet-spear-titania-prime-2736/",
ArchiveLink = "https://web.archive.org/web/20201215025008/https://forums.warframe.com/topic/1180787-operation-scarlet-spear-titania-prime-2736/",
ArchiveDate = "2020-12-15",
Timestamp = 1585674264,
Subtitle = "Titania Prime"
},
{
Name = "Hotfix 27.3.7",
Link = "Update 27#Hotfix 27.3.7",
Aliases = { "27.3.7" },
ShortName = "H27.3.7",
Date = "2020-03-31",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1180847-operation-scarlet-spear-titania-prime-2737/",
ArchiveLink = "https://web.archive.org/web/20201215025506/https://forums.warframe.com/topic/1180847-operation-scarlet-spear-titania-prime-2737/",
ArchiveDate = "2020-12-15",
Timestamp = 1585685513
},
{
Name = "Hotfix 27.3.8",
Link = "Update 27#Hotfix 27.3.8",
Aliases = { "27.3.8" },
ShortName = "H27.3.8",
Date = "2020-04-02",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1181462-operation-scarlet-spear-tennogen-2738-27381-27382/",
ArchiveLink = "https://web.archive.org/web/20210903203456/https://forums.warframe.com/topic/1181462-operation-scarlet-spear-tennogen-2738-27381-27382/",
ArchiveDate = "2021-09-03",
Timestamp = 1585845188,
Subtitle = "TennoGen Round 18"
},
{
Name = "Hotfix 27.3.8.1",
Link = "Update 27#Hotfix 27.3.8.1",
Aliases = { "27.3.8.1" },
ShortName = "H27.3.8.1",
Date = "2020-04-02",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1181462-operation-scarlet-spear-tennogen-2738-27381-27382/",
ArchiveLink = "https://web.archive.org/web/20210903203456/https://forums.warframe.com/topic/1181462-operation-scarlet-spear-tennogen-2738-27381-27382/",
ArchiveDate = "2021-09-03",
Timestamp = 1585845188
},
{
Name = "Hotfix 27.3.8.2",
Link = "Update 27#Hotfix 27.3.8.2",
Aliases = { "27.3.8.2" },
ShortName = "H27.3.8.2",
Date = "2020-04-03",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1181462-operation-scarlet-spear-tennogen-2738-27381-27382/",
ArchiveLink = "https://web.archive.org/web/20210903203456/https://forums.warframe.com/topic/1181462-operation-scarlet-spear-tennogen-2738-27381-27382/",
ArchiveDate = "2021-09-03",
Timestamp = 1585845188
},
{
Name = "Hotfix 27.3.9",
Link = "Update 27#Hotfix 27.3.9",
Aliases = { "27.3.9" },
ShortName = "H27.3.9",
Date = "2020-04-07",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1182949-scarlet-spear-tennogen-2739/",
ArchiveLink = "https://web.archive.org/web/20201216023026/https://forums.warframe.com/topic/1182949-scarlet-spear-tennogen-2739/",
ArchiveDate = "2020-12-16",
Timestamp = 1586266965
},
{
Name = "Hotfix 27.3.10",
Link = "Update 27#Hotfix 27.3.10",
Aliases = { "27.3.10" },
ShortName = "H27.3.10",
Date = "2020-04-08",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1183272-scarlet-spear-tennogen-27310/",
ArchiveLink = "https://web.archive.org/web/20201216051858/https://forums.warframe.com/topic/1183272-scarlet-spear-tennogen-27310/",
ArchiveDate = "2020-12-16",
Timestamp = 1586358138
},
{
Name = "Hotfix 27.3.11",
Link = "Update 27#Hotfix 27.3.11",
Aliases = { "27.3.11" },
ShortName = "H27.3.11",
Date = "2020-04-09",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1183684-scarlet-spear-27311/",
ArchiveLink = "https://web.archive.org/web/20201216084828/https://forums.warframe.com/topic/1183684-scarlet-spear-27311/",
ArchiveDate = "2020-12-16",
Timestamp = 1586460731
},
{
Name = "Hotfix 27.3.12",
Link = "Update 27#Hotfix 27.3.12",
Aliases = { "27.3.12" },
ShortName = "H27.3.12",
Date = "2020-04-14",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1185014-scarlet-spear-27312/",
ArchiveLink = "https://web.archive.org/web/20210226021852/https://forums.warframe.com/topic/1185014-scarlet-spear-27312/",
ArchiveDate = "2021-02-26",
Timestamp = 1586871136
},
{
Name = "Hotfix 27.3.13",
Link = "Update 27#Hotfix 27.3.13",
Aliases = { "27.3.13" },
ShortName = "H27.3.13",
Date = "2020-04-14",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1185141-scarlet-spear-27313/",
ArchiveLink = "https://web.archive.org/web/20211106035955/https://forums.warframe.com/topic/1185141-scarlet-spear-27313/",
ArchiveDate = "2021-11-06",
Timestamp = 1586893932
},
{
Name = "Hotfix 27.3.14",
Link = "Update 27#Hotfix 27.3.14",
Aliases = { "27.3.14" },
ShortName = "H27.3.14",
Date = "2020-04-15",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1185406-scarlet-spear-27314/",
ArchiveLink = "https://web.archive.org/web/20210118233411/https://forums.warframe.com/topic/1185406-scarlet-spear-27314/",
ArchiveDate = "2021-01-18",
Timestamp = 1586973707
},
{
Name = "Hotfix 27.3.15",
Link = "Update 27#Hotfix 27.3.15",
Aliases = { "27.3.15" },
ShortName = "H27.3.15",
Date = "2020-04-17",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1185940-scarlet-spear-27315-273151/",
ArchiveLink = "https://web.archive.org/web/20210118235824/https://forums.warframe.com/topic/1185940-scarlet-spear-27315-273151/",
ArchiveDate = "2021-01-18",
Timestamp = 1587144685
},
{
Name = "Hotfix 27.3.15.1",
Link = "Update 27#Hotfix 27.3.15.1",
Aliases = { "27.3.15.1" },
ShortName = "H27.3.15.1",
Date = "2020-04-17",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1185940-scarlet-spear-27315-273151/",
ArchiveLink = "https://web.archive.org/web/20210118235824/https://forums.warframe.com/topic/1185940-scarlet-spear-27315-273151/",
ArchiveDate = "2021-01-18",
Timestamp = 1587144685
},
{
Name = "Hotfix 27.3.16",
Link = "Update 27#Hotfix 27.3.16",
Aliases = { "27.3.16" },
ShortName = "H27.3.16",
Date = "2020-04-22",
Parent = "27.3",
ForumLink = "https://forums.warframe.com/topic/1187202-scarlet-spear-27316/",
ArchiveLink = "https://web.archive.org/web/20210119002829/https://forums.warframe.com/topic/1187202-scarlet-spear-27316/",
ArchiveDate = "2021-01-19",
Timestamp = 1587577900
},
{
Name = "Update 27.4",
Link = "Update 27#Update 27.4",
Aliases = { "27.4" },
ShortName = "U27.4",
Date = "2020-05-01",
Parent = "27.4",
ForumLink = "https://forums.warframe.com/topic/1189247-warframe-revised-railjack-revisited-part-1-update-274/",
ArchiveLink = "https://web.archive.org/web/20211011084809/https://forums.warframe.com/topic/1189247-warframe-revised-railjack-revisited-part-1-update-274/",
ArchiveDate = "2021-10-11",
Timestamp = 1588339306,
Subtitle = "Warframe Revised: Railjack Revisited (Part 1)"
},
{
Name = "Hotfix 27.4.1",
Link = "Update 27#Hotfix 27.4.1",
Aliases = { "27.4.1" },
ShortName = "H27.4.1",
Date = "2020-05-01",
Parent = "27.4",
ForumLink = "https://forums.warframe.com/topic/1189425-warframe-revised-railjack-revisited-part-1-hotfix-2741/",
ArchiveLink = "https://web.archive.org/web/20210226170607/https://forums.warframe.com/topic/1189425-warframe-revised-railjack-revisited-part-1-hotfix-2741/",
ArchiveDate = "2021-02-26",
Timestamp = 1588364209
},
{
Name = "Hotfix 27.4.2",
Link = "Update 27#Hotfix 27.4.2",
Aliases = { "27.4.2" },
ShortName = "H27.4.2",
Date = "2020-05-04",
Parent = "27.4",
ForumLink = "https://forums.warframe.com/topic/1190432-warframe-revised-railjack-revisited-part-1-hotfix-2742/",
ArchiveLink = "https://web.archive.org/web/20210226152851/https://forums.warframe.com/topic/1190432-warframe-revised-railjack-revisited-part-1-hotfix-2742/",
ArchiveDate = "2021-02-26",
Timestamp = 1588618291
},
{
Name = "Hotfix 27.4.3",
Link = "Update 27#Hotfix 27.4.3",
Aliases = { "27.4.3" },
ShortName = "H27.4.3",
Date = "2020-05-05",
Parent = "27.4",
ForumLink = "https://forums.warframe.com/topic/1190778-warframe-revised-railjack-revisited-part-1-hotfix-2743/",
ArchiveLink = "https://web.archive.org/web/20210226171203/https://forums.warframe.com/topic/1190778-warframe-revised-railjack-revisited-part-1-hotfix-2743/",
ArchiveDate = "2021-02-26",
Timestamp = 1588711946
},
{
Name = "Hotfix 27.4.4",
Link = "Update 27#Hotfix 27.4.4",
Aliases = { "27.4.4" },
ShortName = "H27.4.4",
Date = "2020-05-07",
Parent = "27.4",
ForumLink = "https://forums.warframe.com/topic/1191283-warframe-revised-railjack-revisited-part-1-hotfix-2744/",
ArchiveLink = "https://web.archive.org/web/20210226170750/https://forums.warframe.com/topic/1191283-warframe-revised-railjack-revisited-part-1-hotfix-2744/",
ArchiveDate = "2021-02-26",
Timestamp = 1588879227
},
{
Name = "Update 27.5.0",
Link = "Update 27#Update 27.5.0",
Aliases = { "27.5.0", "27.5", "Glassmaker" },
ShortName = "U27.5",
Date = "2020-05-12",
Parent = "27.5",
ForumLink = "https://forums.warframe.com/topic/1192415-nightwave-series-3-glassmaker-update-2750/",
ArchiveLink = "https://web.archive.org/web/20210301075451/https://forums.warframe.com/topic/1192415-nightwave-series-3-glassmaker-update-2750/",
ArchiveDate = "2021-03-01",
Timestamp = 1589294260,
Subtitle = "Nightwave Series 3: Glassmaker"
},
{
Name = "Hotfix 27.5.1",
Link = "Update 27#Hotfix 27.5.1",
Aliases = { "27.5.1" },
ShortName = "H27.5.1",
Date = "2020-05-12",
Parent = "27.5",
ForumLink = "https://forums.warframe.com/topic/1192506-nightwave-series-3-glassmaker-hotfix-2751/",
ArchiveLink = "https://web.archive.org/web/20210226164813/https://forums.warframe.com/topic/1192506-nightwave-series-3-glassmaker-hotfix-2751/",
ArchiveDate = "2021-02-26",
Timestamp = 1589331152
},
{
Name = "Hotfix 27.5.2",
Link = "Update 27#Hotfix 27.5.2",
Aliases = { "27.5.2" },
ShortName = "H27.5.2",
Date = "2020-05-13",
Parent = "27.5",
ForumLink = "https://forums.warframe.com/topic/1192961-nightwave-series-3-glassmaker-hotfix-2752/",
ArchiveLink = "https://web.archive.org/web/20210226165303/https://forums.warframe.com/topic/1192961-nightwave-series-3-glassmaker-hotfix-2752/",
ArchiveDate = "2021-02-26",
Timestamp = 1589305952
},
{
Name = "Hotfix 27.5.3",
Link = "Update 27#Hotfix 27.5.3",
Aliases = { "27.5.3" },
ShortName = "H27.5.3",
Date = "2020-05-15",
Parent = "27.5",
ForumLink = "https://forums.warframe.com/topic/1193593-nightwave-series-3-glassmaker-hotfix-2753/",
ArchiveLink = "https://web.archive.org/web/20210226165339/https://forums.warframe.com/topic/1193593-nightwave-series-3-glassmaker-hotfix-2753/",
ArchiveDate = "2021-02-26",
Timestamp = 1589565863
},
{
Name = "Hotfix 27.5.4",
Link = "Update 27#Hotfix 27.5.4",
Aliases = { "27.5.4" },
ShortName = "H27.5.4",
Date = "2020-05-20",
Parent = "27.5",
ForumLink = "https://forums.warframe.com/topic/1194906-nightwave-series-3-glassmaker-hotfix-2754/",
ArchiveLink = "https://web.archive.org/web/20210226164103/https://forums.warframe.com/topic/1194906-nightwave-series-3-glassmaker-hotfix-2754/",
ArchiveDate = "2021-02-26",
Timestamp = 1589995752
},
{
Name = "Hotfix 27.5.5",
Link = "Update 27#Hotfix 27.5.5",
Aliases = { "27.5.5" },
ShortName = "H27.5.5",
Date = "2020-05-21",
Parent = "27.5",
ForumLink = "https://forums.warframe.com/topic/1195171-nightwave-series-3-glassmaker-hotfix-2755/",
ArchiveLink = "https://web.archive.org/web/20210119095645/https://forums.warframe.com/topic/1195171-nightwave-series-3-glassmaker-hotfix-2755/",
ArchiveDate = "2021-01-19",
Timestamp = 1590072630
},
{
Name = "Hotfix 27.5.6",
Link = "Update 27#Hotfix 27.5.6",
Aliases = { "27.5.6" },
ShortName = "H27.5.6",
Date = "2020-05-26",
Parent = "27.5",
ForumLink = "https://forums.warframe.com/topic/1196415-prime-vault-hotfix-2756-27561/",
ArchiveLink = "https://web.archive.org/web/20210226194416/https://forums.warframe.com/topic/1196415-prime-vault-hotfix-2756-27561/",
ArchiveDate = "2021-02-26",
Timestamp = 1590516849,
Subtitle = "Trinity & Nova Prime Vault"
},
{
Name = "Hotfix 27.5.6.1",
Link = "Update 27#Hotfix 27.5.6.1",
Aliases = { "27.5.6.1" },
ShortName = "H27.5.6.1",
Date = "2020-05-27",
Parent = "27.5",
ForumLink = "https://forums.warframe.com/topic/1196415-prime-vault-hotfix-2756-27561/",
ArchiveLink = "https://web.archive.org/web/20210226194416/https://forums.warframe.com/topic/1196415-prime-vault-hotfix-2756-27561/",
ArchiveDate = "2021-02-26",
Timestamp = 1590516849
},
{
Name = "Update 28.0",
Link = "Update 28#Update 28.0",
Aliases = { "28.0", "28", "The Deadlock Protocol" },
ShortName = "U28.0",
Date = "2020-06-11",
Parent = "28.0",
ForumLink = "https://forums.warframe.com/topic/1199557-update-28-the-deadlock-protocol/",
ArchiveLink = "https://web.archive.org/web/20210114194606/https://forums.warframe.com/topic/1199557-update-28-the-deadlock-protocol/",
ArchiveDate = "2021-01-14",
Timestamp = 1591896588,
Subtitle = "The Deadlock Protocol"
},
{
Name = "Hotfix 28.0.1",
Link = "Update 28#Hotfix 28.0.1",
Aliases = { "28.0.1" },
ShortName = "H28.0.1",
Date = "2020-06-11",
Parent = "28.0",
ForumLink = "https://forums.warframe.com/topic/1199617-the-deadlock-protocol-hotfix-2801/",
ArchiveLink = "https://web.archive.org/web/20201220040712/https://forums.warframe.com/topic/1199617-the-deadlock-protocol-hotfix-2801/",
ArchiveDate = "2020-12-20",
Timestamp = 1591903523
},
{
Name = "Hotfix 28.0.2",
Link = "Update 28#Hotfix 28.0.2",
Aliases = { "28.0.2" },
ShortName = "H28.0.2",
Date = "2020-06-11",
Parent = "28.0",
ForumLink = "https://forums.warframe.com/topic/1199763-the-deadlock-protocol-hotfix-2802/",
ArchiveLink = "https://web.archive.org/web/20201220052128/https://forums.warframe.com/topic/1199763-the-deadlock-protocol-hotfix-2802/",
ArchiveDate = "2020-12-20",
Timestamp = 1591921020
},
{
Name = "Hotfix 28.0.3",
Link = "Update 28#Hotfix 28.0.3",
Aliases = { "28.0.3" },
ShortName = "H28.0.3",
Date = "2020-06-12",
Parent = "28.0",
ForumLink = "https://forums.warframe.com/topic/1200099-the-deadlock-protocol-hotfix-2803/",
ArchiveLink = "https://web.archive.org/web/20201220060245/https://forums.warframe.com/topic/1200099-the-deadlock-protocol-hotfix-2803/",
ArchiveDate = "2020-12-20",
Timestamp = 1591992606
},
{
Name = "Hotfix 28.0.4",
Link = "Update 28#Hotfix 28.0.4",
Aliases = { "28.0.4" },
ShortName = "H28.0.4",
Date = "2020-06-12",
Parent = "28.0",
ForumLink = "https://forums.warframe.com/topic/1200134-the-deadlock-protocol-hotfix-2804/",
ArchiveLink = "https://web.archive.org/web/20201220060002/https://forums.warframe.com/topic/1200134-the-deadlock-protocol-hotfix-2804/",
ArchiveDate = "2020-12-20",
Timestamp = 1591997760
},
{
Name = "Hotfix 28.0.5",
Link = "Update 28#Hotfix 28.0.5",
Aliases = { "28.0.5" },
ShortName = "H28.0.5",
Date = "2020-06-17",
Parent = "28.0",
ForumLink = "https://forums.warframe.com/topic/1201526-the-deadlock-protocol-hotfix-2805/",
ArchiveLink = "https://web.archive.org/web/20210112182008/https://forums.warframe.com/topic/1201526-the-deadlock-protocol-hotfix-2805/",
ArchiveDate = "2021-01-12",
Timestamp = 1591997760
},
{
Name = "Hotfix 28.0.6",
Link = "Update 28#Hotfix 28.0.6",
Aliases = { "28.0.6" },
ShortName = "H28.0.6",
Date = "2020-06-24",
Parent = "28.0",
ForumLink = "https://forums.warframe.com/topic/1203007-the-deadlock-protocol-hotfix-2806-28061/",
ArchiveLink = "https://web.archive.org/web/20211008123834/https://forums.warframe.com/topic/1203007-the-deadlock-protocol-hotfix-2806-28061/",
ArchiveDate = "2021-10-08",
Timestamp = 1593021622
},
{
Name = "Hotfix 28.0.6.1",
Link = "Update 28#Hotfix 28.0.6.1",
Aliases = { "28.0.6.1" },
ShortName = "H28.0.6.1",
Date = "2020-06-24",
Parent = "28.0",
ForumLink = "https://forums.warframe.com/topic/1203007-the-deadlock-protocol-hotfix-2806-28061/",
ArchiveLink = "https://web.archive.org/web/20211008123834/https://forums.warframe.com/topic/1203007-the-deadlock-protocol-hotfix-2806-28061/",
ArchiveDate = "2021-10-08",
Timestamp = 1593021622
},
{
Name = "Hotfix 28.0.7",
Link = "Update 28#Hotfix 28.0.7",
Aliases = { "28.0.7" },
ShortName = "H28.0.7",
Date = "2020-06-25",
Parent = "28.0",
ForumLink = "https://forums.warframe.com/topic/1203240-the-deadlock-protocol-hotfix-2807/",
ArchiveLink = "https://web.archive.org/web/20210113092736/https://forums.warframe.com/topic/1203240-the-deadlock-protocol-hotfix-2807/",
ArchiveDate = "2021-01-13",
Timestamp = 1593099814
},
{
Name = "Update 28.1",
Link = "Update 28#Update 28.1",
Aliases = { "28.1.0", "28.1", "The Steel Path" },
ShortName = "U28.1",
Date = "2020-07-08",
Parent = "28.1",
ForumLink = "https://forums.warframe.com/topic/1205630-the-steel-path-update-2810/",
ArchiveLink = "https://web.archive.org/web/20210814165514/https://forums.warframe.com/topic/1205630-the-steel-path-update-2810/",
ArchiveDate = "2021-08-14",
Timestamp = 1594238960,
Subtitle = "The Steel Path"
},
{
Name = "Hotfix 28.1.1",
Link = "Update 28#Hotfix 28.1.1",
Aliases = { "28.1.1" },
ShortName = "H28.1.1",
Date = "2020-07-09",
Parent = "28.1",
ForumLink = "https://forums.warframe.com/topic/1205966-the-steel-path-hotfix-2811/",
ArchiveLink = "https://web.archive.org/web/20210114080836/https://forums.warframe.com/topic/1205966-the-steel-path-hotfix-2811/",
ArchiveDate = "2021-01-14",
Timestamp = 1594324097
},
{
Name = "Update 28.2",
Link = "Update 28#Update 28.2",
Aliases = { "28.2.0", "28.2", "Inaros Prime" },
ShortName = "U28.2",
Date = "2020-07-14",
Parent = "28.2",
ForumLink = "https://forums.warframe.com/topic/1207002-the-steel-path-inaros-prime-2820-28201/",
ArchiveLink = "https://web.archive.org/web/20211023122632/https://forums.warframe.com/topic/1207002-the-steel-path-inaros-prime-2820-28201/",
ArchiveDate = "2021-10-23",
Timestamp = 1594749669,
Subtitle = "Inaros Prime"
},
{
Name = "Hotfix 28.2.0.1",
Link = "Update 28#Hotfix 28.2.0.1",
Aliases = { "28.2.0.1" },
ShortName = "H28.2.0.1",
Date = "2020-07-14",
Parent = "28.2",
ForumLink = "https://forums.warframe.com/topic/1207002-the-steel-path-inaros-prime-2820-28201/",
ArchiveLink = "https://web.archive.org/web/20211023122632/https://forums.warframe.com/topic/1207002-the-steel-path-inaros-prime-2820-28201/",
ArchiveDate = "2021-10-23",
Timestamp = 1594749669
},
{
Name = "Hotfix 28.2.1",
Link = "Update 28#Hotfix 28.2.1",
Aliases = { "28.2.1" },
ShortName = "H28.2.1",
Date = "2020-08-01",
Parent = "28.2",
ForumLink = "https://forums.warframe.com/topic/1209933-the-steel-path-inaros-prime-2821/",
ArchiveLink = "https://web.archive.org/web/20201128113731/https://forums.warframe.com/topic/1209933-the-steel-path-inaros-prime-2821/",
ArchiveDate = "2020-11-28",
Timestamp = 1596290288
},
{
Name = "Update 28.3",
Link = "Update 28#Update 28.3",
Aliases = { "28.3.0", "28.3", "Derelict Shift" },
ShortName = "U28.3",
Date = "2020-08-12",
Parent = "28.3",
ForumLink = "https://forums.warframe.com/topic/1212935-derelict-shift-update-2830/",
ArchiveLink = "https://web.archive.org/web/20210511191158/https://forums.warframe.com/topic/1212935-derelict-shift-update-2830/",
ArchiveDate = "2021-05-11",
Timestamp = 1597257292,
Subtitle = "Derelict Shift"
},
{
Name = "Hotfix 28.3.1",
Link = "Update 28#Hotfix 28.3.1",
Aliases = { "28.3.1" },
ShortName = "H28.3.1",
Date = "2020-08-12",
Parent = "28.3",
ForumLink = "https://forums.warframe.com/topic/1213044-derelict-shift-hotfix-2831/",
ArchiveLink = "https://web.archive.org/web/20210116210903/https://forums.warframe.com/topic/1213044-derelict-shift-hotfix-2831/",
ArchiveDate = "2021-01-16",
Timestamp = 1597266311
},
{
Name = "Hotfix 28.3.2",
Link = "Update 28#Hotfix 28.3.2",
Aliases = { "28.3.2" },
ShortName = "H28.3.2",
Date = "2020-08-12",
Parent = "28.3",
ForumLink = "https://forums.warframe.com/topic/1213180-derelict-shift-hotfix-2832/",
ArchiveLink = "https://web.archive.org/web/20210116220507/https://forums.warframe.com/topic/1213180-derelict-shift-hotfix-2832/",
ArchiveDate = "2021-01-16",
Timestamp = 1597281046
},
{
Name = "Hotfix 28.3.3",
Link = "Update 28#Hotfix 28.3.3",
Aliases = { "28.3.3" },
ShortName = "H28.3.3",
Date = "2020-08-13",
Parent = "28.3",
ForumLink = "https://forums.warframe.com/topic/1213570-derelict-shift-hotfix-2833/",
ArchiveLink = "https://web.archive.org/web/20210116210500/https://forums.warframe.com/topic/1213570-derelict-shift-hotfix-2833/",
ArchiveDate = "2021-01-16",
Timestamp = 1597347434
},
{
Name = "Update 29.0",
Link = "Update 29",
Aliases = { "29", "29.0", "Heart of Deimos" },
ShortName = "U29.0",
Date = "2020-08-25",
Parent = "29.0",
ForumLink = "https://forums.warframe.com/topic/1216407-heart-of-deimos-update-29/",
ArchiveLink = "https://web.archive.org/web/20211011164447/https://forums.warframe.com/topic/1216407-heart-of-deimos-update-29/",
ArchiveDate = "2021-10-11",
Timestamp = 1598385420,
Subtitle = "Heart of Deimos"
},
{
Name = "Hotfix 29.0.1",
Link = "Update 29#Hotfix 29.0.1",
Aliases = { "29.0.1" },
ShortName = "H29.0.1",
Date = "2020-08-25",
Parent = "29.0",
ForumLink = "https://forums.warframe.com/topic/1216573-heart-of-deimos-hotfix-2901/",
ArchiveLink = "https://web.archive.org/web/20210224171912/https://forums.warframe.com/topic/1216573-heart-of-deimos-hotfix-2901/",
ArchiveDate = "2021-02-24",
Timestamp = 1598425133
},
{
Name = "Hotfix 29.0.2",
Link = "Update 29#Hotfix 29.0.2",
Aliases = { "29.0.2" },
ShortName = "H29.0.2",
Date = "2020-08-26",
Parent = "29.0",
ForumLink = "https://forums.warframe.com/topic/1217239-heart-of-deimos-hotfix-2902/",
ArchiveLink = "https://web.archive.org/web/20210224183054/https://forums.warframe.com/topic/1217239-heart-of-deimos-hotfix-2902/",
ArchiveDate = "2021-02-24",
Timestamp = 1598496970
},
{
Name = "Hotfix 29.0.3",
Link = "Update 29#Hotfix 29.0.3",
Aliases = { "29.0.3" },
ShortName = "H29.0.3",
Date = "2020-08-26",
Parent = "29.0",
ForumLink = "https://forums.warframe.com/topic/1217375-heart-of-deimos-hotfix-2903/",
ArchiveLink = "https://web.archive.org/web/20210224182801/https://forums.warframe.com/topic/1217375-heart-of-deimos-hotfix-2903/",
ArchiveDate = "2021-02-24",
Timestamp = 1598488272
},
{
Name = "Hotfix 29.0.4",
Link = "Update 29#Hotfix 29.0.4",
Aliases = { "29.0.4" },
ShortName = "H29.0.4",
Date = "2020-08-27",
Parent = "29.0",
ForumLink = "https://forums.warframe.com/topic/1218017-heart-of-deimos-hotfix-2904/",
ArchiveLink = "https://web.archive.org/web/20210224182904/https://forums.warframe.com/topic/1218017-heart-of-deimos-hotfix-2904/",
ArchiveDate = "2021-02-24",
Timestamp = 1598569531
},
{
Name = "Hotfix 29.0.5",
Link = "Update 29#Hotfix 29.0.5",
Aliases = { "29.0.5" },
ShortName = "H29.0.5",
Date = "2020-08-28",
Parent = "29.0",
ForumLink = "https://forums.warframe.com/topic/1218594-heart-of-deimos-hotfix-2905/",
ArchiveLink = "https://web.archive.org/web/20210224182715/https://forums.warframe.com/topic/1218594-heart-of-deimos-hotfix-2905/",
ArchiveDate = "2021-02-24",
Timestamp = 1598644421
},
{
Name = "Hotfix 29.0.6",
Link = "Update 29#Hotfix 29.0.6",
Aliases = { "29.0.6" },
ShortName = "H29.0.6",
Date = "2020-09-01",
Parent = "29.0",
ForumLink = "https://forums.warframe.com/topic/1220813-heart-of-deimos-hotfix-2906/",
ArchiveLink = "https://web.archive.org/web/20210224182939/https://forums.warframe.com/topic/1220813-heart-of-deimos-hotfix-2906/",
ArchiveDate = "2021-02-24",
Timestamp = 1599000505
},
{
Name = "Hotfix 29.0.7",
Link = "Update 29#Hotfix 29.0.7",
Aliases = { "29.0.7" },
ShortName = "H29.0.7",
Date = "2020-09-03",
Parent = "29.0",
ForumLink = "https://forums.warframe.com/topic/1221646-heart-of-deimos-hotfix-2907/",
ArchiveLink = "https://web.archive.org/web/20210226191455/https://forums.warframe.com/topic/1221646-heart-of-deimos-hotfix-2907/",
ArchiveDate = "2021-02-26",
Timestamp = 1599163985
},
{
Name = "Hotfix 29.0.8",
Link = "Update 29#Hotfix 29.0.8",
Aliases = { "29.0.8" },
ShortName = "H29.0.8",
Date = "2020-09-10",
Parent = "29.0",
ForumLink = "https://forums.warframe.com/topic/1224002-heart-of-deimos-hotfix-2908-29081/",
ArchiveLink = "https://web.archive.org/web/20200911195524/https://forums.warframe.com/topic/1224002-heart-of-deimos-hotfix-2908-29081/",
ArchiveDate = "2020-09-11",
Timestamp = 1599762527
},
{
Name = "Hotfix 29.0.8.1",
Link = "Update 29#Hotfix 29.0.8.1",
Aliases = { "29.0.8.1" },
ShortName = "H29.0.8.1",
Date = "2020-09-10",
Parent = "29.0",
ForumLink = "https://forums.warframe.com/topic/1224002-heart-of-deimos-hotfix-2908/",
ArchiveLink = "https://web.archive.org/web/20200911195524/https://forums.warframe.com/topic/1224002-heart-of-deimos-hotfix-2908-29081/",
ArchiveDate = "2020-09-11",
Timestamp = 1599762527
},
{
Name = "Update 29.1",
Link = "Update 29#Update 29.1",
Aliases = { "29.1", "29.1.0" },
ShortName = "U29.1",
Date = "2020-09-17",
Parent = "29.1",
ForumLink = "https://forums.warframe.com/topic/1225874-heart-of-deimos-update-2910/",
ArchiveLink = "https://web.archive.org/web/20210719154755/https://forums.warframe.com/topic/1225874-heart-of-deimos-update-2910/",
ArchiveDate = "2021-07-19",
Timestamp = 1600358671,
Subtitle = "The Great Ensmallening - Phase 1 + Oscira Collection"
},
{
Name = "Hotfix 29.1.1",
Link = "Update 29#Hotfix 29.1.1",
Aliases = { "29.1.1" },
ShortName = "H29.1.1",
Date = "2020-09-18",
Parent = "29.1",
ForumLink = "https://forums.warframe.com/topic/1226276-heart-of-deimos-hotfix-2911/",
ArchiveLink = "https://web.archive.org/web/20210123103311/https://forums.warframe.com/topic/1226276-heart-of-deimos-hotfix-2911/",
ArchiveDate = "2021-01-23",
Timestamp = 1600456740
},
{
Name = "Hotfix 29.1.2",
Link = "Update 29#Hotfix 29.1.2",
Aliases = { "29.1.2" },
ShortName = "H29.1.2",
Date = "2020-09-22",
Parent = "29.1",
ForumLink = "https://forums.warframe.com/topic/1227236-heart-of-deimos-hotfix-2912-hotfix-29121/",
ArchiveLink = "https://web.archive.org/web/20210123113337/https://forums.warframe.com/topic/1227236-heart-of-deimos-hotfix-2912-hotfix-29121/",
ArchiveDate = "2021-01-23",
Timestamp = 1600799510
},
{
Name = "Hotfix 29.1.2.1",
Link = "Update 29#Hotfix 29.1.2.1",
Aliases = { "29.1.2.1" },
ShortName = "H29.1.2.1",
Date = "2020-09-22",
Parent = "29.1",
ForumLink = "https://forums.warframe.com/topic/1227236-heart-of-deimos-hotfix-2912-hotfix-29121/",
ArchiveLink = "https://web.archive.org/web/20210123113337/https://forums.warframe.com/topic/1227236-heart-of-deimos-hotfix-2912-hotfix-29121/",
ArchiveDate = "2021-01-23",
Timestamp = 1600799510
},
{
Name = "Update 29.2",
Link = "Update 29#Update 29.2",
Aliases = { "29.2", "29.2.0" },
ShortName = "U29.2",
Date = "2020-09-29",
Parent = "29.2",
ForumLink = "https://forums.warframe.com/topic/1228676-heart-of-deimos-prime-vault-2920/",
ArchiveLink = "https://web.archive.org/web/20211023160657/https://forums.warframe.com/topic/1228676-heart-of-deimos-prime-vault-2920/",
ArchiveDate = "2021-10-23",
Timestamp = 1601403133,
Subtitle = "Ember & Frost Prime Vault"
},
{
Name = "Hotfix 29.2.1",
Link = "Update 29#Hotfix 29.2.1",
Aliases = { "29.2.1" },
ShortName = "H29.2.1",
Date = "2020-10-01",
Parent = "29.2",
ForumLink = "https://forums.warframe.com/topic/1229060-heart-of-deimos-tennogen-2921/",
ArchiveLink = "https://web.archive.org/web/20201020071417/https://forums.warframe.com/topic/1229060-heart-of-deimos-tennogen-2921/",
ArchiveDate = "2020-10-20",
Timestamp = 1601581860,
Subtitle = "TennoGen Round 19 - Part 1"
},
{
Name = "Hotfix 29.2.2",
Link = "Update 29#Hotfix 29.2.2",
Aliases = { "29.2.2" },
ShortName = "H29.2.2",
Date = "2020-10-06",
Parent = "29.2",
ForumLink = "https://forums.warframe.com/topic/1229890-heart-of-deimos-hotfix-2922/",
ArchiveLink = "https://web.archive.org/web/20210123122146/https://forums.warframe.com/topic/1229890-heart-of-deimos-hotfix-2922/",
ArchiveDate = "2021-01-23",
Timestamp = 1602012960
},
{
Name = "Hotfix 29.2.3",
Link = "Update 29#Hotfix 29.2.3",
Aliases = { "29.2.3" },
ShortName = "H29.2.3",
Date = "2020-10-08",
Parent = "29.2",
ForumLink = "https://forums.warframe.com/topic/1230227-heart-of-deimos-hotfix-2923/",
ArchiveLink = "https://web.archive.org/web/20210123111602/https://forums.warframe.com/topic/1230227-heart-of-deimos-hotfix-2923/",
ArchiveDate = "2021-01-23",
Timestamp = 1602196320
},
{
Name = "Hotfix 29.2.4",
Link = "Update 29#Hotfix 29.2.4",
Aliases = { "29.2.4" },
ShortName = "H29.2.4",
Date = "2020-10-15",
Parent = "29.2",
ForumLink = "https://forums.warframe.com/topic/1231382-heart-of-deimos-hotfix-2924-nights-of-naberus/",
ArchiveLink = "https://web.archive.org/web/20211011111635/https://forums.warframe.com/topic/1231382-heart-of-deimos-hotfix-2924-nights-of-naberus/",
ArchiveDate = "2021-10-11",
Timestamp = 1602789089,
Subtitle = "Nights of Naberus"
},
{
Name = "Update 29.3",
Link = "Update 29#Update 29.3",
Aliases = { "29.3", "29.3.0" },
ShortName = "U29.3",
Date = "2020-10-27",
Parent = "29.3",
ForumLink = "https://forums.warframe.com/topic/1232841-heart-of-deimos-nezha-prime-2930-29301/",
ArchiveLink = "https://web.archive.org/web/20201130023113/https://forums.warframe.com/topic/1232841-heart-of-deimos-nezha-prime-2930-29301/",
ArchiveDate = "2020-11-30",
Timestamp = 1603821579,
Subtitle = "Nezha Prime"
},
{
Name = "Hotfix 29.3.0.1",
Link = "Update 29#Hotfix 29.3.0.1",
Aliases = { "29.3.0.1" },
ShortName = "H29.3.0.1",
Date = "2020-10-27",
Parent = "29.3",
ForumLink = "https://forums.warframe.com/topic/1232841-heart-of-deimos-nezha-prime-2930-29301/",
ArchiveLink = "https://web.archive.org/web/20201130023113/https://forums.warframe.com/topic/1232841-heart-of-deimos-nezha-prime-2930-29301/",
ArchiveDate = "2020-11-30",
Timestamp = 1603821579
},
{
Name = "Hotfix 29.3.1",
Link = "Update 29#Hotfix 29.3.1",
Aliases = { "29.3.1" },
ShortName = "H29.3.1",
Date = "2020-11-04",
Parent = "29.3",
ForumLink = "https://forums.warframe.com/topic/1234193-heart-of-deimos-tennogen-2931/",
ArchiveLink = "https://web.archive.org/web/20201201124001/https://forums.warframe.com/topic/1234193-heart-of-deimos-tennogen-2931/",
ArchiveDate = "2020-12-01",
Timestamp = 1604512560,
Subtitle = "TennoGen Round 19 - Part 2"
},
{
Name = "Hotfix 29.3.2",
Link = "Update 29#Hotfix 29.3.2",
Aliases = { "29.3.2" },
ShortName = "H29.3.2",
Date = "2020-11-05",
Parent = "29.3",
ForumLink = "https://forums.warframe.com/topic/1234372-heart-of-deimos-tennogen-2932/",
ArchiveLink = "https://web.archive.org/web/20210123122347/https://forums.warframe.com/topic/1234372-heart-of-deimos-tennogen-2932/",
ArchiveDate = "2021-01-23",
Timestamp = 1604613571
},
{
Name = "Update 29.5",
Link = "Update 29#Update 29.5",
Aliases = { "29.5", "29.5.0" },
ShortName = "U29.5",
Date = "2020-11-19",
Parent = "29.5",
ForumLink = "https://forums.warframe.com/topic/1236257-update-295-deimos-arcana/",
ArchiveLink = "https://web.archive.org/web/20211027080522/https://forums.warframe.com/topic/1236257-update-295-deimos-arcana/",
ArchiveDate = "2021-10-27",
Timestamp = 1605832026,
Subtitle = "Deimos: Arcana"
},
{
Name = "Hotfix 29.5.1",
Link = "Update 29#Hotfix 29.5.1",
Aliases = { "29.5.1" },
ShortName = "H29.5.1",
Date = "2020-11-19",
Parent = "29.5",
ForumLink = "https://forums.warframe.com/topic/1236297-deimos-arcana-hotfix-2951/",
ArchiveLink = "https://web.archive.org/web/20210226014047/https://forums.warframe.com/topic/1236297-deimos-arcana-hotfix-2951/",
ArchiveDate = "2021-02-26",
Timestamp = 1605839268
},
{
Name = "Hotfix 29.5.2",
Link = "Update 29#Hotfix 29.5.2",
Aliases = { "29.5.2" },
ShortName = "H29.5.2",
Date = "2020-11-20",
Parent = "29.5",
ForumLink = "https://forums.warframe.com/topic/1236646-deimos-arcana-hotfix-2952/",
ArchiveLink = "https://web.archive.org/web/20201129055926/https://forums.warframe.com/topic/1236646-deimos-arcana-hotfix-2952/",
ArchiveDate = "2020-11-29",
Timestamp = 1605913375
},
{
Name = "Hotfix 29.5.3",
Link = "Update 29#Hotfix 29.5.3",
Aliases = { "29.5.3" },
ShortName = "H29.5.3",
Date = "2020-11-23",
Parent = "29.5",
ForumLink = "https://forums.warframe.com/topic/1237408-deimos-arcana-hotfix-2953/",
ArchiveLink = "https://web.archive.org/web/20210123115209/https://forums.warframe.com/topic/1237408-deimos-arcana-hotfix-2953/",
ArchiveDate = "2021-01-23",
Timestamp = 1606172705
},
{
Name = "Hotfix 29.5.4",
Link = "Update 29#Hotfix 29.5.4",
Aliases = { "29.5.4" },
ShortName = "H29.5.4",
Date = "2020-11-25",
Parent = "29.5",
ForumLink = "https://forums.warframe.com/topic/1237744-deimos-arcana-hotfix-2954/",
ArchiveLink = "https://web.archive.org/web/20210123121906/https://forums.warframe.com/topic/1237744-deimos-arcana-hotfix-2954/",
ArchiveDate = "2021-01-23",
Timestamp = 1606342269
},
{
Name = "Hotfix 29.5.5",
Link = "Update 29#Hotfix 29.5.5",
Aliases = { "29.5.5" },
ShortName = "H29.5.5",
Date = "2020-11-27",
Parent = "29.5",
ForumLink = "https://forums.warframe.com/topic/1238119-deimos-arcana-hotfix-2955-29551/",
ArchiveLink = "https://web.archive.org/web/20210123122118/https://forums.warframe.com/topic/1238119-deimos-arcana-hotfix-2955-29551/",
ArchiveDate = "2021-01-23",
Timestamp = 1606526880
},
{
Name = "Hotfix 29.5.5.1",
Link = "Update 29#Hotfix 29.5.5.1",
Aliases = { "29.5.5.1" },
ShortName = "H29.5.5.1",
Date = "2020-11-27",
Parent = "29.5",
ForumLink = "https://forums.warframe.com/topic/1238119-deimos-arcana-hotfix-2955-29551/",
ArchiveLink = "https://web.archive.org/web/20210123122118/https://forums.warframe.com/topic/1238119-deimos-arcana-hotfix-2955-29551/",
ArchiveDate = "2021-01-23",
Timestamp = 1606526880
},
{
Name = "Hotfix 29.5.6",
Link = "Update 29#Hotfix 29.5.6",
Aliases = { "29.5.6" },
ShortName = "H29.5.6",
Date = "2020-12-01",
Parent = "29.5",
ForumLink = "https://forums.warframe.com/topic/1238756-deimos-arcana-hotfix-2956/",
ArchiveLink = "https://web.archive.org/web/20210117131352/https://forums.warframe.com/topic/1238756-deimos-arcana-hotfix-2956/",
ArchiveDate = "2021-01-17",
Timestamp = 1606862166
},
{
Name = "Hotfix 29.5.7",
Link = "Update 29#Hotfix 29.5.7",
Aliases = { "29.5.7" },
ShortName = "H29.5.7",
Date = "2020-12-10",
Parent = "29.5",
ForumLink = "https://forums.warframe.com/topic/1239954-deimos-arcana-hotfix-2957/",
ArchiveLink = "https://web.archive.org/web/20210121231659/https://forums.warframe.com/topic/1239954-deimos-arcana-hotfix-2957/",
ArchiveDate = "2021-01-21",
Timestamp = 1607635615
},
{
Name = "Hotfix 29.5.8",
Link = "Update 29#Hotfix 29.5.8",
Aliases = { "29.5.8" },
ShortName = "H29.5.8",
Date = "2020-12-11",
Parent = "29.5",
ForumLink = "https://forums.warframe.com/topic/1240154-hotfix-2958/",
ArchiveLink = "https://web.archive.org/web/20210123111406/https://forums.warframe.com/topic/1240154-hotfix-2958/",
ArchiveDate = "2021-01-23",
Timestamp = 1607731680
},
{
Name = "Hotfix 29.5.9",
Link = "Update 29#Hotfix 29.5.9",
Aliases = { "29.5.9" },
ShortName = "H29.5.9",
Date = "2020-12-15",
Parent = "29.5",
ForumLink = "https://forums.warframe.com/topic/1240704-deimos-arcana-prime-vault-2959/",
ArchiveLink = "https://web.archive.org/web/20210117011112/https://forums.warframe.com/topic/1240704-deimos-arcana-prime-vault-2959/",
ArchiveDate = "2021-01-17",
Timestamp = 1608059688,
Subtitle = "Banshee & Mirage Prime Vault"
},
{
Name = "Update 29.6",
Link = "Update 29#Update 29.6",
Aliases = { "29.6", "29.6.0" },
ShortName = "U29.6",
Date = "2020-12-18",
Parent = "29.6",
ForumLink = "https://forums.warframe.com/topic/1241202-update-2960-orphix-venom/",
ArchiveLink = "https://web.archive.org/web/20211023231710/https://forums.warframe.com/topic/1241202-update-2960-orphix-venom/",
ArchiveDate = "2021-10-23",
Timestamp = 1608320294,
Subtitle = "Operation: Orphix Venom"
},
{
Name = "Hotfix 29.6.1",
Link = "Update 29#Hotfix 29.6.1",
Aliases = { "29.6.1" },
ShortName = "H29.6.1",
Date = "2020-12-18",
Parent = "29.6",
ForumLink = "https://forums.warframe.com/topic/1241287-orphix-venom-hotfix-2961/",
ArchiveLink = "https://web.archive.org/web/20210123122757/https://forums.warframe.com/topic/1241287-orphix-venom-hotfix-2961/",
ArchiveDate = "2021-01-23",
Timestamp = 1608324540
},
{
Name = "Hotfix 29.6.2",
Link = "Update 29#Hotfix 29.6.2",
Aliases = { "29.6.2" },
ShortName = "H29.6.2",
Date = "2020-12-22",
Parent = "29.6",
ForumLink = "https://forums.warframe.com/topic/1242046-orphix-venom-hotfix-2962/",
ArchiveLink = "https://web.archive.org/web/20210123113748/https://forums.warframe.com/topic/1242046-orphix-venom-hotfix-2962/",
ArchiveDate = "2021-01-23",
Timestamp = 1608650340
},
{
Name = "Hotfix 29.6.3",
Link = "Update 29#Hotfix 29.6.3",
Aliases = { "29.6.3" },
ShortName = "H29.6.3",
Date = "2020-12-22",
Parent = "29.6",
ForumLink = "https://forums.warframe.com/topic/1242116-orphix-venom-hotfix-2963/",
ArchiveLink = "https://web.archive.org/web/20210123120448/https://forums.warframe.com/topic/1242116-orphix-venom-hotfix-2963/",
ArchiveDate = "2021-01-23",
Timestamp = 1608667860
},
{
Name = "Hotfix 29.6.4",
Link = "Update 29#Hotfix 29.6.4",
Aliases = { "29.6.4" },
ShortName = "H29.6.4",
Date = "2021-01-06",
Parent = "29.6",
ForumLink = "https://forums.warframe.com/topic/1244110-orphix-venom-hotfix-2964/",
ArchiveLink = "https://web.archive.org/web/20210122005434/https://forums.warframe.com/topic/1244110-orphix-venom-hotfix-2964/",
ArchiveDate = "2021-01-22",
Timestamp = 1609939980
},
{
Name = "Hotfix 29.6.5",
Link = "Update 29#Hotfix 29.6.5",
Aliases = { "29.6.5" },
ShortName = "H29.6.5",
Date = "2021-01-09",
Parent = "29.6",
ForumLink = "https://forums.warframe.com/topic/1244435-orphix-venom-hotfix-2965/",
ArchiveLink = "https://web.archive.org/web/20210506105627/https://forums.warframe.com/topic/1244435-orphix-venom-hotfix-2965/",
ArchiveDate = "2021-05-06",
Timestamp = 1610129700
},
{
Name = "Hotfix 29.6.6",
Link = "Update 29#Hotfix 29.6.6",
Aliases = { "29.6.6" },
ShortName = "H29.6.6",
Date = "2021-01-12",
Parent = "29.6",
ForumLink = "https://forums.warframe.com/topic/1244885-orphix-venom-hotfix-2966/",
ArchiveLink = "https://web.archive.org/web/20210126195155/https://forums.warframe.com/topic/1244885-orphix-venom-hotfix-2966/",
ArchiveDate = "2021-01-26",
Timestamp = 1610467680
},
{
Name = "Hotfix 29.6.7",
Link = "Update 29#Hotfix 29.6.7",
Aliases = { "29.6.7" },
ShortName = "H29.6.7",
Date = "2021-01-13",
Parent = "29.6",
ForumLink = "https://forums.warframe.com/topic/1245021-orphix-venom-hotfix-2967-29671/",
ArchiveLink = "https://web.archive.org/web/20210303090535/https://forums.warframe.com/topic/1245021-orphix-venom-hotfix-2967-29671/",
ArchiveDate = "2021-03-03",
Timestamp = 1610549220
},
{
Name = "Hotfix 29.6.7.1",
Link = "Update 29#Hotfix 29.6.7.1",
Aliases = { "29.6.7.1" },
ShortName = "H29.6.7.1",
Date = "2021-01-14",
Parent = "29.6",
ForumLink = "https://forums.warframe.com/topic/1245021-orphix-venom-hotfix-2967-29671/",
ArchiveLink = "https://web.archive.org/web/20210303090535/https://forums.warframe.com/topic/1245021-orphix-venom-hotfix-2967-29671/",
ArchiveDate = "2021-03-03",
Timestamp = 1610549220
},
{
Name = "Hotfix 29.6.8",
Link = "Update 29#Hotfix 29.6.8",
Aliases = { "29.6.8" },
ShortName = "H29.6.8",
Date = "2021-01-25",
Parent = "29.6",
ForumLink = "https://forums.warframe.com/topic/1246499-orphix-venom-hotfix-2968-29681/",
ArchiveLink = "https://web.archive.org/web/20210126091644/https://forums.warframe.com/topic/1246499-orphix-venom-hotfix-2968-29681/",
ArchiveDate = "2021-01-26",
Timestamp = 1611592260
},
{
Name = "Hotfix 29.6.8.1",
Link = "Update 29#Hotfix 29.6.8.1",
Aliases = { "29.6.8.1" },
ShortName = "H29.6.8.1",
Date = "2021-01-25",
Parent = "29.6",
ForumLink = "https://forums.warframe.com/topic/1246499-orphix-venom-hotfix-2968-29681/",
ArchiveLink = "https://web.archive.org/web/20210126091644/https://forums.warframe.com/topic/1246499-orphix-venom-hotfix-2968-29681/",
ArchiveDate = "2021-01-26",
Timestamp = 1611592260
},
{
Name = "Hotfix 29.6.9",
Link = "Update 29#Hotfix 29.6.9",
Aliases = { "29.6.9" },
ShortName = "H29.6.9",
Date = "2021-01-28",
Parent = "29.6",
ForumLink = "https://forums.warframe.com/topic/1246989-orphix-venom-hotfix-2969/",
ArchiveLink = "https://web.archive.org/web/20210130023416/https://forums.warframe.com/topic/1246989-orphix-venom-hotfix-2969/",
ArchiveDate = "2021-01-30",
Timestamp = 1611868122
},
{
Name = "Update 29.7",
Link = "Update 29#Update 29.7",
Aliases = { "29.7", "29.7.0" },
ShortName = "U29.7",
Date = "2021-02-01",
Parent = "29.7",
ForumLink = "https://forums.warframe.com/topic/1247625-nightwave-intermission-iii-update-2970/",
ArchiveLink = "https://web.archive.org/web/20211105090315/https://forums.warframe.com/topic/1247625-nightwave-intermission-iii-update-2970/",
ArchiveDate = "2021-11-05",
Timestamp = 1612205852,
Subtitle = "Nightwave: Intermission III"
},
{
Name = "Update 29.8",
Link = "Update 29#Update 29.8",
Aliases = { "29.8", "29.8.0" },
ShortName = "U29.8",
Date = "2021-02-11",
Parent = "29.8",
ForumLink = "https://forums.warframe.com/topic/1248934-star-days-update-2980/",
ArchiveLink = "https://web.archive.org/web/20210212011314/https://forums.warframe.com/topic/1248934-star-days-update-2980/",
ArchiveDate = "2021-02-12",
Timestamp = 1613069850,
Subtitle = "Star Days"
},
{
Name = "Hotfix 29.8.1",
Link = "Update 29#Hotfix 29.8.1",
Aliases = { "29.8.1" },
ShortName = "H29.8.1",
Date = "2021-02-18",
Parent = "29.8",
ForumLink = "https://forums.warframe.com/topic/1249855-star-days-hotfix-2981/",
ArchiveLink = "https://web.archive.org/web/20210226022320/https://forums.warframe.com/topic/1249855-star-days-hotfix-2981/",
ArchiveDate = "2021-02-26",
Timestamp = 1613663872
},
{
Name = "Update 29.9",
Link = "Update 29#Update 29.9",
Aliases = { "29.9", "29.9.0" },
ShortName = "U29.9",
Date = "2021-02-23",
Parent = "29.9",
ForumLink = "https://forums.warframe.com/topic/1250473-octavia-prime-update-2990/",
ArchiveLink = "https://web.archive.org/web/20210314052725/https://forums.warframe.com/topic/1250473-octavia-prime-update-2990/",
ArchiveDate = "2021-03-14",
Timestamp = 1614106421,
Subtitle = "Octavia Prime"
},
{
Name = "Hotfix 29.9.1",
Link = "Update 29#Hotfix 29.9.1",
Aliases = { "29.9.1" },
ShortName = "H29.9.1",
Date = "2021-02-24",
Parent = "29.9",
ForumLink = "https://forums.warframe.com/topic/1250638-octavia-prime-hotfix-2991/",
ArchiveLink = "https://web.archive.org/web/20210301160411/https://forums.warframe.com/topic/1250638-octavia-prime-hotfix-2991/",
ArchiveDate = "2021-03-01",
Timestamp = 1614183975
},
{
Name = "Update 29.10",
Link = "Update 29#Update 29.10",
Aliases = { "29.10", "29.10.0" },
ShortName = "U29.10",
Date = "2021-03-19",
Parent = "29.10",
ForumLink = "https://forums.warframe.com/topic/1253565-update-29100-corpus-proxima-the-new-railjack/",
ArchiveLink = "https://web.archive.org/web/20210429030843/https://forums.warframe.com/topic/1253565-update-29100-corpus-proxima-the-new-railjack/",
ArchiveDate = "2021-04-29",
Timestamp = 1616167114,
Subtitle = "Corpus Proxima & The New Railjack"
},
{
Name = "Hotfix 29.10.1",
Link = "Update 29#Hotfix 29.10.1",
Aliases = { "29.10.1" },
ShortName = "H29.10.1",
Date = "2021-03-19",
Parent = "29.10",
ForumLink = "https://forums.warframe.com/topic/1253744-corpus-proxima-the-new-railjack-hotfix-29101%C2%A0/",
ArchiveLink = "https://web.archive.org/web/20210320004031/https://forums.warframe.com/topic/1253744-corpus-proxima-the-new-railjack-hotfix-29101%C2%A0/",
ArchiveDate = "2021-03-20",
Timestamp = 1616188423
},
{
Name = "Hotfix 29.10.2",
Link = "Update 29#Hotfix 29.10.2",
Aliases = { "29.10.2" },
ShortName = "H29.10.2",
Date = "2021-03-19",
Parent = "29.10",
ForumLink = "https://forums.warframe.com/topic/1253850-corpus-proxima-the-new-railjack-hotfix-29102/",
ArchiveLink = "https://web.archive.org/web/20210321170640/https://forums.warframe.com/topic/1253850-corpus-proxima-the-new-railjack-hotfix-29102/",
ArchiveDate = "2021-03-21",
Timestamp = 1616201422
},
{
Name = "Hotfix 29.10.3",
Link = "Update 29#Hotfix 29.10.3",
Aliases = { "29.10.3" },
ShortName = "H29.10.3",
Date = "2021-03-23",
Parent = "29.10",
ForumLink = "https://forums.warframe.com/topic/1255179-corpus-proxima-the-new-railjack-hotfix-29103/",
ArchiveLink = "https://web.archive.org/web/20210328230851/https://forums.warframe.com/topic/1255179-corpus-proxima-the-new-railjack-hotfix-29103/",
ArchiveDate = "2021-03-28",
Timestamp = 1616520631
},
{
Name = "Hotfix 29.10.4",
Link = "Update 29#Hotfix 29.10.4",
Aliases = { "29.10.4" },
ShortName = "H29.10.4",
Date = "2021-03-23",
Parent = "29.10",
ForumLink = "https://forums.warframe.com/topic/1255250-corpus-proxima-the-new-railjack-hotfix-29104%C2%A0/",
ArchiveLink = "https://web.archive.org/web/20210324082006/https://forums.warframe.com/topic/1255250-corpus-proxima-the-new-railjack-hotfix-29104%C2%A0/",
ArchiveDate = "2021-03-24",
Timestamp = 1616536388
},
{
Name = "Hotfix 29.10.5",
Link = "Update 29#Hotfix 29.10.5",
Aliases = { "29.10.5" },
ShortName = "H29.10.5",
Date = "2021-03-24",
Parent = "29.10",
ForumLink = "https://forums.warframe.com/topic/1255521-corpus-proxima-the-new-railjack-hotfix-29105%C2%A0/",
ArchiveLink = "https://web.archive.org/web/20210324223444/https://forums.warframe.com/topic/1255521-corpus-proxima-the-new-railjack-hotfix-29105%C2%A0/",
ArchiveDate = "2021-03-24",
Timestamp = 1616622957
},
{
Name = "Hotfix 29.10.6",
Link = "Update 29#Hotfix 29.10.6",
Aliases = { "29.10.6" },
ShortName = "H29.10.6",
Date = "2021-03-25",
Parent = "29.10",
ForumLink = "https://forums.warframe.com/topic/1255713-corpus-proxima-the-new-railjack-hotfix-29106/",
ArchiveLink = "https://web.archive.org/web/20210326072451/https://forums.warframe.com/topic/1255713-corpus-proxima-the-new-railjack-hotfix-29106/",
ArchiveDate = "2021-03-26",
Timestamp = 1616687009
},
{
Name = "Hotfix 29.10.7",
Link = "Update 29#Hotfix 29.10.7",
Aliases = { "29.10.7" },
ShortName = "H29.10.7",
Date = "2021-03-26",
Parent = "29.10",
ForumLink = "https://forums.warframe.com/topic/1256039-corpus-proxima-the-new-railjack-hotfix-29107/",
ArchiveLink = "https://web.archive.org/web/20210327020634/https://forums.warframe.com/topic/1256039-corpus-proxima-the-new-railjack-hotfix-29107/",
ArchiveDate = "2021-03-27",
Timestamp = 1616798416
},
{
Name = "Hotfix 29.10.8",
Link = "Update 29#Hotfix 29.10.8",
Aliases = { "29.10.8" },
ShortName = "H29.10.8",
Date = "2021-03-31",
Parent = "29.10",
ForumLink = "https://forums.warframe.com/topic/1256868-corpus-proxima-the-new-railjack-hotfix-29108/",
ArchiveLink = "https://web.archive.org/web/20210331220559/https://forums.warframe.com/topic/1256868-corpus-proxima-the-new-railjack-hotfix-29108/",
ArchiveDate = "2021-03-31",
Timestamp = 1617225485
},
{
Name = "Hotfix 29.10.9",
Link = "Update 29#Hotfix 29.10.9",
Aliases = { "29.10.9" },
ShortName = "H29.10.9",
Date = "2021-04-01",
Parent = "29.10",
ForumLink = "https://forums.warframe.com/topic/1257043-corpus-proxima-the-new-railjack-hotfix-29109/",
ArchiveLink = "https://web.archive.org/web/20210401223913/https://forums.warframe.com/topic/1257043-corpus-proxima-the-new-railjack-hotfix-29109/",
ArchiveDate = "2021-04-01",
Timestamp = 1617313002
},
{
Name = "Hotfix 29.10.10",
Link = "Update 29#Hotfix 29.10.10",
Aliases = { "29.10.10" },
ShortName = "H29.10.10",
Date = "2021-04-05",
Parent = "29.10",
ForumLink = "https://forums.warframe.com/topic/1257553-corpus-proxima-the-new-railjack-hotfix-291010/",
ArchiveLink = "https://web.archive.org/web/20210405223920/https://forums.warframe.com/topic/1257553-corpus-proxima-the-new-railjack-hotfix-291010/",
ArchiveDate = "2021-04-05",
Timestamp = 1617650440
},
{
Name = "Update 30.0",
Link = "Update 30",
Aliases = { "30", "30.0", "Call of the Tempestarii" },
ShortName = "U30.0",
Date = "2021-04-13",
Parent = "30.0",
ForumLink = "https://forums.warframe.com/topic/1258560-call-of-the-tempestarii-update-30/",
ArchiveLink = "https://web.archive.org/web/20210413190547/https://forums.warframe.com/topic/1258560-call-of-the-tempestarii-update-30/",
ArchiveDate = "2021-04-13",
Timestamp = 1618337042,
Subtitle = "Call of the Tempestarii"
},
{
Name = "Hotfix 30.0.1",
Link = "Update 30#Hotfix 30.0.1",
Aliases = { "30.0.1" },
ShortName = "H30.0.1",
Date = "2021-04-13",
Parent = "30.0",
ForumLink = "https://forums.warframe.com/topic/1258654-call-of-the-tempestarii-hotfix-3001/",
ArchiveLink = "https://web.archive.org/web/20210413231931/https://forums.warframe.com/topic/1258654-call-of-the-tempestarii-hotfix-3001/",
ArchiveDate = "2021-04-13",
Timestamp = 1618352165
},
{
Name = "Hotfix 30.0.2",
Link = "Update 30#Hotfix 30.0.2",
Aliases = { "30.0.2" },
ShortName = "H30.0.2",
Date = "2021-04-14",
Parent = "30.0",
ForumLink = "https://forums.warframe.com/topic/1258941-call-of-the-tempestarii-hotfix-3002/",
ArchiveLink = "https://web.archive.org/web/20210414200536/https://forums.warframe.com/topic/1258941-call-of-the-tempestarii-hotfix-3002/",
ArchiveDate = "2021-04-14",
Timestamp = 1618427841
},
{
Name = "Hotfix 30.0.3",
Link = "Update 30#Hotfix 30.0.3",
Aliases = { "30.0.3" },
ShortName = "H30.0.3",
Date = "2021-04-15",
Parent = "30.0",
ForumLink = "https://forums.warframe.com/topic/1259228-call-of-the-tempestarii-hotfix-3003/",
ArchiveLink = "https://web.archive.org/web/20210416001938/https://forums.warframe.com/topic/1259228-call-of-the-tempestarii-hotfix-3003/",
ArchiveDate = "2021-04-16",
Timestamp = 1618508123
},
{
Name = "Hotfix 30.0.4",
Link = "Update 30#Hotfix 30.0.4",
Aliases = { "30.0.4" },
ShortName = "H30.0.4",
Date = "2021-04-16",
Parent = "30.0",
ForumLink = "https://forums.warframe.com/topic/1259484-call-of-the-tempestarii-hotfix-3004/",
ArchiveLink = "https://web.archive.org/web/20210416160930/https://forums.warframe.com/topic/1259484-call-of-the-tempestarii-hotfix-3004/",
ArchiveDate = "2021-04-16",
Timestamp = 1618586955
},
{
Name = "Hotfix 30.0.5",
Link = "Update 30#Hotfix 30.0.5",
Aliases = { "30.0.5" },
ShortName = "H30.0.5",
Date = "2021-04-16",
Parent = "30.0",
ForumLink = "https://forums.warframe.com/topic/1259551-call-of-the-tempestarii-hotfix-3005/",
ArchiveLink = "https://web.archive.org/web/20210416201011/https://forums.warframe.com/topic/1259551-call-of-the-tempestarii-hotfix-3005/",
ArchiveDate = "2021-04-16",
Timestamp = 1618600165
},
{
Name = "Hotfix 30.0.6",
Link = "Update 30#Hotfix 30.0.6",
Aliases = { "30.0.6" },
ShortName = "H30.0.6",
Date = "2021-04-20",
Parent = "30.0",
ForumLink = "https://forums.warframe.com/topic/1260376-call-of-the-tempestarii-hotfix-3006/",
ArchiveLink = "https://web.archive.org/web/20210420201500/https://forums.warframe.com/topic/1260376-call-of-the-tempestarii-hotfix-3006/",
ArchiveDate = "2021-04-20",
Timestamp = 1618947433
},
{
Name = "Hotfix 30.0.7",
Link = "Update 30#Hotfix 30.0.7",
Aliases = { "30.0.7" },
ShortName = "H30.0.7",
Date = "2021-04-22",
Parent = "30.0",
ForumLink = "https://forums.warframe.com/topic/1260721-call-of-the-tempestarii-hotfix-3007/",
ArchiveLink = "https://web.archive.org/web/20210422181525/https://forums.warframe.com/topic/1260721-call-of-the-tempestarii-hotfix-3007/",
ArchiveDate = "2021-04-22",
Timestamp = 1619114293
},
{
Name = "Hotfix 30.0.8",
Link = "Update 30#Hotfix 30.0.8",
Aliases = { "30.0.8" },
ShortName = "H30.0.8",
Date = "2021-04-27",
Parent = "30.0",
ForumLink = "https://forums.warframe.com/topic/1261452-call-of-the-tempestarii-prime-vault-hotfix-3008-30081/",
ArchiveLink = "https://web.archive.org/web/20210427215009/https://forums.warframe.com/topic/1261452-call-of-the-tempestarii-prime-vault-hotfix-3008-30081/",
ArchiveDate = "2021-04-27",
Timestamp = 1619546292,
Subtitle = "Zephyr & Chroma Prime Vault"
},
{
Name = "Hotfix 30.0.8.1",
Link = "Update 30#Hotfix 30.0.8.1",
Aliases = { "30.0.8.1" },
ShortName = "H30.0.8.1",
Date = "2021-04-27",
Parent = "30.0",
ForumLink = "https://forums.warframe.com/topic/1261452-call-of-the-tempestarii-prime-vault-hotfix-3008-30081/",
ArchiveLink = "https://web.archive.org/web/20210427215009/https://forums.warframe.com/topic/1261452-call-of-the-tempestarii-prime-vault-hotfix-3008-30081/",
ArchiveDate = "2021-04-27",
Timestamp = 1619546292
},
{
Name = "Update 30.1",
Link = "Update 30#Update 30.1",
Aliases = { "30.1", "30.1.0" },
ShortName = "U30.1",
Date = "2021-04-29",
Parent = "30.1",
ForumLink = "https://forums.warframe.com/topic/1261802-call-of-the-tempestarii-tennogen-update-3010/",
ArchiveLink = "https://web.archive.org/web/20210429193408/https://forums.warframe.com/topic/1261802-call-of-the-tempestarii-tennogen-update-3010/",
ArchiveDate = "2021-04-29",
Timestamp = 1619718568,
Subtitle = "TennoGen Round 20 - Part 1"
},
{
Name = "Hotfix 30.1.1",
Link = "Update 30#Hotfix 30.1.1",
Aliases = { "30.1.1" },
ShortName = "H30.1.1",
Date = "2021-05-05",
Parent = "30.1",
ForumLink = "https://forums.warframe.com/topic/1262687-call-of-the-tempestarii-tennogen-hotfix-3011/",
ArchiveLink = "https://web.archive.org/web/20210506145639/https://forums.warframe.com/topic/1262687-call-of-the-tempestarii-tennogen-hotfix-3011/",
ArchiveDate = "2021-05-06",
Timestamp = 1620249145
},
{
Name = "Update 30.2",
Link = "Update 30#Update 30.2",
Aliases = { "30.2", "30.2.0" },
ShortName = "U30.2",
Date = "2021-05-12",
Parent = "30.2",
ForumLink = "https://forums.warframe.com/topic/1263575-call-of-the-tempestarii-tennogen-update-3020/",
ArchiveLink = "https://web.archive.org/web/20211010031408/https://forums.warframe.com/topic/1263575-call-of-the-tempestarii-tennogen-update-3020/",
ArchiveDate = "2021-10-10",
Timestamp = 1620848298,
Subtitle = "TennoGen Round 20 - Part 2"
},
{
Name = "Hotfix 30.2.1",
Link = "Update 30#Hotfix 30.2.1",
Aliases = { "30.2.1" },
ShortName = "H30.2.1",
Date = "2021-05-13",
Parent = "30.2",
ForumLink = "https://forums.warframe.com/topic/1263706-call-of-the-tempestarii-tennogen-hotfix-3021/",
ArchiveLink = "https://web.archive.org/web/20210513184912/https://forums.warframe.com/topic/1263706-call-of-the-tempestarii-tennogen-hotfix-3021/",
ArchiveDate = "2021-05-13",
Timestamp = 1620926511
},
{
Name = "Hotfix 30.2.2",
Link = "Update 30#Hotfix 30.2.2",
Aliases = { "30.2.2" },
ShortName = "H30.2.2",
Date = "2021-05-13",
Parent = "30.2",
ForumLink = "https://forums.warframe.com/topic/1263763-call-of-the-tempestarii-tennogen-hotfix-3022/",
ArchiveLink = "https://web.archive.org/web/20210513220526/https://forums.warframe.com/topic/1263763-call-of-the-tempestarii-tennogen-hotfix-3022/",
ArchiveDate = "2021-05-13",
Timestamp = 1620942279
},
{
Name = "Update 30.3",
Link = "Update 30#Update 30.3",
Aliases = { "30.3", "30.3.0" },
ShortName = "U30.3",
Date = "2021-05-25",
Parent = "30.3",
ForumLink = "https://forums.warframe.com/topic/1265162-gara-prime-update-3030/",
ArchiveLink = "https://web.archive.org/web/20210525190600/https://forums.warframe.com/topic/1265162-gara-prime-update-3030/",
ArchiveDate = "2021-05-25",
Timestamp = 1621965409,
Subtitle = "Gara Prime"
},
{
Name = "Hotfix 30.3.1",
Link = "Update 30#Hotfix 30.3.1",
Aliases = { "30.3.1" },
ShortName = "H30.3.1",
Date = "2021-05-25",
Parent = "30.3",
ForumLink = "https://forums.warframe.com/topic/1265229-gara-prime-hotfix-3031/",
ArchiveLink = "https://web.archive.org/web/20210526015704/https://forums.warframe.com/topic/1265229-gara-prime-hotfix-3031/",
ArchiveDate = "2021-05-26",
Timestamp = 1621977321,
},
{
Name = "Hotfix 30.3.2",
Link = "Update 30#Hotfix 30.3.2",
Aliases = { "30.3.2" },
ShortName = "H30.3.2",
Date = "2021-05-27",
Parent = "30.3",
ForumLink = "https://forums.warframe.com/topic/1265543-gara-prime-hotfix-3032/",
ArchiveLink = "https://web.archive.org/web/20210527190729/https://forums.warframe.com/topic/1265543-gara-prime-hotfix-3032/",
ArchiveDate = "2021-05-27",
Timestamp = 1622139466,
},
{
Name = "Hotfix 30.3.3",
Link = "Update 30#Hotfix 30.3.3",
Aliases = { "30.3.3" },
ShortName = "H30.3.3",
Date = "2021-05-28",
Parent = "30.3",
ForumLink = "https://forums.warframe.com/topic/1265693-gara-prime-hotfix-3033/",
ArchiveLink = "https://web.archive.org/web/20210601104916/https://forums.warframe.com/topic/1265693-gara-prime-hotfix-3033/",
ArchiveDate = "2021-06-01",
Timestamp = 1622231100
},
{
Name = "Hotfix 30.3.4",
Link = "Update 30#Hotfix 30.3.4",
Aliases = { "30.3.4" },
ShortName = "H30.3.4",
Date = "2021-06-02",
Parent = "30.3",
ForumLink = "https://forums.warframe.com/topic/1266345-gara-prime-hotfix-3034/",
ArchiveLink = "https://web.archive.org/web/20210602200615/https://forums.warframe.com/topic/1266345-gara-prime-hotfix-3034/",
ArchiveDate = "2021-06-02",
Timestamp = 1622661305
},
{
Name = "Hotfix 30.3.5",
Link = "Update 30#Hotfix 30.3.5",
Aliases = { "30.3.5" },
ShortName = "H30.3.5",
Date = "2021-06-10",
Parent = "30.3",
ForumLink = "https://forums.warframe.com/topic/1267287-gara-prime-hotfix-3035/",
ArchiveLink = "https://web.archive.org/web/20210611165233/https://forums.warframe.com/topic/1267287-gara-prime-hotfix-3035/",
ArchiveDate = "2021-06-11",
Timestamp = 1623354461
},
{
Name = "Update 30.5",
Link = "Update 30#Update 30.5",
Aliases = { "30.5" },
ShortName = "U30.5",
Date = "2021-07-06",
Parent = "30.5",
ForumLink = "https://forums.warframe.com/topic/1269749-update-305-sisters-of-parvos/",
ArchiveLink = "https://web.archive.org/web/20211009021725/https://forums.warframe.com/topic/1269749-update-305-sisters-of-parvos/",
ArchiveDate = "2021-10-09",
Timestamp = 1625583730,
Subtitle = "Sisters of Parvos"
},
{
Name = "Hotfix 30.5.1",
Link = "Update 30#Hotfix 30.5.1",
Aliases = { "30.5.1" },
ShortName = "H30.5.1",
Date = "2021-07-06",
Parent = "30.5",
ForumLink = "https://forums.warframe.com/topic/1269937-sisters-of-parvos-hotfix-3051/",
ArchiveLink = "https://web.archive.org/web/20210706233817/https://forums.warframe.com/topic/1269937-sisters-of-parvos-hotfix-3051/",
ArchiveDate = "2021-07-06",
Timestamp = 1625606658
},
{
Name = "Hotfix 30.5.2",
Link = "Update 30#Hotfix 30.5.2",
Aliases = { "30.5.2" },
ShortName = "H30.5.2",
Date = "2021-07-07",
Parent = "30.5",
ForumLink = "https://forums.warframe.com/topic/1270347-sisters-of-parvos-hotfix-3052/",
ArchiveLink = "https://web.archive.org/web/20210707210625/https://forums.warframe.com/topic/1270347-sisters-of-parvos-hotfix-3052/",
ArchiveDate = "2021-07-07",
Timestamp = 1625689611
},
{
Name = "Hotfix 30.5.3",
Link = "Update 30#Hotfix 30.5.3",
Aliases = { "30.5.3" },
ShortName = "H30.5.3",
Date = "2021-07-09",
Parent = "30.5",
ForumLink = "https://forums.warframe.com/topic/1270868-sisters-of-parvos-hotfix-3053%C2%A0%C2%A0/",
ArchiveLink = "https://web.archive.org/web/20210709160633/https://forums.warframe.com/topic/1270868-sisters-of-parvos-hotfix-3053%C2%A0%C2%A0/",
ArchiveDate = "2021-07-09",
Timestamp = 1625843254
},
{
Name = "Hotfix 30.5.4",
Link = "Update 30#Hotfix 30.5.4",
Aliases = { "30.5.4" },
ShortName = "H30.5.4",
Date = "2021-07-17",
Parent = "30.5",
ForumLink = "https://forums.warframe.com/topic/1272505-sisters-of-parvos-hotfix-3054/",
ArchiveLink = "https://web.archive.org/web/20210717185049/https://forums.warframe.com/topic/1272505-sisters-of-parvos-hotfix-3054/",
ArchiveDate = "2021-07-17",
Timestamp = 1626526738
},
{
Name = "Hotfix 30.5.5",
Link = "Update 30#Hotfix 30.5.5",
Aliases = { "30.5.5" },
ShortName = "H30.5.5",
Date = "2021-07-29",
Parent = "30.5",
ForumLink = "https://forums.warframe.com/topic/1274960-sisters-of-parvos-hotfix-3055/",
ArchiveLink = "https://web.archive.org/web/20210729181523/https://forums.warframe.com/topic/1274960-sisters-of-parvos-hotfix-3055/",
ArchiveDate = "2021-07-29",
Timestamp = 1627578512
},
{
Name = "Update 30.6",
Link = "Update 30#Update 30.6",
Aliases = { "30.6" },
ShortName = "U30.6",
Date = "2021-08-04",
Parent = "30.6",
ForumLink = "https://forums.warframe.com/topic/1275793-nightwave-nora%E2%80%99s-choice-update-3060/",
ArchiveLink = "https://web.archive.org/web/20211019091006/https://forums.warframe.com/topic/1275793-nightwave-nora%E2%80%99s-choice-update-3060/",
ArchiveDate = "2021-10-19",
Timestamp = 1628098367,
Subtitle = "Nightwave: Nora's Choice"
},
{
Name = "Hotfix 30.6.1",
Link = "Update 30#Hotfix 30.6.1",
Aliases = { "30.6.1" },
ShortName = "H30.6.1",
Date = "2021-08-10",
Parent = "30.6",
ForumLink = "https://forums.warframe.com/topic/1276639-nightwave-prime-vault-hotfix-3061/",
ArchiveLink = "https://web.archive.org/web/20210810203018/https://forums.warframe.com/topic/1276639-nightwave-prime-vault-hotfix-3061",
ArchiveDate = "2021-08-10",
Timestamp = 1628618629,
Subtitle = "Nyx & Rhino Prime Vault"
},
{
Name = "Update 30.7",
Link = "Update 30#Update 30.7",
Aliases = { "30.7" },
ShortName = "U30.7",
Date = "2021-09-08",
Parent = "30.7",
ForumLink = "https://forums.warframe.com/topic/1279845-update-307-nidus-prime-plague-star/",
ArchiveLink = "https://web.archive.org/web/20210921020634/https://forums.warframe.com/topic/1279845-update-307-nidus-prime-plague-star/",
ArchiveDate = "2021-09-21",
Timestamp = 1631120335,
Subtitle = "Nidus Prime & Plague Star"
},
{
Name = "Hotfix 30.7.1",
Link = "Update 30#Hotfix 30.7.1",
Aliases = { "30.7.1" },
ShortName = "H30.7.1",
Date = "2021-09-08",
Parent = "30.7",
ForumLink = "https://forums.warframe.com/topic/1279944-nidus-prime-plague-star-hotfix-3071-30711/",
ArchiveLink = "https://web.archive.org/web/20210909070055/https://forums.warframe.com/topic/1279944-nidus-prime-plague-star-hotfix-3071-30711/",
ArchiveDate = "2021-09-09",
Timestamp = 1631138868
},
{
Name = "Hotfix 30.7.1.1",
Link = "Update 30#Hotfix 30.7.1.1",
Aliases = { "30.7.1.1" },
ShortName = "H30.7.1.1",
Date = "2021-09-08",
Parent = "30.7",
ForumLink = "https://forums.warframe.com/topic/1279944-nidus-prime-plague-star-hotfix-3071-30711/",
ArchiveLink = "https://web.archive.org/web/20210909070055/https://forums.warframe.com/topic/1279944-nidus-prime-plague-star-hotfix-3071-30711/",
ArchiveDate = "2021-09-09",
Timestamp = 1631138868
},
{
Name = "Hotfix 30.7.2",
Link = "Update 30#Hotfix 30.7.2",
Aliases = { "30.7.2" },
ShortName = "H30.7.2",
Date = "2021-09-09",
Parent = "30.7",
ForumLink = "https://forums.warframe.com/topic/1280179-nidus-prime-plague-star-hotfix-3072%C2%A0%C2%A0/",
ArchiveLink = "https://web.archive.org/web/20210910002934/https://forums.warframe.com/topic/1280179-nidus-prime-plague-star-hotfix-3072%C2%A0%C2%A0/",
ArchiveDate = "2021-09-10",
Timestamp = 1631225383
},
{
Name = "Hotfix 30.7.3",
Link = "Update 30#Hotfix 30.7.3",
Aliases = { "30.7.3" },
ShortName = "H30.7.3",
Date = "2021-09-10",
Parent = "30.7",
ForumLink = "https://forums.warframe.com/topic/1280358-nidus-prime-plague-star-hotfix-3073/",
ArchiveLink = "https://web.archive.org/web/20210917170139/https://forums.warframe.com/topic/1280358-nidus-prime-plague-star-hotfix-3073/",
ArchiveDate = "2021-09-17",
Timestamp = 1631305936
},
{
Name = "Hotfix 30.7.4",
Link = "Update 30#Hotfix 30.7.4",
Aliases = { "30.7.4" },
ShortName = "H30.7.4",
Date = "2021-09-14",
Parent = "30.7",
ForumLink = "https://forums.warframe.com/topic/1280915-nidus-prime-plague-star-hotfix-3074/",
ArchiveLink = "https://web.archive.org/web/20210917170148/https://forums.warframe.com/topic/1280915-nidus-prime-plague-star-hotfix-3074/",
ArchiveDate = "2021-09-17",
Timestamp = 1631644850
},
{
Name = "Hotfix 30.7.5",
Link = "Update 30#Hotfix 30.7.5",
Aliases = { "30.7.5" },
ShortName = "H30.7.5",
Date = "2021-09-16",
Parent = "30.7",
ForumLink = "https://forums.warframe.com/topic/1281196-nidus-prime-plague-star-hotfix-3075/",
ArchiveLink = "https://web.archive.org/web/20210917201133/https://forums.warframe.com/topic/1281196-nidus-prime-plague-star-hotfix-3075/",
ArchiveDate = "2021-09-17",
Timestamp = 1631823352
},
{
Name = "Hotfix 30.7.6",
Link = "Update 30#Hotfix 30.7.6",
Aliases = { "30.7.6" },
ShortName = "H30.7.6",
Date = "2021-09-23",
Parent = "30.7",
ForumLink = "https://forums.warframe.com/topic/1281923-nidus-prime-plague-star-hotfix-3076/",
ArchiveLink = "https://web.archive.org/web/20210923205341/https://forums.warframe.com/topic/1281923-nidus-prime-plague-star-hotfix-3076/",
ArchiveDate = "2021-09-23",
Timestamp = 1632429240
},
{
Name = "Update 30.8",
Link = "Update 30#Update 30.8",
Aliases = { "30.8" },
ShortName = "U30.8",
Date = "2021-10-04",
Parent = "30.8",
ForumLink = "https://forums.warframe.com/topic/1283036-nights-of-naberus-update-3080/",
ArchiveLink = "https://web.archive.org/web/20211004201531/https://forums.warframe.com/topic/1283036-nights-of-naberus-update-3080/",
ArchiveDate = "2021-10-04",
Timestamp = 1633370714,
Subtitle = "Nights of Naberus"
},
{
Name = "Hotfix 30.8.1",
Link = "Update 30#Hotfix 30.8.1",
Aliases = { "30.8.1" },
ShortName = "H30.8.1",
Date = "2021-10-06",
Parent = "30.8",
ForumLink = "https://forums.warframe.com/topic/1283279-nights-of-naberus-hotfix-3081/",
ArchiveLink = "https://web.archive.org/web/20211006200818/https://forums.warframe.com/topic/1283279-nights-of-naberus-hotfix-3081/",
ArchiveDate = "2021-10-06",
Timestamp = 1633549639
},
{
Name = "Hotfix 30.8.2",
Link = "Update 30#Hotfix 30.8.2",
Aliases = { "30.8.2" },
ShortName = "H30.8.2",
Date = "2021-10-13",
Parent = "30.8",
ForumLink = "https://forums.warframe.com/topic/1283941-nights-of-naberus-hotfix-3082/",
ArchiveLink = "https://web.archive.org/web/20211013200530/https://forums.warframe.com/topic/1283941-nights-of-naberus-hotfix-3082/",
ArchiveDate = "2021-10-13",
Timestamp = 1634154811
},
{
Name = "Hotfix 30.8.3",
Link = "Update 30#Hotfix 30.8.3",
Aliases = { "30.8.3" },
ShortName = "H30.8.3",
Date = "2021-10-18",
Parent = "30.8",
ForumLink = "https://forums.warframe.com/topic/1284343-nights-of-naberus-hotfix-3083/",
ArchiveLink = "https://web.archive.org/web/20211018172818/https://forums.warframe.com/topic/1284343-nights-of-naberus-hotfix-3083/",
ArchiveDate = "2021-10-18",
Timestamp = 1634576666
},
{
Name = "Update 30.9",
Link = "Update 30#Update 30.9",
Aliases = { "30.9" },
ShortName = "U30.9",
Date = "2021-11-11",
Parent = "30.9",
ForumLink = "https://forums.warframe.com/topic/1286070-update-3090-prime-resurgence/",
ArchiveLink = "https://web.archive.org/web/20211111151345/https://forums.warframe.com/topic/1286070-update-3090-prime-resurgence/",
ArchiveDate = "2021-11-11",
Timestamp = 1636637612,
Subtitle = "Prime Resurgence"
},
{
Name = "Hotfix 30.9.1",
Link = "Update 30#Hotfix 30.9.1",
Aliases = { "30.9.1" },
ShortName = "H30.9.1",
Date = "2021-11-11",
Parent = "30.9",
ForumLink = "https://forums.warframe.com/topic/1286116-prime-resurgence-hotfix-3091%C2%A0/",
ArchiveLink = "https://web.archive.org/web/20211111173926/https://forums.warframe.com/topic/1286116-prime-resurgence-hotfix-3091%C2%A0/",
ArchiveDate = "2021-11-11",
Timestamp = 1636651709
},
{
Name = "Hotfix 30.9.2",
Link = "Update 30#Hotfix 30.9.2",
Aliases = { "30.9.2" },
ShortName = "H30.9.2",
Date = "2021-11-11",
Parent = "30.9",
ForumLink = "https://forums.warframe.com/topic/1286170-prime-resurgence-hotfix-3092/",
ArchiveLink = "https://web.archive.org/web/20211111222938/https://forums.warframe.com/topic/1286170-prime-resurgence-hotfix-3092/",
ArchiveDate = "2021-11-11",
Timestamp = 1636660430
},
{
Name = "Hotfix 30.9.3",
Link = "Update 30#Hotfix 30.9.3",
Aliases = { "30.9.3" },
ShortName = "H30.9.3",
Date = "2021-11-12",
Parent = "30.9",
ForumLink = "https://forums.warframe.com/topic/1286448-prime-resurgence-hotfix-3093/",
ArchiveLink = "https://web.archive.org/web/20211112220610/https://forums.warframe.com/topic/1286448-prime-resurgence-hotfix-3093/",
ArchiveDate = "2021-11-12",
Timestamp = 1636751629
},
{
Name = "Hotfix 30.9.4",
Link = "Update 30#Hotfix 30.9.4",
Aliases = { "30.9.4" },
ShortName = "H30.9.4",
Date = "2021-11-16",
Parent = "30.9",
ForumLink = "https://forums.warframe.com/topic/1287160-prime-resurgence-hotfix-3094/",
ArchiveLink = "https://web.archive.org/web/20211116191915/https://forums.warframe.com/topic/1287160-prime-resurgence-hotfix-3094/",
ArchiveDate = "2021-11-16",
Timestamp = 1637089126
},
{
Name = "Hotfix 30.9.5",
Link = "Update 30#Hotfix 30.9.5",
Aliases = { "30.9.5" },
ShortName = "H30.9.5",
Date = "2021-11-18",
Parent = "30.9",
ForumLink = "https://forums.warframe.com/topic/1287620-prime-resurgence-hotfix-3095%C2%A0%C2%A0/",
ArchiveLink = "https://web.archive.org/web/20211118183841/https://forums.warframe.com/topic/1287620-prime-resurgence-hotfix-3095%C2%A0%C2%A0/",
ArchiveDate = "2021-11-18",
Timestamp = 1637260708
},
{
Name = "Update 31.0",
Link = "Update 31#Update 31.0",
Aliases = { "31", "31.0", "The New War" },
ShortName = "U31",
Date = "2021-12-15",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1290487-update-31-the-new-war/",
ArchiveLink = "https://web.archive.org/web/20211215160934/https://forums.warframe.com/topic/1290487-update-31-the-new-war/",
ArchiveDate = "2021-12-15",
Timestamp = 1639578194,
Subtitle = "The New War"
},
{
Name = "Hotfix 31.0.1",
Link = "Update 31#Hotfix 31.0.1",
Aliases = { "31.0.1" },
ShortName = "H31.0.1",
Date = "2021-12-15",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1290750-the-new-war-hotfix-3101%C2%A0%C2%A0/",
ArchiveLink = "https://web.archive.org/web/20211215221349/https://forums.warframe.com/topic/1290750-the-new-war-hotfix-3101%C2%A0%C2%A0/",
ArchiveDate = "2021-12-15",
Timestamp = 1639605455
},
{
Name = "Hotfix 31.0.2",
Link = "Update 31#Hotfix 31.0.2",
Aliases = { "31.0.2" },
ShortName = "H31.0.2",
Date = "2021-12-16",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1291010-the-new-war-hotfix-3102/",
ArchiveLink = "https://web.archive.org/web/20211216014835/https://forums.warframe.com/topic/1291010-the-new-war-hotfix-3102/",
ArchiveDate = "2021-12-16",
Timestamp = 1639618772
},
{
Name = "Hotfix 31.0.3",
Link = "Update 31#Hotfix 31.0.3",
Aliases = { "31.0.3" },
ShortName = "H31.0.3",
Date = "2021-12-17",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1292266-the-new-war-hotfix-3103/",
ArchiveLink = "https://web.archive.org/web/20211218030450/https://forums.warframe.com/topic/1292266-the-new-war-hotfix-3103/",
ArchiveDate = "2021-12-18",
Timestamp = 1639776402
},
{
Name = "Hotfix 31.0.4",
Link = "Update 31#Hotfix 31.0.4",
Aliases = { "31.0.4" },
ShortName = "H31.0.4",
Date = "2021-12-21",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1293486-the-new-war-hotfix-3104/",
ArchiveLink = "https://web.archive.org/web/20211221171310/https://forums.warframe.com/topic/1293486-the-new-war-hotfix-3104/",
ArchiveDate = "2021-12-21",
Timestamp = 1640105943
},
{
Name = "Hotfix 31.0.5",
Link = "Update 31#Hotfix 31.0.5",
Aliases = { "31.0.5" },
ShortName = "H31.0.5",
Date = "2021-12-21",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1293591-the-new-war-hotfix-3105/",
ArchiveLink = "https://web.archive.org/web/20211221205522/https://forums.warframe.com/topic/1293591-the-new-war-hotfix-3105/",
ArchiveDate = "2021-12-21",
Timestamp = 1640119799
},
{
Name = "Hotfix 31.0.6",
Link = "Update 31#Hotfix 31.0.6",
Aliases = { "31.0.6" },
ShortName = "H31.0.6",
Date = "2022-01-04",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1295743-the-new-war-hotfix-3106/",
ArchiveLink = "https://web.archive.org/web/20220104201008/https://forums.warframe.com/topic/1295743-the-new-war-hotfix-3106/",
ArchiveDate = "2022-01-04",
Timestamp = 1641326631
},
{
Name = "Hotfix 31.0.7",
Link = "Update 31#Hotfix 31.0.7",
Aliases = { "31.0.7" },
ShortName = "H31.0.7",
Date = "2022-01-07",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1296126-the-new-war-hotfix-3107/",
ArchiveLink = "https://web.archive.org/web/20220107170828/https://forums.warframe.com/topic/1296126-the-new-war-hotfix-3107/",
ArchiveDate = "2022-01-07",
Timestamp = 1641568849
},
{
Name = "Hotfix 31.0.8",
Link = "Update 31#Hotfix 31.0.8",
Aliases = { "31.0.8" },
ShortName = "H31.0.8",
Date = "2022-01-12",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1296775-the-new-war-hotfix-3108/",
ArchiveLink = "https://web.archive.org/web/20220112212349/https://forums.warframe.com/topic/1296775-the-new-war-hotfix-3108/",
ArchiveDate = "2022-01-12",
Timestamp = 1642021598
},
{
Name = "Hotfix 31.0.8.1",
Link = "Update 31#Hotfix 31.0.8.1",
Aliases = { "31.0.8.1" },
ShortName = "H31.0.8.1",
Date = "2022-01-12",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1296794-the-new-war-hotfix-31081/",
ArchiveLink = "https://web.archive.org/web/20220112230126/https://forums.warframe.com/topic/1296794-the-new-war-hotfix-31081/",
ArchiveDate = "2022-01-12",
Timestamp = 1642028397
},
{
Name = "Hotfix 31.0.9",
Link = "Update 31#Hotfix 31.0.9",
Aliases = { "31.0.9" },
ShortName = "H31.0.9",
Date = "2022-01-20",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1297589-the-new-war-hotfix-3109/",
ArchiveLink = "https://web.archive.org/web/20220120141853/https://forums.warframe.com/topic/1297589-the-new-war-hotfix-3109/",
ArchiveDate = "2022-01-20",
Timestamp = 1642687942
},
{
Name = "Hotfix 31.0.10",
Link = "Update 31#Hotfix 31.0.10",
Aliases = { "31.0.10" },
ShortName = "H31.0.10",
Date = "2022-01-20",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1297649-the-new-war-hotfix-31010/",
ArchiveLink = "https://web.archive.org/web/20220120213344/https://forums.warframe.com/topic/1297649-the-new-war-hotfix-31010/",
ArchiveDate = "2022-01-20",
Timestamp = 1642711814
},
{
Name = "Hotfix 31.0.11",
Link = "Update 31#Hotfix 31.0.11",
Aliases = { "31.0.11" },
ShortName = "H31.0.11",
Date = "2022-01-25",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1298151-the-new-war-hotfix-31011/",
ArchiveLink = "https://web.archive.org/web/20220125200711/https://forums.warframe.com/topic/1298151-the-new-war-hotfix-31011/",
ArchiveDate = "2022-01-25",
Timestamp = 1643137067
},
{
Name = "Update 31.1",
Link = "Update 31#Update 31.1",
Aliases = { "31.1", "31.1.0" },
ShortName = "U31.1.0",
Date = "2022-02-09",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1299619-update-3110-echoes-of-war/",
ArchiveLink = "https://web.archive.org/web/20220209173819/https://forums.warframe.com/topic/1299619-update-3110-echoes-of-war/",
ArchiveDate = "2022-02-09",
Timestamp = 1644422383,
Subtitle = "Echoes of War & TennoGen Round 21 - Part 1"
},
{
Name = "Hotfix 31.1.1",
Link = "Update 31#Hotfix 31.1.1",
Aliases = { "31.1.1" },
ShortName = "H31.1.1",
Date = "2022-02-09",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1299718-echoes-of-war-hotfix-3111/",
ArchiveLink = "https://web.archive.org/web/20220209213823/https://forums.warframe.com/topic/1299718-echoes-of-war-hotfix-3111/",
ArchiveDate = "2022-02-09",
Timestamp = 1644441587
},
{
Name = "Hotfix 31.1.2",
Link = "Update 31#Hotfix 31.1.2",
Aliases = { "31.1.2" },
ShortName = "H31.1.2",
Date = "2022-02-10",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1299938-echoes-of-war-hotfix-3112/",
ArchiveLink = "https://web.archive.org/web/20220210195916/https://forums.warframe.com/topic/1299938-echoes-of-war-hotfix-3112/",
ArchiveDate = "2022-02-10",
Timestamp = 1644521308
},
{
Name = "Hotfix 31.1.3",
Link = "Update 31#Hotfix 31.1.3",
Aliases = { "31.1.3" },
ShortName = "H31.1.3",
Date = "2022-02-15",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1300539-echoes-of-war-banshee-mirage-prime-vault-hotfix-3113/",
ArchiveLink = "https://web.archive.org/web/20220215191406/https://forums.warframe.com/topic/1300539-echoes-of-war-banshee-mirage-prime-vault-hotfix-3113/",
ArchiveDate = "2022-02-15",
Timestamp = 1644951831,
Subtitle = "Banshee & Mirage Prime Vault"
},
{
Name = "Hotfix 31.1.4",
Link = "Update 31#Hotfix 31.1.4",
Aliases = { "31.1.4" },
ShortName = "H31.1.4",
Date = "2022-02-15",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1300561-echoes-of-war-banshee-mirage-prime-vault-hotfix-3114/",
ArchiveLink = "https://web.archive.org/web/20220216191247/https://forums.warframe.com/topic/1300561-echoes-of-war-banshee-mirage-prime-vault-hotfix-3114/",
ArchiveDate = "2022-02-16",
Timestamp = 1644958950
},
{
Name = "Hotfix 31.1.5",
Link = "Update 31#Hotfix 31.1.5",
Aliases = { "31.1.5" },
ShortName = "H31.1.5",
Date = "2022-02-17",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1300776-echoes-of-war-banshee-mirage-prime-vault-hotfix-3115/",
ArchiveLink = "https://web.archive.org/web/20220217212845/https://forums.warframe.com/topic/1300776-echoes-of-war-banshee-mirage-prime-vault-hotfix-3115/",
ArchiveDate = "2022-02-17",
Timestamp = 1645131408
},
{
Name = "Hotfix 31.1.6",
Link = "Update 31#Hotfix 31.1.6",
Aliases = { "31.1.6" },
ShortName = "H31.1.6",
Date = "2022-02-17",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1300794-echoes-of-war-banshee-mirage-prime-vault-hotfix-3116/",
ArchiveLink = "https://web.archive.org/web/20220218003416/https://forums.warframe.com/topic/1300794-echoes-of-war-banshee-mirage-prime-vault-hotfix-3116/",
ArchiveDate = "2022-02-18",
Timestamp = 1645136663
},
{
Name = "Hotfix 31.1.7",
Link = "Update 31#Hotfix 31.1.7",
Aliases = { "31.1.7" },
ShortName = "H31.1.7",
Date = "2022-02-23",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1301285-echoes-of-war-banshee-mirage-prime-vault-hotfix-3117/",
ArchiveLink = "https://web.archive.org/web/20220223194724/https://forums.warframe.com/topic/1301285-echoes-of-war-banshee-mirage-prime-vault-hotfix-3117/",
ArchiveDate = "2022-02-23",
Timestamp = 1645641394
},
{
Name = "Hotfix 31.1.8",
Link = "Update 31#Hotfix 31.1.8",
Aliases = { "31.1.8" },
ShortName = "H31.1.8",
Date = "2022-02-24",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1301373-echoes-of-war-banshee-mirage-prime-vault-hotfix-3118/",
ArchiveLink = "https://web.archive.org/web/20220224184147/https://forums.warframe.com/topic/1301373-echoes-of-war-banshee-mirage-prime-vault-hotfix-3118/",
ArchiveDate = "2022-02-24",
Timestamp = 1645721693
},
{
Name = "Update 31.2",
Link = "Update 31#Update 31.2",
Aliases = { "31.2" },
ShortName = "U31.2",
Date = "2022-03-16",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1302788-noras-mix-volume-1-update-3120/",
ArchiveLink = "https://web.archive.org/web/20220316181903/https://forums.warframe.com/topic/1302788-noras-mix-volume-1-update-3120/",
ArchiveDate = "2022-03-16",
Timestamp = 1647453488,
Subtitle = "Nightwave: Nora's Mix Volume 1"
},
{
Name = "Hotfix 31.2.0.1",
Link = "Update 31#Hotfix 31.2.0.1",
Aliases = { "31.2.0.1" },
ShortName = "H31.2.0.1",
Date = "2022-03-16",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1302788-noras-mix-volume-1-update-3120-31201/",
ArchiveLink = "https://web.archive.org/web/20220316203950/https://forums.warframe.com/topic/1302788-noras-mix-volume-1-update-3120-31201/",
ArchiveDate = "2022-03-16",
Timestamp = 1647461968
},
{
Name = "Hotfix 31.2.1",
Link = "Update 31#Hotfix 31.2.1",
Aliases = { "31.2.1" },
ShortName = "H31.2.1",
Date = "2022-03-18",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1303084-noras-mix-volume-1-hotfix-3121/",
ArchiveLink = "https://web.archive.org/web/20220318205548/https://forums.warframe.com/topic/1303084-noras-mix-volume-1-hotfix-3121/",
ArchiveDate = "2022-03-18",
Timestamp = 1647636259
},
{
Name = "Update 31.3",
Link = "Update 31#Update 31.3",
Aliases = { "31.3" },
ShortName = "U31.3",
Date = "2022-03-28",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1303793-garuda-prime-update-313/",
ArchiveLink = "https://web.archive.org/web/20220328230057/https://forums.warframe.com/topic/1303793-garuda-prime-update-313/",
ArchiveDate = "2022-03-28",
Timestamp = 1648490304,
Subtitle = "Garuda Prime"
},
{
Name = "Hotfix 31.3.1",
Link = "Update 31#Hotfix 31.3.1",
Aliases = { "31.3.1" },
ShortName = "H31.3.1",
Date = "2022-03-29",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1303913-garuda-prime-hotfix-3131/",
ArchiveLink = "https://web.archive.org/web/20220329173951/https://forums.warframe.com/topic/1303913-garuda-prime-hotfix-3131/",
ArchiveDate = "2022-03-29",
Timestamp = 1648574499
},
{
Name = "Update 31.5",
Link = "Update 31#Update 31.5",
Aliases = { "31.5", "Angels of the Zariman" },
ShortName = "U31.5",
Date = "2022-04-27",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1305880-update-315-angels-of-the-zariman/",
ArchiveLink = "https://web.archive.org/web/20220427151023/https://forums.warframe.com/topic/1305880-update-315-angels-of-the-zariman/",
ArchiveDate = "2022-04-27",
Timestamp = 1651071726,
Subtitle = "Angels of the Zariman"
},
{
Name = "Hotfix 31.5.1",
Link = "Update 31#Hotfix 31.5.1",
Aliases = { "31.5.1" },
ShortName = "H31.5.1",
Date = "2022-04-27",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1306144-angels-of-the-zariman-hotfix-3151/",
ArchiveLink = "https://web.archive.org/web/20220427230757/https://forums.warframe.com/topic/1306144-angels-of-the-zariman-hotfix-3151/",
ArchiveDate = "2022-04-27",
Timestamp = 1651090862
},
{
Name = "Hotfix 31.5.2",
Link = "Update 31#Hotfix 31.5.2",
Aliases = { "31.5.2" },
ShortName = "H31.5.2",
Date = "2022-04-28",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1306962-angels-of-the-zariman-hotfix-3152/",
ArchiveLink = "https://web.archive.org/web/20220428203754/https://forums.warframe.com/topic/1306962-angels-of-the-zariman-hotfix-3152/",
ArchiveDate = "2022-04-28",
Timestamp = 1651177330
},
{
Name = "Hotfix 31.5.3",
Link = "Update 31#Hotfix 31.5.3",
Aliases = { "31.5.3" },
ShortName = "H31.5.3",
Date = "2022-04-29",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1307386-angels-of-the-zariman-hotfix-3153/",
ArchiveLink = "https://web.archive.org/web/20220429195722/https://forums.warframe.com/topic/1307386-angels-of-the-zariman-hotfix-3153/",
ArchiveDate = "2022-04-29",
Timestamp = 1651251136
},
{
Name = "Hotfix 31.5.4",
Link = "Update 31#Hotfix 31.5.4",
Aliases = { "31.5.4" },
ShortName = "H31.5.4",
Date = "2022-05-02",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1308448-angels-of-the-zariman-hotfix-3154/",
ArchiveLink = "https://web.archive.org/web/20220502211320/https://forums.warframe.com/topic/1308448-angels-of-the-zariman-hotfix-3154/",
ArchiveDate = "2022-05-02",
Timestamp = 1651524892
},
{
Name = "Hotfix 31.5.5",
Link = "Update 31#Hotfix 31.5.5",
Aliases = { "31.5.5" },
ShortName = "H31.5.5",
Date = "2022-05-03",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1308821-angels-of-the-zariman-hotfix-3155/",
ArchiveLink = "https://web.archive.org/web/20220503204536/https://forums.warframe.com/topic/1308821-angels-of-the-zariman-hotfix-3155/",
ArchiveDate = "2022-05-03",
Timestamp = 1651610605
},
{
Name = "Hotfix 31.5.6",
Link = "Update 31#Hotfix 31.5.6",
Aliases = { "31.5.6" },
ShortName = "H31.5.6",
Date = "2022-05-04",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1309138-angels-of-the-zariman-hotfix-3156/",
ArchiveLink = "https://web.archive.org/web/20220504210958/https://forums.warframe.com/topic/1309138-angels-of-the-zariman-hotfix-3156/",
ArchiveDate = "2022-05-04",
Timestamp = 1651697800
},
{
Name = "Hotfix 31.5.7",
Link = "Update 31#Hotfix 31.5.7",
Aliases = { "31.5.7" },
ShortName = "H31.5.7",
Date = "2022-05-06",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1309646-angels-of-the-zariman-hotfix-3157/",
ArchiveLink = "https://web.archive.org/web/20220506184855/https://forums.warframe.com/topic/1309646-angels-of-the-zariman-hotfix-3157/",
ArchiveDate = "2022-05-06",
Timestamp = 1651862456
},
{
Name = "Hotfix 31.5.8",
Link = "Update 31#Hotfix 31.5.8",
Aliases = { "31.5.8" },
ShortName = "H31.5.8",
Date = "2022-05-11",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1310634-zephyr-chroma-prime-vault-hotfix-3158/",
ArchiveLink = "https://web.archive.org/web/20220511181838/https://forums.warframe.com/topic/1310634-zephyr-chroma-prime-vault-hotfix-3158/",
ArchiveDate = "2022-05-11",
Timestamp = 1652292014,
Subtitle = "Zephyr & Chroma Prime Vault"
},
{
Name = "Hotfix 31.5.9",
Link = "Update 31#Hotfix 31.5.9",
Aliases = { "31.5.9" },
ShortName = "H31.5.9",
Date = "2022-05-12",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1310849-zephyr-chroma-prime-vault-hotfix-3159/",
ArchiveLink = "https://web.archive.org/web/20220512205917/https://forums.warframe.com/topic/1310849-zephyr-chroma-prime-vault-hotfix-3159/",
ArchiveDate = "2022-05-12",
Timestamp = 1652388886
},
{
Name = "Hotfix 31.5.10",
Link = "Update 31#Hotfix 31.5.10",
Aliases = { "31.5.10" },
ShortName = "H31.5.10",
Date = "2022-05-17",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1311547-zephyr-chroma-prime-vault-hotfix-31510/",
ArchiveLink = "https://web.archive.org/web/20220517174910/https://forums.warframe.com/topic/1311547-zephyr-chroma-prime-vault-hotfix-31510/",
ArchiveDate = "2022-05-17",
Timestamp = 1652808715
},
{
Name = "Hotfix 31.5.10.1",
Link = "Update 31#Hotfix 31.5.10.1",
Aliases = { "31.5.10.1" },
ShortName = "H31.5.10.1",
Date = "2022-05-17",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1311547-zephyr-chroma-prime-vault-hotfix-31510-315101/",
ArchiveLink = "https://web.archive.org/web/20220517194926/https://forums.warframe.com/topic/1311547-zephyr-chroma-prime-vault-hotfix-31510-315101/",
ArchiveDate = "2022-05-17",
Timestamp = 1652815293
},
{
Name = "Update 31.6",
Link = "Update 31#Update 31.6",
Aliases = { "31.6" },
ShortName = "U31.6",
Date = "2022-06-09",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1313506-echoes-of-the-zariman-update-316/",
ArchiveLink = "https://web.archive.org/web/20220609152352/https://forums.warframe.com/topic/1313506-echoes-of-the-zariman-update-316/",
ArchiveDate = "2022-06-09",
Timestamp = 1654786193,
Subtitle = "Echoes of the Zariman"
},
{
Name = "Hotfix 31.6.1",
Link = "Update 31#Hotfix 31.6.1",
Aliases = { "31.6.1" },
ShortName = "H31.6.1",
Date = "2022-06-09",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1313629-echoes-of-the-zariman-hotfix-3161/",
ArchiveLink = "https://web.archive.org/web/20220609211645/https://forums.warframe.com/topic/1313629-echoes-of-the-zariman-hotfix-3161/",
ArchiveDate = "2022-06-09",
Timestamp = 1654808577
},
{
Name = "Hotfix 31.6.2",
Link = "Update 31#Hotfix 31.6.2",
Aliases = { "31.6.2" },
ShortName = "H31.6.2",
Date = "2022-06-15",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1314484-echoes-of-the-zariman-hotfix-3162/",
ArchiveLink = "https://web.archive.org/web/20220615185218/https://forums.warframe.com/topic/1314484-echoes-of-the-zariman-hotfix-3162/",
ArchiveDate = "2022-06-15",
Timestamp = 1655318449
},
{
Name = "Hotfix 31.6.3",
Link = "Update 31#Hotfix 31.6.3",
Aliases = { "31.6.3" },
ShortName = "H31.6.3",
Date = "2022-06-16",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1314611-echoes-of-the-zariman-hotfix-3163/",
ArchiveLink = "https://web.archive.org/web/20220616205324/https://forums.warframe.com/topic/1314611-echoes-of-the-zariman-hotfix-3163/",
ArchiveDate = "2022-06-16",
Timestamp = 1655412180
},
{
Name = "Hotfix 31.6.4",
Link = "Update 31#Hotfix 31.6.4",
Aliases = { "31.6.4" },
ShortName = "H31.6.4",
Date = "2022-07-14",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1316486-nora%E2%80%99s-mix-vol2-hotfix-3164/",
ArchiveLink = "https://web.archive.org/web/20220714173540/https://forums.warframe.com/topic/1316486-nora%E2%80%99s-mix-vol2-hotfix-3164/",
ArchiveDate = "2022-07-14",
Timestamp = 1657810833,
Subtitle = "Nightwave: Nora's Mix Volume 2"
},
{
Name = "Update 31.7",
Link = "Update 31#Update 31.7",
Aliases = { "31.7" },
ShortName = "U31.7",
Date = "2022-07-16",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1316750-khora-prime-update-317/",
ArchiveLink = "https://web.archive.org/web/20220716200336/https://forums.warframe.com/topic/1316750-khora-prime-update-317/",
ArchiveDate = "2022-07-16",
Timestamp = 1658001734,
Subtitle = "Khora Prime & TennoGen Round 21 - Part 2"
},
{
Name = "Hotfix 31.7.1",
Link = "Update 31#Hotfix 31.7.1",
Aliases = { "31.7.1" },
ShortName = "H31.7.1",
Date = "2022-07-28",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1318073-khora-prime-hotfix-3171/",
ArchiveLink = "https://web.archive.org/web/20220728180418/https://forums.warframe.com/topic/1318073-khora-prime-hotfix-3171/",
ArchiveDate = "2022-07-28",
Timestamp = 1659030950
},
{
Name = "Hotfix 31.7.2",
Link = "Update 31#Hotfix 31.7.2",
Aliases = { "31.7.2" },
ShortName = "H31.7.2",
Date = "2022-08-17",
Parent = "31.0",
ForumLink = "https://forums.warframe.com/topic/1319647-khora-prime-hotfix-3172/",
ArchiveLink = "https://web.archive.org/web/20220817194850/https://forums.warframe.com/topic/1319647-khora-prime-hotfix-3172/",
ArchiveDate = "2022-08-17",
Timestamp = 1660748352,
Subtitle = "TennoGen Round 22 - Part 1"
},
{
Name = "Update 32.0",
Link = "Update 32#Update 32.0",
Aliases = { "32", "32.0", "Veilbreaker" },
ShortName = "U32",
Date = "2022-09-07",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1321162-veilbreaker-update-32/",
ArchiveLink = "https://web.archive.org/web/20220907173541/https://forums.warframe.com/topic/1321162-veilbreaker-update-32/",
ArchiveDate = "2022-09-07",
Timestamp = 1662562811,
Subtitle = "Veilbreaker & TennoGen Round 22 - Part 2"
},
{
Name = "Hotfix 32.0.1",
Link = "Update 32#Hotfix 32.0.1",
Aliases = { "32.0.1" },
ShortName = "H32.0.1",
Date = "2022-09-07",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1321403-veilbreaker-hotfix-3201/",
ArchiveLink = "https://web.archive.org/web/20220907212330/https://forums.warframe.com/topic/1321403-veilbreaker-hotfix-3201/",
ArchiveDate = "2022-09-07",
Timestamp = 1662585000
},
{
Name = "Hotfix 32.0.2",
Link = "Update 32#Hotfix 32.0.2",
Aliases = { "32.0.2" },
ShortName = "H32.0.2",
Date = "2022-09-08",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1321988-veilbreaker-hotfix-3202/",
ArchiveLink = "https://web.archive.org/web/20220909012817/https://forums.warframe.com/topic/1321988-veilbreaker-hotfix-3202/",
ArchiveDate = "2022-09-08",
Timestamp = 1662672202
},
{
Name = "Hotfix 32.0.3",
Link = "Update 32#Hotfix 32.0.3",
Aliases = { "32.0.3" },
ShortName = "H32.0.3",
Date = "2022-09-14",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1323565-veilbreaker-hotfix-3203/",
ArchiveLink = "https://web.archive.org/web/20220914181932/https://forums.warframe.com/topic/1323565-veilbreaker-hotfix-3203/",
ArchiveDate = "2022-09-14",
Timestamp = 1663178321
},
{
Name = "Hotfix 32.0.4",
Link = "Update 32#Hotfix 32.0.4",
Aliases = { "32.0.4" },
ShortName = "H32.0.4",
Date = "2022-09-14",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1323704-veilbreaker-hotfix-3204/",
ArchiveLink = "https://web.archive.org/web/20220914224329/https://forums.warframe.com/topic/1323704-veilbreaker-hotfix-3204/",
ArchiveDate = "2022-09-14",
Timestamp = 1663194674
},
{
Name = "Hotfix 32.0.5",
Link = "Update 32#Hotfix 32.0.5",
Aliases = { "32.0.5" },
ShortName = "H32.0.5",
Date = "2022-09-15",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1324061-veilbreaker-hotfix-3205/",
ArchiveLink = "https://web.archive.org/web/20220915214359/https://forums.warframe.com/topic/1324061-veilbreaker-hotfix-3205/",
ArchiveDate = "2022-09-15",
Timestamp = 1663277862
},
{
Name = "Hotfix 32.0.6",
Link = "Update 32#Hotfix 32.0.6",
Aliases = { "32.0.6" },
ShortName = "H32.0.6",
Date = "2022-09-16",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1324264-veilbreaker-hotfix-3206/",
ArchiveLink = "https://web.archive.org/web/20220916190330/https://forums.warframe.com/topic/1324264-veilbreaker-hotfix-3206/",
ArchiveDate = "2022-09-16",
Timestamp = 1663354138
},
{
Name = "Hotfix 32.0.7",
Link = "Update 32#Hotfix 32.0.7",
Aliases = { "32.0.7" },
ShortName = "H32.0.7",
Date = "2022-09-28",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1325904-veilbreaker-hotfix-3207/",
ArchiveLink = "https://web.archive.org/web/20220929012040/https://forums.warframe.com/topic/1325904-veilbreaker-hotfix-3207/",
ArchiveDate = "2022-09-29",
Timestamp = 1664377161
},
{
Name = "Hotfix 32.0.8",
Link = "Update 32#Hotfix 32.0.8",
Aliases = { "32.0.8" },
ShortName = "H32.0.8",
Date = "2022-09-29",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1326150-veilbreaker-hotfix-3208/",
ArchiveLink = "https://web.archive.org/web/20220929171414/https://forums.warframe.com/topic/1326150-veilbreaker-hotfix-3208/",
ArchiveDate = "2022-09-29",
Timestamp = 1664470932
},
{
Name = "Hotfix 32.0.9",
Link = "Update 32#Hotfix 32.0.9",
Aliases = { "32.0.9" },
ShortName = "H32.0.9",
Date = "2022-10-05",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1327014-veilbreaker-revenant-prime-hotfix-3209/",
ArchiveLink = "https://web.archive.org/web/20221005181942/https://forums.warframe.com/topic/1327014-veilbreaker-revenant-prime-hotfix-3209/",
ArchiveDate = "2022-10-05",
Timestamp = 1664992746,
Subtitle = "Revenant Prime"
},
{
Name = "Hotfix 32.0.10",
Link = "Update 32#Hotfix 32.0.10",
Aliases = { "32.0.10" },
ShortName = "H32.0.10",
Date = "2022-10-05",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1327047-veilbreaker-revenant-prime-hotfix-32010/",
ArchiveLink = "https://web.archive.org/web/20221005204502/https://forums.warframe.com/topic/1327047-veilbreaker-revenant-prime-hotfix-32010/",
ArchiveDate = "2022-10-05",
Timestamp = 1665002622
},
{
Name = "Hotfix 32.0.11",
Link = "Update 32#Hotfix 32.0.11",
Aliases = { "32.0.11" },
ShortName = "H32.0.11",
Date = "2022-10-06",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1327157-veilbreaker-revenant-prime-hotfix-32011/",
ArchiveLink = "https://web.archive.org/web/20221006164348/https://forums.warframe.com/topic/1327157-veilbreaker-revenant-prime-hotfix-32011/",
ArchiveDate = "2022-10-06",
Timestamp = 1665117085
},
{
Name = "Hotfix 32.0.12",
Link = "Update 32#Hotfix 32.0.12",
Aliases = { "32.0.12" },
ShortName = "H32.0.12",
Date = "2022-10-12",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1327814-veilbreaker-revenant-prime-hotfix-32012/",
ArchiveLink = "https://web.archive.org/web/20221012195357/https://forums.warframe.com/topic/1327814-veilbreaker-revenant-prime-hotfix-32012/",
ArchiveDate = "2022-10-12",
Timestamp = 1665603560
},
{
Name = "Hotfix 32.0.13",
Link = "Update 32#Hotfix 32.0.13",
Aliases = { "32.0.13" },
ShortName = "H32.0.13",
Date = "2022-10-14",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1328026-veilbreaker-revenant-prime-hotfix-32013/",
ArchiveLink = "https://web.archive.org/web/20221014165853/https://forums.warframe.com/topic/1328026-veilbreaker-revenant-prime-hotfix-32013/",
ArchiveDate = "2022-10-14",
Timestamp = 1665766118
},
{
Name = "Update 32.1",
Link = "Update 32#Update 32.1",
Aliases = { "32.1" },
ShortName = "U32.1",
Date = "2022-11-02",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1329684-echoes-of-veilbreaker-update-321/",
ArchiveLink = "https://web.archive.org/web/20221102175145/https://forums.warframe.com/topic/1329684-echoes-of-veilbreaker-update-321/",
ArchiveDate = "2022-11-02",
Timestamp = 1667401214,
Subtitle = "Echoes of Veilbreaker"
},
{
Name = "Hotfix 32.1.1",
Link = "Update 32#Hotfix 32.1.1",
Aliases = { "32.1.1" },
ShortName = "H32.1.1",
Date = "2022-11-03",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1329952-echoes-of-veilbreaker-hotfix-3211/",
ArchiveLink = "https://web.archive.org/web/20221103183809/https://forums.warframe.com/topic/1329952-echoes-of-veilbreaker-hotfix-3211/",
ArchiveDate = "2022-11-03",
Timestamp = 1667500020
},
{
Name = "Hotfix 32.1.2",
Link = "Update 32#Hotfix 32.1.2",
Aliases = { "32.1.2" },
ShortName = "H32.1.2",
Date = "2022-11-04",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1330095-echoes-of-veilbreaker-hotfix-3212/",
ArchiveLink = "https://web.archive.org/web/20221104210858/https://forums.warframe.com/topic/1330095-echoes-of-veilbreaker-hotfix-3212/",
ArchiveDate = "2022-11-04",
Timestamp = 1667595311
},
{
Name = "Hotfix 32.1.3",
Link = "Update 32#Hotfix 32.1.3",
Aliases = { "32.1.3" },
ShortName = "H32.1.3",
Date = "2022-11-08",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1330541-echoes-of-veilbreaker-hotfix-3213/",
ArchiveLink = "https://web.archive.org/web/20221108160432/https://forums.warframe.com/topic/1330541-echoes-of-veilbreaker-hotfix-3213/",
ArchiveDate = "2022-11-08",
Timestamp = 1667923153
},
{
Name = "Hotfix 32.1.4",
Link = "Update 32#Hotfix 32.1.4",
Aliases = { "32.1.4" },
ShortName = "H32.1.4",
Date = "2022-11-09",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1330673-echoes-of-veilbreaker-hotfix-3214/",
ArchiveLink = "https://web.archive.org/web/20221109223842/https://forums.warframe.com/topic/1330673-echoes-of-veilbreaker-hotfix-3214/",
ArchiveDate = "2022-11-09",
Timestamp = 1668033217
},
{
Name = "Update 32.2",
Link = "Update 32#Update 32.2",
Aliases = { "32.2" },
ShortName = "U32.2",
Date = "2022-11-30",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1332235-update-3220-lua’s-prey/",
ArchiveLink = "https://web.archive.org/web/20221130160655/https://forums.warframe.com/topic/1332235-update-3220-lua’s-prey/",
ArchiveDate = "2022-11-30",
Timestamp = 1669824106,
Subtitle = "Lua's Prey"
},
{
Name = "Hotfix 32.2.1",
Link = "Update 32#Hotfix 32.2.1",
Aliases = { "32.2.1" },
ShortName = "H32.2.1",
Date = "2022-11-30",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1332403-lua’s-prey-hotfix-3221/",
ArchiveLink = "https://web.archive.org/web/20221130223328/https://forums.warframe.com/topic/1332403-lua’s-prey-hotfix-3221%C2%A0/",
ArchiveDate = "2022-11-30",
Timestamp = 1669847587
},
{
Name = "Hotfix 32.2.2",
Link = "Update 32#Hotfix 32.2.2",
Aliases = { "32.2.2" },
ShortName = "H32.2.2",
Date = "2022-12-01",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1332685-lua%E2%80%99s-prey-hotfix-3222/",
ArchiveLink = "https://web.archive.org/web/20221203185930/https://forums.warframe.com/topic/1332685-lua%E2%80%99s-prey-hotfix-3222/",
ArchiveDate = "2022-12-03",
Timestamp = 1669918038
},
{
Name = "Hotfix 32.2.3",
Link = "Update 32#Hotfix 32.2.3",
Aliases = { "32.2.3" },
ShortName = "H32.2.3",
Date = "2022-12-01",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1332723-lua%E2%80%99s-prey-hotfix-3223/",
ArchiveLink = "https://web.archive.org/web/20221203222308/https://forums.warframe.com/topic/1332723-lua%E2%80%99s-prey-hotfix-3223/",
ArchiveDate = "2022-12-03",
Timestamp = 1669923308
},
{
Name = "Hotfix 32.2.4",
Link = "Update 32#Hotfix 32.2.4",
Aliases = { "32.2.4" },
ShortName = "H32.2.4",
Date = "2022-12-07",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1333863-lua’s-prey-hotfix-3224/",
ArchiveLink = "https://web.archive.org/web/20221207191348/https://forums.warframe.com/topic/1333863-lua’s-prey-hotfix-3224/",
ArchiveDate = "2022-12-07",
Timestamp = 1670439896
},
{
Name = "Hotfix 32.2.5",
Link = "Update 32#Hotfix 32.2.5",
Aliases = { "32.2.5" },
ShortName = "H32.2.5",
Date = "2022-12-14",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1334887-lua’s-prey-baruuk-prime-hotfix-3225/",
ArchiveLink = "https://web.archive.org/web/20221214190307/https://forums.warframe.com/topic/1334887-lua’s-prey-baruuk-prime-hotfix-3225/",
ArchiveDate = "2022-12-14",
Timestamp = 1671044416,
Subtitle = "Baruuk Prime"
},
{
Name = "Hotfix 32.2.6",
Link = "Update 32#Hotfix 32.2.6",
Aliases = { "32.2.6" },
ShortName = "H32.2.6",
Date = "2022-12-14",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1334920-lua’s-prey-baruuk-prime-hotfix-3226/",
ArchiveLink = "https://web.archive.org/web/20221214223158/https://forums.warframe.com/topic/1334920-lua’s-prey-baruuk-prime-hotfix-3226/",
ArchiveDate = "2022-12-14",
Timestamp = 1671057104
},
{
Name = "Hotfix 32.2.7",
Link = "Update 32#Hotfix 32.2.7",
Aliases = { "32.2.7" },
ShortName = "H32.2.7",
Date = "2022-12-15",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1335045-lua’s-prey-baruuk-prime-hotfix-3227/",
ArchiveLink = "https://web.archive.org/web/20221215200557/https://forums.warframe.com/topic/1335045-lua’s-prey-baruuk-prime-hotfix-3227/",
ArchiveDate = "2022-12-15",
Timestamp = 1671133801
},
{
Name = "Hotfix 32.2.8",
Link = "Update 32#Hotfix 32.2.8",
Aliases = { "32.2.8" },
ShortName = "H32.2.8",
Date = "2022-12-15",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1335111-lua’s-prey-baruuk-prime-hotfix-3228/",
ArchiveLink = "https://web.archive.org/web/20221215214516/https://forums.warframe.com/topic/1335111-lua’s-prey-baruuk-prime-hotfix-3228/",
ArchiveDate = "2022-12-15",
Timestamp = 1671139978
},
{
Name = "Hotfix 32.2.9",
Link = "Update 32#Hotfix 32.2.9",
Aliases = { "32.2.9" },
ShortName = "H32.2.9",
Date = "2023-01-11",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1337369-lua%E2%80%99s-prey-baruuk-prime-hotfix-3229/",
ArchiveLink = "https://web.archive.org/web/20230111200430/https://forums.warframe.com/topic/1337369-lua%E2%80%99s-prey-baruuk-prime-hotfix-3229/",
ArchiveDate = "2023-01-11",
Timestamp = 1673463683
},
{
Name = "Hotfix 32.2.10",
Link = "Update 32#Hotfix 32.2.10",
Aliases = { "32.2.10" },
ShortName = "H32.2.10",
Date = "2023-01-18",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1337917-lua%E2%80%99s-prey-baruuk-prime-hotfix-32210/",
ArchiveLink = "https://web.archive.org/web/20230118190853/https://forums.warframe.com/topic/1337917-lua%E2%80%99s-prey-baruuk-prime-hotfix-32210/",
ArchiveDate = "2023-01-18",
Timestamp = 1674068302
},
{
Name = "Hotfix 32.2.10.1",
Link = "Update 32#Hotfix 32.2.10.1",
Aliases = { "32.2.10.1" },
ShortName = "H32.2.10.1",
Date = "2023-01-18",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1337917-lua%E2%80%99s-prey-baruuk-prime-hotfix-32210-322101/",
ArchiveLink = "https://web.archive.org/web/20230118214925/https://forums.warframe.com/topic/1337917-lua%E2%80%99s-prey-baruuk-prime-hotfix-32210-322101/",
ArchiveDate = "2023-01-18",
Timestamp = 1674075386
},
{
Name = "Update 32.3",
Link = "Update 32#Update 32.3",
Aliases = { "32.3" },
ShortName = "U32.3",
Date = "2023-02-15",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1339890-update-323-citrines-last-wish/",
ArchiveLink = "https://web.archive.org/web/20230215160920/https://forums.warframe.com/topic/1339890-update-323-citrines-last-wish/",
ArchiveDate = "2023-02-15",
Timestamp = 1676469600,
Subtitle = "Citrine's Last Wish"
},
{
Name = "Hotfix 32.3.1",
Link = "Update 32#Hotfix 32.3.1",
Aliases = { "32.3.1" },
ShortName = "H32.3.1",
Date = "2023-02-15",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1340008-citrine%E2%80%99s-last-wish-hotfix-3231/",
ArchiveLink = "https://web.archive.org/web/20230215212533/https://forums.warframe.com/topic/1340008-citrine%E2%80%99s-last-wish-hotfix-3231/",
ArchiveDate = "2023-02-15",
Timestamp = 1676496292
},
{
Name = "Hotfix 32.3.2",
Link = "Update 32#Hotfix 32.3.2",
Aliases = { "32.3.2" },
ShortName = "H32.3.2",
Date = "2023-02-16",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1340302-citrine%E2%80%99s-last-wish-hotfix-3232/",
ArchiveLink = "https://web.archive.org/web/20230218135850/https://forums.warframe.com/topic/1340302-citrine%E2%80%99s-last-wish-hotfix-3232/",
ArchiveDate = "2023-02-18",
Timestamp = 1676583335
},
{
Name = "Hotfix 32.3.3",
Link = "Update 32#Hotfix 32.3.3",
Aliases = { "32.3.3" },
ShortName = "H32.3.3",
Date = "2023-02-17",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1340528-citrine%E2%80%99s-last-wish-hotfix-3233/",
ArchiveLink = "https://web.archive.org/web/20230218043803/https://forums.warframe.com/topic/1340528-citrine%E2%80%99s-last-wish-hotfix-3233/",
ArchiveDate = "2023-02-18",
Timestamp = 1676673444
},
{
Name = "Hotfix 32.3.4",
Link = "Update 32#Hotfix 32.3.4",
Aliases = { "32.3.4" },
ShortName = "H32.3.4",
Date = "2023-02-23",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1341304-citrine%E2%80%99s-last-wish-hotfix-3234/",
ArchiveLink = "https://web.archive.org/web/20230223214342/https://forums.warframe.com/topic/1341304-citrine%E2%80%99s-last-wish-hotfix-3234/",
ArchiveDate = "2023-02-23",
Timestamp = 1677172920
},
{
Name = "Hotfix 32.3.5",
Link = "Update 32#Hotfix 32.3.5",
Aliases = { "32.3.5" },
ShortName = "H32.3.5",
Date = "2023-02-28",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1341742-citrine’s-last-wish-hotfix-3235/",
ArchiveLink = "https://web.archive.org/web/20230228195444/https://forums.warframe.com/topic/1341742-citrine’s-last-wish-hotfix-3235/",
ArchiveDate = "2023-02-28",
Timestamp = 1677613653
},
{
Name = "Hotfix 32.3.6",
Link = "Update 32#Hotfix 32.3.6",
Aliases = { "32.3.6" },
ShortName = "H32.3.6",
Date = "2023-03-15",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1343101-hildryn-prime-hotfix-3236/",
ArchiveLink = "https://web.archive.org/web/20230315180838/https://forums.warframe.com/topic/1343101-hildryn-prime-hotfix-3236/",
ArchiveDate = "2023-03-15",
Timestamp = 1678903264
},
{
Name = "Hotfix 32.3.7",
Link = "Update 32#Hotfix 32.3.7",
Aliases = { "32.3.7" },
ShortName = "H32.3.7",
Date = "2023-03-16",
Parent = "32.0",
ForumLink = "https://forums.warframe.com/topic/1343227-hildryn-prime-hotfix-3237/",
ArchiveLink = "https://web.archive.org/web/20230316173925/https://forums.warframe.com/topic/1343227-hildryn-prime-hotfix-3237/",
ArchiveDate = "2023-03-16",
Timestamp = 1678988189
},
{
Name = "Update 33.0",
Link = "Update 33#Update 33.0",
Aliases = { "33", "33.0" },
ShortName = "U33",
Date = "2023-04-26",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1346011-pc-update-33-the-duviri-paradox/",
ArchiveLink = "https://web.archive.org/web/20230426160418/https://forums.warframe.com/topic/1346011-pc-update-33-the-duviri-paradox/",
ArchiveDate = "2023-04-26",
Timestamp = 1682521175,
Subtitle = "The Duviri Paradox"
},
{
Name = "Hotfix 33.0.1",
Link = "Update 33#Hotfix 33.0.1",
Aliases = { "33.0.1" },
ShortName = "H33.0.1",
Date = "2023-04-27",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1346399-the-duviri-paradox-hotfix-3301/",
ArchiveLink = "https://web.archive.org/web/20230427012032/https://forums.warframe.com/topic/1346399-the-duviri-paradox-hotfix-3301/",
ArchiveDate = "2023-04-27",
Timestamp = 1682555523
},
{
Name = "Hotfix 33.0.2",
Link = "Update 33#Hotfix 33.0.2",
Aliases = { "33.0.2" },
ShortName = "H33.0.2",
Date = "2023-04-27",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1347241-the-duviri-paradox-hotfix-3302/",
ArchiveLink = "https://web.archive.org/web/20230427205425/https://forums.warframe.com/topic/1347241-the-duviri-paradox-hotfix-3302/",
ArchiveDate = "2023-04-27",
Timestamp = 1682628795
},
{
Name = "Hotfix 33.0.3",
Link = "Update 33#Hotfix 33.0.3",
Aliases = { "33.0.3" },
ShortName = "H33.0.3",
Date = "2023-04-28",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1348031-the-duviri-paradox-hotfix-3303/",
ArchiveLink = "https://web.archive.org/web/20230428214641/https://forums.warframe.com/topic/1348031-the-duviri-paradox-hotfix-3303/",
ArchiveDate = "2023-04-28",
Timestamp = 1682717971
},
{
Name = "Hotfix 33.0.4",
Link = "Update 33#Hotfix 33.0.4",
Aliases = { "33.0.4" },
ShortName = "H33.0.4",
Date = "2023-05-02",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1349876-the-duviri-paradox-hotfix-3304/",
ArchiveLink = "https://web.archive.org/web/20230502153035/https://forums.warframe.com/topic/1349876-the-duviri-paradox-hotfix-3304/",
ArchiveDate = "2023-05-02",
Timestamp = 1683040869
},
{
Name = "Hotfix 33.0.5",
Link = "Update 33#Hotfix 33.0.5",
Aliases = { "33.0.5" },
ShortName = "H33.0.5",
Date = "2023-05-03",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1350382-the-duviri-paradox-hotfix-3305/",
ArchiveLink = "https://web.archive.org/web/20230503195707/https://forums.warframe.com/topic/1350382-the-duviri-paradox-hotfix-3305/",
ArchiveDate = "2023-05-03",
Timestamp = 1683143242
},
{
Name = "Hotfix 33.0.6",
Link = "Update 33#Hotfix 33.0.6",
Aliases = { "33.0.6" },
ShortName = "H33.0.6",
Date = "2023-05-04",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1350710-the-duviri-paradox-hotfix-3306/",
ArchiveLink = "https://web.archive.org/web/20230505001112/https://forums.warframe.com/topic/1350710-the-duviri-paradox-hotfix-3306/",
ArchiveDate = "2023-05-04",
Timestamp = 1683235700
},
{
Name = "Hotfix 33.0.7",
Link = "Update 33#Hotfix 33.0.7",
Aliases = { "33.0.7" },
ShortName = "H33.0.7",
Date = "2023-05-09",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1351843-the-duviri-paradox-hotfix-3307/",
ArchiveLink = "https://web.archive.org/web/20230509212934/https://forums.warframe.com/topic/1351843-the-duviri-paradox-hotfix-3307/",
ArchiveDate = "2023-05-09",
Timestamp = 1683667437
},
{
Name = "Hotfix 33.0.8",
Link = "Update 33#Hotfix 33.0.8",
Aliases = { "33.0.8" },
ShortName = "H33.0.8",
Date = "2023-05-11",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1352273-the-duviri-paradox-hotfix-3308/",
ArchiveLink = "https://web.archive.org/web/20230511213935/https://forums.warframe.com/topic/1352273-the-duviri-paradox-hotfix-3308/",
ArchiveDate = "2023-05-11",
Timestamp = 1683840719
},
{
Name = "Hotfix 33.0.9",
Link = "Update 33#Hotfix 33.0.9",
Aliases = { "33.0.9" },
ShortName = "H33.0.9",
Date = "2023-05-11",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1352290-the-duviri-paradox-hotfix-3309/",
ArchiveLink = "https://web.archive.org/web/20230511230146/https://forums.warframe.com/topic/1352290-the-duviri-paradox-hotfix-3309/",
ArchiveDate = "2023-05-11",
Timestamp = 1683845866
},
{
Name = "Hotfix 33.0.10",
Link = "Update 33#Hotfix 33.0.10",
Aliases = { "33.0.10" },
ShortName = "H33.0.10",
Date = "2023-05-12",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1352431-the-duviri-paradox-hotfix-33010/",
ArchiveLink = "https://web.archive.org/web/20230512174512/https://forums.warframe.com/topic/1352431-the-duviri-paradox-hotfix-33010/",
ArchiveDate = "2023-05-12",
Timestamp = 1683913004
},
{
Name = "Hotfix 33.0.11",
Link = "Update 33#Hotfix 33.0.11",
Aliases = { "33.0.11" },
ShortName = "H33.0.11",
Date = "2023-05-24",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1354230-the-duviri-paradox-hotfix-33011-12/",
ArchiveLink = "https://web.archive.org/web/20230524171141/https://forums.warframe.com/topic/1354230-the-duviri-paradox-hotfix-33011-12/",
ArchiveDate = "2023-05-24",
Timestamp = 1684940694
},
{
Name = "Hotfix 33.0.12",
Link = "Update 33#Hotfix 33.0.12",
Aliases = { "33.0.12" },
ShortName = "H33.0.12",
Date = "2023-05-24",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1354230-the-duviri-paradox-hotfix-33011-12/?do=findComment&comment=12797443",
ArchiveLink = "https://web.archive.org/web/20230524171141/https://forums.warframe.com/topic/1354230-the-duviri-paradox-hotfix-33011-12/",
ArchiveDate = "2023-05-24",
Timestamp = 1684945144
},
{
Name = "Hotfix 33.0.13",
Link = "Update 33#Hotfix 33.0.13",
Aliases = { "33.0.13" },
ShortName = "H33.0.13",
Date = "2023-05-26",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1354540-the-duviri-paradox-hotfix-33013/",
ArchiveLink = "https://web.archive.org/web/20230526184341/https://forums.warframe.com/topic/1354540-the-duviri-paradox-hotfix-33013/",
ArchiveDate = "2023-05-26",
Timestamp = 1685126229
},
{
Name = "Hotfix 33.0.14",
Link = "Update 33#Hotfix 33.0.14",
Aliases = { "33.0.14" },
ShortName = "H33.0.14",
Date = "2023-05-29",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1354992-the-duviri-paradox-hotfix-33014/",
ArchiveLink = "https://web.archive.org/web/20230529202839/https://forums.warframe.com/topic/1354992-the-duviri-paradox-hotfix-33014/",
ArchiveDate = "2023-05-29",
Timestamp = 1685390450
},
{
Name = "Update 33.5",
Link = "Update 33#Update 33.5",
Aliases = { "33.5" },
ShortName = "U33.5",
Date = "2023-06-21",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1357210-update-335-the-seven-crimes-of-kullervo/",
ArchiveLink = "https://web.archive.org/web/20230621193345/https://forums.warframe.com/topic/1357210-update-335-the-seven-crimes-of-kullervo/",
ArchiveDate = "2023-06-21",
Timestamp = 1687359253,
Subtitle = "The Seven Crimes of Kullervo"
},
{
Name = "Hotfix 33.5.1",
Link = "Update 33#Hotfix 33.5.1",
Aliases = { "33.5.1" },
ShortName = "H33.5.1",
Date = "2023-06-21",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1357355-the-seven-crimes-of-kullervo-hotfix-3351/",
ArchiveLink = "https://web.archive.org/web/20230621200936/https://forums.warframe.com/topic/1357355-the-seven-crimes-of-kullervo-hotfix-3351/",
ArchiveDate = "2023-06-21",
Timestamp = 1687378084
},
{
Name = "Hotfix 33.5.2",
Link = "Update 33#Hotfix 33.5.2",
Aliases = { "33.5.2" },
ShortName = "H33.5.2",
Date = "2023-06-21",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1357778-the-seven-crimes-of-kullervo-hotfix-3352/",
ArchiveLink = "https://web.archive.org/web/20230623013135/https://forums.warframe.com/topic/1357778-the-seven-crimes-of-kullervo-hotfix-3352/",
ArchiveDate = "2023-06-22",
Timestamp = 1687468627
},
{
Name = "Hotfix 33.5.3",
Link = "Update 33#Hotfix 33.5.3",
Aliases = { "33.5.3" },
ShortName = "H33.5.3",
Date = "2023-06-23",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1358046-the-seven-crimes-of-kullervo-hotfix-3353/",
ArchiveLink = "https://web.archive.org/web/20230623194827/https://forums.warframe.com/topic/1358046-the-seven-crimes-of-kullervo-hotfix-3353/",
ArchiveDate = "2023-06-23",
Timestamp = 1687549421
},
{
Name = "Hotfix 33.5.4",
Link = "Update 33#Hotfix 33.5.4",
Aliases = { "33.5.4" },
ShortName = "H33.5.4",
Date = "2023-06-28",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1358812-the-seven-crimes-of-kullervo-hotfix-3354",
ArchiveLink = "https://web.archive.org/web/20230628192915/https://forums.warframe.com/topic/1358812-the-seven-crimes-of-kullervo-hotfix-3354/",
ArchiveDate = "2023-06-28",
Timestamp = 1687980160
},
{
Name = "Hotfix 33.5.5",
Link = "Update 33#Hotfix 33.5.5",
Aliases = { "33.5.5" },
ShortName = "H33.5.5",
Date = "2023-07-06",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1359583-the-seven-crimes-of-kullervo-hotfix-3355/",
ArchiveLink = "https://web.archive.org/web/20230706172429/https://forums.warframe.com/topic/1359583-the-seven-crimes-of-kullervo-hotfix-3355/",
ArchiveDate = "2023-07-06",
Timestamp = 1688659791
},
{
Name = "Hotfix 33.5.6",
Link = "Update 33#Hotfix 33.5.6",
Aliases = { "33.5.6" },
ShortName = "H33.5.6",
Date = "2023-07-07",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1359716-the-seven-crimes-of-kullervo-hotfix-3356/",
ArchiveLink = "https://web.archive.org/web/20230707233525/https://forums.warframe.com/topic/1359716-the-seven-crimes-of-kullervo-hotfix-3356/",
ArchiveDate = "2023-07-07",
Timestamp = 1688739990
},
{
Name = "Update 33.6",
Link = "Update 33#Update 33.6",
Aliases = { "33.6" },
ShortName = "U33.6",
Date = "2023-07-27",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1361249-update-336-echoes-of-duviri/",
ArchiveLink = "https://web.archive.org/web/20230727150709/https://forums.warframe.com/topic/1361249-update-336-echoes-of-duviri/",
ArchiveDate = "2023-07-27",
Timestamp = 1690470109,
Subtitle = "Echoes of Duviri"
},
{
Name = "Hotfix 33.6.1",
Link = "Update 33#Hotfix 33.6.1",
Aliases = { "33.6.1" },
ShortName = "H33.6.1",
Date = "2023-07-31",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1362046-echoes-of-duviri-hotfix-3361/",
ArchiveLink = "https://web.archive.org/web/20230731183249/https://forums.warframe.com/topic/1362046-echoes-of-duviri-hotfix-3361/",
ArchiveDate = "2023-07-31",
Timestamp = 1690828329,
},
{
Name = "Hotfix 33.6.2",
Link = "Update 33#Hotfix 33.6.2",
Aliases = { "33.6.2" },
ShortName = "H33.6.2",
Date = "2023-08-01",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1362251-echoes-of-duviri-hotfix-3362/",
ArchiveLink = "https://web.archive.org/web/20230802022913/https://forums.warframe.com/topic/1362251-echoes-of-duviri-hotfix-3362/",
ArchiveDate = "2023-09-02",
Timestamp = 1690902068,
},
{
Name = "Hotfix 33.6.3",
Link = "Update 33#Hotfix 33.6.3",
Aliases = { "33.6.3" },
ShortName = "H33.6.3",
Date = "2023-08-03",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1362533-echoes-of-duviri-hotfix-3363/",
ArchiveLink = "https://web.archive.org/web/20230803184945/https://forums.warframe.com/topic/1362533-echoes-of-duviri-hotfix-3363/",
ArchiveDate = "2023-09-03",
Timestamp = 1691088338,
},
{
Name = "Hotfix 33.6.4",
Link = "Update 33#Hotfix 33.6.4",
Aliases = { "33.6.4" },
ShortName = "H33.6.4",
Date = "2023-08-15",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1363540-echoes-of-duviri-hotfix-3364/",
ArchiveLink = "https://web.archive.org/web/20230815192405/https://forums.warframe.com/topic/1363540-echoes-of-duviri-hotfix-3364/",
ArchiveDate = "2023-08-15",
Timestamp = 1692127151,
},
{
Name = "Hotfix 33.6.5",
Link = "Update 33#Hotfix 33.6.5",
Aliases = { "33.6.5" },
ShortName = "H33.6.5",
Date = "2023-08-21",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1363995-echoes-of-duviri-hotfix-3365/",
ArchiveLink = "https://web.archive.org/web/20230821205345/https://forums.warframe.com/topic/1363995-echoes-of-duviri-hotfix-3365/",
ArchiveDate = "2023-08-21",
Timestamp = 1692650902,
},
{
Name = "Hotfix 33.6.6",
Link = "Update 33#Hotfix 33.6.6",
Aliases = { "33.6.6" },
ShortName = "H33.6.6",
Date = "2023-08-25",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1364269-echoes-of-duviri-hotfix-3366/",
ArchiveLink = "https://web.archive.org/web/20230825154615/https://forums.warframe.com/topic/1364269-echoes-of-duviri-hotfix-3366/",
ArchiveDate = "2023-08-25",
Timestamp = 1692977316,
},
{
Name = "Hotfix 33.6.7",
Link = "Update 33#Hotfix 33.6.7",
Aliases = { "33.6.7" },
ShortName = "H33.6.7",
Date = "2023-08-31",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1365014-echoes-of-duviri-hotfix-3367/",
ArchiveLink = "https://web.archive.org/web/20230831165708/https://forums.warframe.com/topic/1365014-echoes-of-duviri-hotfix-3367/",
ArchiveDate = "2023-08-31",
Timestamp = 1693496320,
},
{
Name = "Hotfix 33.6.8",
Link = "Update 33#Hotfix 33.6.8",
Aliases = { "33.6.8" },
ShortName = "H33.6.8",
Date = "2023-09-06",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1365497-echoes-of-duviri-hotfix-3368/",
ArchiveLink = "https://web.archive.org/web/20230906175046/https://forums.warframe.com/topic/1365497-echoes-of-duviri-hotfix-3368/",
ArchiveDate = "2023-09-06",
Timestamp = 1694022218,
},
{
Name = "Hotfix 33.6.9",
Link = "Update 33#Hotfix 33.6.9",
Aliases = { "33.6.9" },
ShortName = "H33.6.9",
Date = "2023-09-12",
Parent = "33.0",
ForumLink = "https://forums.warframe.com/topic/1365884-echoes-of-duviri-hotfix-3369/",
ArchiveLink = "https://web.archive.org/web/20230912171505/https://forums.warframe.com/topic/1365884-echoes-of-duviri-hotfix-3369/",
ArchiveDate = "2023-09-12",
Timestamp = 1694538400,
},
{
Name = "Update 34.0",
Link = "Update 34#Update 34.0",
Aliases = { "34", "34.0", "Abyss of Dagath" },
ShortName = "U34",
Date = "2023-10-18",
Parent = "34.0",
ForumLink = "https://forums.warframe.com/topic/1368153-abyss-of-dagath-update-34/",
ArchiveLink = "https://web.archive.org/web/20231018150308/https://forums.warframe.com/topic/1368153-abyss-of-dagath-update-34/",
ArchiveDate = "2023-10-18",
Timestamp = 1697641101,
Subtitle = "Abyss of Dagath"
},
{
Name = "Hotfix 34.0.1",
Link = "Update 34#Hotfix 34.0.1",
Aliases = { "34.0.1" },
ShortName = "H34.0.1",
Date = "2023-10-18",
Parent = "34.0",
ForumLink = "https://forums.warframe.com/topic/1368368-abyss-of-dagath-hotfix-3401/",
ArchiveLink = "https://web.archive.org/web/20231018225936/https://forums.warframe.com/topic/1368368-abyss-of-dagath-hotfix-3401/",
ArchiveDate = "2023-10-18",
Timestamp = 1697662328,
},
{
Name = "Hotfix 34.0.2",
Link = "Update 34#Hotfix 34.0.2",
Aliases = { "34.0.2" },
ShortName = "H34.0.2",
Date = "2023-10-19",
Parent = "34.0",
ForumLink = "https://forums.warframe.com/topic/1368767-abyss-of-dagath-hotfix-3402/",
ArchiveLink = "https://web.archive.org/web/20231019194718/https://forums.warframe.com/topic/1368767-abyss-of-dagath-hotfix-3402/",
ArchiveDate = "2023-10-19",
Timestamp = 1697744077,
},
{
Name = "Hotfix 34.0.3",
Link = "Update 34#Hotfix 34.0.3",
Aliases = { "34.0.3" },
ShortName = "H34.0.3",
Date = "2023-10-20",
Parent = "34.0",
ForumLink = "https://forums.warframe.com/topic/1369004-abyss-of-dagath-hotfix-3403/",
ArchiveLink = "https://web.archive.org/web/20231020170703/https://forums.warframe.com/topic/1369004-abyss-of-dagath-hotfix-3403/",
ArchiveDate = "2023-10-20",
Timestamp = 1697821198,
},
{
Name = "Hotfix 34.0.4",
Link = "Update 34#Hotfix 34.0.4",
Aliases = { "34.0.4" },
ShortName = "H34.0.4",
Date = "2023-10-24",
Parent = "34.0",
ForumLink = "https://forums.warframe.com/topic/1369743-abyss-of-dagath-hotfix-3404/",
ArchiveLink = "https://web.archive.org/web/20231024193741/https://forums.warframe.com/topic/1369743-abyss-of-dagath-hotfix-3404/",
ArchiveDate = "2023-10-24",
Timestamp = 1698176002,
},
{
Name = "Hotfix 34.0.5",
Link = "Update 34#Hotfix 34.0.5",
Aliases = { "34.0.5" },
ShortName = "H34.0.5",
Date = "2023-10-26",
Parent = "34.0",
ForumLink = "https://forums.warframe.com/topic/1370054-abyss-of-dagath-hotfix-3405/",
ArchiveLink = "https://web.archive.org/web/20231026201948/https://forums.warframe.com/topic/1370054-abyss-of-dagath-hotfix-3405/",
ArchiveDate = "2023-10-26",
Timestamp = 1698350705,
},
{
Name = "Hotfix 34.0.6",
Link = "Update 34#Hotfix 34.0.6",
Aliases = { "34.0.6" },
ShortName = "H34.0.6",
Date = "2023-10-30",
Parent = "34.0",
ForumLink = "https://forums.warframe.com/topic/1370642-abyss-of-dagath-hotfix-3406/",
ArchiveLink = "https://web.archive.org/web/20231030190930/https://forums.warframe.com/topic/1370642-abyss-of-dagath-hotfix-3406/",
ArchiveDate = "2023-10-30",
Timestamp = 1698692663,
},
{
Name = "Hotfix 34.0.7",
Link = "Update 34#Hotfix 34.0.7",
Aliases = { "34.0.7" },
ShortName = "H34.0.7",
Date = "2023-11-02",
Parent = "34.0",
ForumLink = "https://forums.warframe.com/topic/1370957-abyss-of-dagath-hotfix-3407/",
ArchiveLink = "https://web.archive.org/web/20231102151511/https://forums.warframe.com/topic/1370957-abyss-of-dagath-hotfix-3407/",
ArchiveDate = "2023-11-02",
Timestamp = 1698937339,
},
{
Name = "Hotfix 34.0.8",
Link = "Update 34#Hotfix 34.0.8",
Aliases = { "34.0.8" },
ShortName = "H34.0.8",
Date = "2023-11-09",
Parent = "34.0",
ForumLink = "https://forums.warframe.com/topic/1371707-abyss-of-dagath-hotfix-3408/",
ArchiveLink = "https://web.archive.org/web/20231109194311/https://forums.warframe.com/topic/1371707-abyss-of-dagath-hotfix-3408/",
ArchiveDate = "2023-11-09",
Timestamp = 1699558377,
},
{
Name = "Hotfix 34.0.8.1",
Link = "Update 34#Hotfix 34.0.8.1",
Aliases = { "34.0.8.1" },
ShortName = "H34.0.8.1",
Date = "2023-11-09",
Parent = "34.0",
ForumLink = "https://forums.warframe.com/topic/1371707-abyss-of-dagath-hotfix-3408-34081/page/2/#comment-12902747",
ArchiveLink = "https://web.archive.org/web/20231109231658/https://forums.warframe.com/topic/1371707-abyss-of-dagath-hotfix-3408-34081/page/2/#comment-12902747",
ArchiveDate = "2023-11-09",
Timestamp = 1699566452,
},
{
Name = "Update 35.0",
Link = "Update 35#Update 35.0",
Aliases = { "35", "35.0", "Whispers in the Wall" },
ShortName = "U35",
Date = "2023-12-13",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1374376-update-35-whispers-in-the-walls/",
ArchiveLink = "https://web.archive.org/web/20231213162002/https://forums.warframe.com/topic/1374376-update-35-whispers-in-the-walls/",
ArchiveDate = "2023-12-13",
Timestamp = 1702483917,
Subtitle = "Whispers in the Walls"
},
{
Name = "Hotfix 35.0.1",
Link = "Update 35#Hotfix 35.0.1",
Aliases = { "35.0.1" },
ShortName = "H35.0.1",
Date = "2023-12-13",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1374579-whispers-in-the-walls-hotfix-3501/",
ArchiveLink = "https://web.archive.org/web/20231213223058/https://forums.warframe.com/topic/1374579-whispers-in-the-walls-hotfix-3501/",
ArchiveDate = "2023-12-13",
Timestamp = 1702506404,
},
{
Name = "Hotfix 35.0.2",
Link = "Update 35#Hotfix 35.0.2",
Aliases = { "35.0.2" },
ShortName = "H35.0.2",
Date = "2023-12-14",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1375130-whispers-in-the-walls-hotfix-3502/",
ArchiveLink = "https://web.archive.org/web/20231214223521/https://forums.warframe.com/topic/1375130-whispers-in-the-walls-hotfix-3502/",
ArchiveDate = "2023-12-14",
Timestamp = 1702592997,
},
{
Name = "Hotfix 35.0.3",
Link = "Update 35#Hotfix 35.0.3",
Aliases = { "35.0.3" },
ShortName = "H35.0.3",
Date = "2023-12-18",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1376340-whispers-in-the-walls-hotfix-3503/",
ArchiveLink = "https://web.archive.org/web/20231218184936/https://forums.warframe.com/topic/1376340-whispers-in-the-walls-hotfix-3503/",
ArchiveDate = "2023-12-18",
Timestamp = 1702925204,
},
{
Name = "Hotfix 35.0.4",
Link = "Update 35#Hotfix 35.0.4",
Aliases = { "35.0.4" },
ShortName = "H35.0.4",
Date = "2023-12-20",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1377055-whispers-in-the-walls-hotfix-3504/",
ArchiveLink = "https://web.archive.org/web/20231220203121/https://forums.warframe.com/topic/1377055-whispers-in-the-walls-hotfix-3504/",
ArchiveDate = "2023-12-20",
Timestamp = 1703103605,
},
{
Name = "Hotfix 35.0.5",
Link = "Update 35#Hotfix 35.0.5",
Aliases = { "35.0.5" },
ShortName = "H35.0.5",
Date = "2023-12-21",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1377342-whispers-in-the-walls-hotfix-3505/",
ArchiveLink = "https://web.archive.org/web/20231221171402/https://forums.warframe.com/topic/1377342-whispers-in-the-walls-hotfix-3505/",
ArchiveDate = "2023-12-21",
Timestamp = 1703178672,
},
{
Name = "Hotfix 35.0.6",
Link = "Update 35#Hotfix 35.0.6",
Aliases = { "35.0.6" },
ShortName = "H35.0.6",
Date = "2023-12-22",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1377693-whispers-in-the-walls-hotfix-3506/",
ArchiveLink = "https://web.archive.org/web/20231222170950/https://forums.warframe.com/topic/1377693-whispers-in-the-walls-hotfix-3506/",
ArchiveDate = "2023-12-22",
Timestamp = 1703264245,
},
{
Name = "Hotfix 35.0.7",
Link = "Update 35#Hotfix 35.0.7",
Aliases = { "35.0.7" },
ShortName = "H35.0.7",
Date = "2024-01-09",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1380121-whispers-in-the-walls-hotfix-3507/",
ArchiveLink = "https://web.archive.org/web/20240109191456/https://forums.warframe.com/topic/1380121-whispers-in-the-walls-hotfix-3507/",
ArchiveDate = "2024-01-09",
Timestamp = 1704826750,
},
{
Name = "Hotfix 35.0.8",
Link = "Update 35#Hotfix 35.0.8",
Aliases = { "35.0.8" },
ShortName = "H35.0.8",
Date = "2024-01-11",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1380343-whispers-in-the-walls-hotfix-3508/",
ArchiveLink = "https://web.archive.org/web/20240111165925/https://forums.warframe.com/topic/1380343-whispers-in-the-walls-hotfix-3508/",
ArchiveDate = "2024-01-11",
Timestamp = 1704991726,
},
{
Name = "Hotfix 35.0.9",
Link = "Update 35#Hotfix 35.0.9",
Aliases = { "35.0.9" },
ShortName = "H35.0.9",
Date = "2024-01-17",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1381000-whispers-in-the-walls-gauss-prime-hotfix-3509/",
ArchiveLink = "https://web.archive.org/web/20240117192319/https://forums.warframe.com/topic/1381000-whispers-in-the-walls-gauss-prime-hotfix-3509/",
ArchiveDate = "2024-01-17",
Timestamp = 1705507212,
},
{
Name = "Hotfix 35.0.10",
Link = "Update 35#Hotfix 35.0.10",
Aliases = { "35.0.10" },
ShortName = "H35.0.10",
Date = "2024-01-18",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1381251-whispers-in-the-walls-hotfix-35010/",
ArchiveLink = "https://web.archive.org/web/20240118193438/https://forums.warframe.com/topic/1381251-whispers-in-the-walls-hotfix-35010/",
ArchiveDate = "2024-01-18",
Timestamp = 1705606223,
},
{
Name = "Hotfix 35.0.11",
Link = "Update 35#Hotfix 35.0.11",
Aliases = { "35.0.11" },
ShortName = "H35.0.11",
Date = "2024-01-24",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1382055-whispers-in-the-walls-hotfix-35011/",
ArchiveLink = "https://web.archive.org/web/20240124154024/https://forums.warframe.com/topic/1382055-whispers-in-the-walls-hotfix-35011/",
ArchiveDate = "2024-01-24",
Timestamp = 1706110500,
},
{
Name = "Update 35.1",
Link = "Update 35#Update 35.1",
Aliases = { "35.1" },
ShortName = "U35.1",
Date = "2024-02-20",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1384908-whispers-in-the-walls-update-3510/",
ArchiveLink = "https://web.archive.org/web/20240221042059/https://forums.warframe.com/topic/1384908-whispers-in-the-walls-update-3510/",
ArchiveDate = "2024-02-20",
Timestamp = 1708370945,
},
{
Name = "Hotfix 35.1.1",
Link = "Update 35#Hotfix 35.1.1",
Aliases = { "35.1.1" },
ShortName = "H35.1.1",
Date = "2024-02-21",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1385226-whispers-in-the-walls-hotfix-3511/",
ArchiveLink = "https://web.archive.org/web/20240221232639/https://forums.warframe.com/topic/1385226-whispers-in-the-walls-hotfix-3511/",
ArchiveDate = "2024-02-21",
Timestamp = 1708550304,
},
{
Name = "Hotfix 35.1.2",
Link = "Update 35#Hotfix 35.1.2",
Aliases = { "35.1.2" },
ShortName = "H35.1.2",
Date = "2024-02-28",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1386143-whispers-in-the-walls-hotfix-3512/",
ArchiveLink = "https://web.archive.org/web/20240228200832/https://forums.warframe.com/topic/1386143-whispers-in-the-walls-hotfix-3512/",
ArchiveDate = "2024-02-28",
Timestamp = 1709149728,
},
{
Name = "Update 35.5",
Link = "Update 35#Update 35.5",
Aliases = { "35.5" },
ShortName = "U35.5",
Date = "2024-03-27",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1388638-pc-update-355-dante-unbound/",
ArchiveLink = "https://web.archive.org/web/20240327151330/https://forums.warframe.com/topic/1388638-pc-update-355-dante-unbound/",
ArchiveDate = "2024-03-27",
Timestamp = 1711551694,
Subtitle = "Dante Unbound"
},
{
Name = "Hotfix 35.5.1",
Link = "Update 35#Hotfix 35.5.1",
Aliases = { "35.5.1" },
ShortName = "H35.5.1",
Date = "2024-03-27",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1389042-pc-dante-unbound-hotfix-3551/",
ArchiveLink = "https://web.archive.org/web/20240327220522/https://forums.warframe.com/topic/1389042-pc-dante-unbound-hotfix-3551/",
ArchiveDate = "2024-03-27",
Timestamp = 1711576917,
},
{
Name = "Hotfix 35.5.2",
Link = "Update 35#Hotfix 35.5.2",
Aliases = { "35.5.2" },
ShortName = "H35.5.2",
Date = "2024-03-28",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1389042-pc-dante-unbound-hotfix-3551/",
ArchiveLink = "https://web.archive.org/web/20240328213955/https://forums.warframe.com/topic/1389674-pc-dante-unbound-hotfix-3552/",
ArchiveDate = "2024-03-28",
Timestamp = 1711661152,
},
{
Name = "Hotfix 35.5.3",
Link = "Update 35#Hotfix 35.5.3",
Aliases = { "35.5.3" },
ShortName = "H35.5.3",
Date = "2024-04-04",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1391568-pc-dante-unbound-deep-archimedea-hotfix-3553/",
ArchiveLink = "https://web.archive.org/web/20240404181028/https://forums.warframe.com/topic/1391568-pc-dante-unbound-deep-archimedea-hotfix-3553/",
ArchiveDate = "2024-04-04",
Timestamp = 1712253728,
},
{
Name = "Hotfix 35.5.4",
Link = "Update 35#Hotfix 35.5.4",
Aliases = { "35.5.4" },
ShortName = "H35.5.4",
Date = "2024-04-05",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1392126-pc-dante-unbound-hotfix-3554/",
ArchiveLink = "https://web.archive.org/web/20240405180357/https://forums.warframe.com/topic/1392126-pc-dante-unbound-hotfix-3554/",
ArchiveDate = "2024-04-05",
Timestamp = 1712339904,
},
{
Name = "Hotfix 35.5.5",
Link = "Update 35#Hotfix 35.5.5",
Aliases = { "35.5.5" },
ShortName = "H35.5.5",
Date = "2024-04-05",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1392198-pc-dante-unbound-hotfix-3555/",
ArchiveLink = "https://web.archive.org/web/20240405202725/https://forums.warframe.com/topic/1392198-pc-dante-unbound-hotfix-3555/",
ArchiveDate = "2024-04-05",
Timestamp = 1712348063,
},
{
Name = "Hotfix 35.5.6",
Link = "Update 35#Hotfix 35.5.6",
Aliases = { "35.5.6" },
ShortName = "H35.5.6",
Date = "2024-04-10",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1393246-pc-dante-unbound-hotfix-3556/",
ArchiveLink = "https://web.archive.org/web/20240410194111/https://forums.warframe.com/topic/1393246-pc-dante-unbound-hotfix-3556/",
ArchiveDate = "2024-04-10",
Timestamp = 1712775905,
},
{
Name = "Hotfix 35.5.7",
Link = "Update 35#Hotfix 35.5.7",
Aliases = { "35.5.7" },
ShortName = "H35.5.7",
Date = "2024-04-17",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1394369-pc-dante-unbound-hotfix-3557/",
ArchiveLink = "https://web.archive.org/web/20240417200614/https://forums.warframe.com/topic/1394369-pc-dante-unbound-hotfix-3557/",
ArchiveDate = "2024-04-17",
Timestamp = 1713384027,
},
{
Name = "Hotfix 35.5.8",
Link = "Update 35#Hotfix 35.5.8",
Aliases = { "35.5.8" },
ShortName = "H35.5.8",
Date = "2024-04-24",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1395221-pc-dante-unbound-hotfix-3558/",
ArchiveLink = "https://web.archive.org/web/20240424212035/https://forums.warframe.com/topic/1395221-pc-dante-unbound-hotfix-3558/",
ArchiveDate = "2024-04-24",
Timestamp = 1713983510,
},
{
Name = "Hotfix 35.5.9",
Link = "Update 35#Hotfix 35.5.9",
Aliases = { "35.5.9" },
ShortName = "H35.5.9",
Date = "2024-05-01",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1396067-pc-dante-unbound-protea-prime-hotfix-3559/",
ArchiveLink = "https://web.archive.org/web/20240501163742/https://forums.warframe.com/topic/1396067-pc-dante-unbound-protea-prime-hotfix-3559",
ArchiveDate = "2024-05-01",
Timestamp = 1714575556,
},
{
Name = "Hotfix 35.5.10",
Link = "Update 35#Hotfix 35.5.10",
Aliases = { "35.5.10" },
ShortName = "H35.5.10",
Date = "2024-05-01",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1396104-pc-dante-unbound-hotfix-35510/",
ArchiveLink = "https://web.archive.org/web/20240501172901/https://forums.warframe.com/topic/1396104-pc-dante-unbound-hotfix-35510",
ArchiveDate = "2024-05-01",
Timestamp = 1714584209,
},
{
Name = "Hotfix 35.5.11",
Link = "Update 35#Hotfix 35.5.11",
Aliases = { "35.5.11" },
ShortName = "H35.5.11",
Date = "2024-05-07",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1396832-pc-dante-unbound-hotfix-35511/",
ArchiveLink = "https://web.archive.org/web/20240507184959/https://forums.warframe.com/topic/1396832-pc-dante-unbound-hotfix-35511/",
ArchiveDate = "2024-05-07",
Timestamp = 1715106436,
},
{
Name = "Update 35.6",
Link = "Update 35#Update 35.6",
Aliases = { "35.6" },
ShortName = "U35.6",
Date = "2024-05-15",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1397622-pc-nightwave-noras-mix-vol6-update-356/",
ArchiveLink = "https://web.archive.org/web/20240515175022/https://forums.warframe.com/topic/1397622-pc-nightwave-noras-mix-vol6-update-356/",
ArchiveDate = "2024-05-15",
Timestamp = 1715795081,
Subtitle = "Nightwave: Nora's Mix Vol.6"
},
{
Name = "Hotfix 35.6.1",
Link = "Update 35#Hotfix 35.6.1",
Aliases = { "35.6.1" },
ShortName = "H35.6.1",
Date = "2024-05-16",
Parent = "35.0",
ForumLink = "https://forums.warframe.com/topic/1397735-nora’s-mix-vol-6-hotfix-3561/",
ArchiveLink = "https://web.archive.org/web/20240516150413/https://forums.warframe.com/topic/1397735-nora’s-mix-vol-6-hotfix-3561/",
ArchiveDate = "2024-05-16",
Timestamp = 1715871402,
},
{
Name = "Update 36.0",
Link = "Update 36#Update 36.0",
Aliases = { "36", "36.0", "Jade Shadows" },
ShortName = "U36",
Date = "2024-06-18",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1400346-update-36-jade-shadows/",
ArchiveLink = "https://web.archive.org/web/20240618153501/https://forums.warframe.com/topic/1400346-update-36-jade-shadows/",
ArchiveDate = "2024-06-18",
Timestamp = 1718723953,
Subtitle = "Jade Shadows"
},
{
Name = "Hotfix 36.0.1",
Link = "Update 36#Hotfix 36.0.1",
Aliases = { "36.0.1" },
ShortName = "H36.0.1",
Date = "2024-06-19",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1401037-jade-shadows-hotfix-3601/",
ArchiveLink = "https://web.archive.org/web/20240619155712/https://forums.warframe.com/topic/1401037-jade-shadows-hotfix-3601/",
ArchiveDate = "2024-06-19",
Timestamp = 1718812160,
},
{
Name = "Hotfix 36.0.2",
Link = "Update 36#Hotfix 36.0.2",
Aliases = { "36.0.2" },
ShortName = "H36.0.2",
Date = "2024-06-19",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1401227-jade-shadows-hotfix-3602/",
ArchiveLink = "https://web.archive.org/web/20240619201643/https://forums.warframe.com/topic/1401227-jade-shadows-hotfix-3602/",
ArchiveDate = "2024-06-19",
Timestamp = 1718827694,
},
{
Name = "Hotfix 36.0.3",
Link = "Update 36#Hotfix 36.0.3",
Aliases = { "36.0.3" },
ShortName = "H36.0.3",
Date = "2024-06-20",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1401748-jade-shadows-hotfix-3603/",
ArchiveLink = "https://web.archive.org/web/20240620205325/https://forums.warframe.com/topic/1401748-jade-shadows-hotfix-3603/",
ArchiveDate = "2024-06-20",
Timestamp = 1718916658,
},
{
Name = "Hotfix 36.0.4",
Link = "Update 36#Hotfix 36.0.4",
Aliases = { "36.0.4" },
ShortName = "H36.0.4",
Date = "2024-06-26",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1403271-jade-shadows-hotfix-3604/",
ArchiveLink = "https://web.archive.org/web/20240000000000*/https://forums.warframe.com/topic/1403271-jade-shadows-hotfix-3604/",
ArchiveDate = "2024-06-26",
Timestamp = 1719412380,
},
{
Name = "Hotfix 36.0.5",
Link = "Update 36#Hotfix 36.0.5",
Aliases = { "36.0.5" },
ShortName = "H36.0.5",
Date = "2024-07-20",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1406078-jade-shadows-hotfix-3605/",
ArchiveLink = "https://web.archive.org/web/20240720231827/https://forums.warframe.com/topic/1406078-jade-shadows-hotfix-3605/",
ArchiveDate = "2024-07-20",
Timestamp = 1721484450,
},
{
Name = "Hotfix 36.0.6",
Link = "Update 36#Hotfix 36.0.6",
Aliases = { "36.0.6" },
ShortName = "H36.0.6",
Date = "2024-07-20",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1406148-jade-shadows-hotfix-3606/",
ArchiveLink = "https://web.archive.org/web/20240720231946/https://forums.warframe.com/topic/1406148-jade-shadows-hotfix-3606/",
ArchiveDate = "2024-07-20",
Timestamp = 1721501843,
},
{
Name = "Hotfix 36.0.7",
Link = "Update 36#Hotfix 36.0.7",
Aliases = { "36.0.7" },
ShortName = "H36.0.7",
Date = "2024-07-22",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1406527-jade-shadows-hotfix-3607/",
ArchiveLink = "https://web.archive.org/web/20240722173454/https://forums.warframe.com/topic/1406527-jade-shadows-hotfix-3607/",
ArchiveDate = "2024-07-22",
Timestamp = 1721668740,
},
{
Name = "Hotfix 36.0.8",
Link = "Update 36#Hotfix 36.0.8",
Aliases = { "36.0.8" },
ShortName = "H36.0.8",
Date = "2024-07-25",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1407034-jade-shadows-hotfix-3608/",
ArchiveLink = "https://web.archive.org/web/20240725190119/https://forums.warframe.com/topic/1407034-jade-shadows-hotfix-3608/",
ArchiveDate = "2024-07-25",
Timestamp = 1721933760,
},
{
Name = "Update 36.1",
Link = "Update 36#Update 36.1",
Aliases = { "36.1" },
ShortName = "U36.1",
Date = "2024-08-21",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1409856-update-3610-the-lotus-eaters/",
ArchiveLink = "https://web.archive.org/web/20240821174014/https://forums.warframe.com/topic/1409856-update-3610-the-lotus-eaters",
ArchiveDate = "2024-08-21",
Timestamp = 1724252712,
},
{
Name = "Hotfix 36.1.1",
Link = "Update 36#Hotfix 36.1.1",
Aliases = { "36.1.1" },
ShortName = "H36.1.1",
Date = "2024-08-21",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1409922-the-lotus-eaters-hotfix-3611/",
ArchiveLink = "https://web.archive.org/web/20240821180849/https://forums.warframe.com/topic/1409922-the-lotus-eaters-hotfix-3611/",
ArchiveDate = "2024-08-21",
Timestamp = 1724263600,
},
{
Name = "Hotfix 36.1.2",
Link = "Update 36#Hotfix 36.1.2",
Aliases = { "36.1.2" },
ShortName = "H36.1.2",
Date = "2024-08-22",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1410113-the-lotus-eaters-hotfix-3612/",
ArchiveLink = "https://web.archive.org/web/20240822152016/https://forums.warframe.com/topic/1410113-the-lotus-eaters-hotfix-3612/",
ArchiveDate = "2024-08-22",
Timestamp = 1724339516,
},
{
Name = "Hotfix 36.1.3",
Link = "Update 36#Hotfix 36.1.3",
Aliases = { "36.1.3" },
ShortName = "H36.1.3",
Date = "2024-08-27",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1410851-the-lotus-eaters-hotfix-3613/",
ArchiveLink = "https://web.archive.org/web/20240827200945/https://forums.warframe.com/topic/1410851-the-lotus-eaters-hotfix-3613/",
ArchiveDate = "2024-08-27",
Timestamp = 1724789289,
},
{
Name = "Hotfix 36.1.4",
Link = "Update 36#Hotfix 36.1.4",
Aliases = { "36.1.4" },
ShortName = "H36.1.4",
Date = "2024-08-28",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1410999-the-lotus-eaters-hotfix-3614/",
ArchiveLink = "https://web.archive.org/web/20240828202415/https://forums.warframe.com/topic/1410999-the-lotus-eaters-hotfix-3614/",
ArchiveDate = "2024-08-28",
Timestamp = 1724875517,
},
{
Name = "Hotfix 36.1.5",
Link = "Update 36#Hotfix 36.1.5",
Aliases = { "36.1.5" },
ShortName = "H36.1.5",
Date = "2024-09-03",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1411706-the-lotus-eaters-hotfix-3615/",
ArchiveLink = "http://web.archive.org/web/20240903182432/https://forums.warframe.com/topic/1411706-the-lotus-eaters-hotfix-3615/",
ArchiveDate = "2024-09-03",
Timestamp = 1725401469,
},
{
Name = "Hotfix 36.1.6",
Link = "Update 36#Hotfix 36.1.6",
Aliases = { "36.1.6" },
ShortName = "H36.1.6",
Date = "2024-09-05",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1411953-the-lotus-eaters-hotfix-3616/",
ArchiveLink = "https://web.archive.org/web/20240905160758/https://forums.warframe.com/topic/1411953-the-lotus-eaters-hotfix-3616/",
ArchiveDate = "2024-09-05",
Timestamp = 1725551952,
},
{
Name = "Hotfix 36.1.6.1",
Link = "Update 36#Hotfix 36.1.6.1",
Aliases = { "36.1.6.1" },
ShortName = "H36.1.6.1",
Date = "2024-09-05",
Parent = "36.0",
ForumLink = "https://forums.warframe.com/topic/1411953-the-lotus-eaters-hotfix-3616-36161/",
ArchiveLink = "https://web.archive.org/web/20240905200037/https://forums.warframe.com/topic/1411953-the-lotus-eaters-hotfix-3616-36161/",
ArchiveDate = "2024-09-05",
Timestamp = 1725565692,
},
{
Name = "Update 37.0",
Link = "Update 37#Update 37.0",
Aliases = { "37", "37.0", "Koumei & the Five Fates" },
ShortName = "U37",
Date = "2024-10-02",
Parent = "37.0",
ForumLink = "https://forums.warframe.com/topic/1414770-update-37-koumei-the-five-fates/",
ArchiveLink = "https://web.archive.org/web/20241002152408/https://forums.warframe.com/topic/1414770-update-37-koumei-the-five-fates/",
ArchiveDate = "2024-10-02",
Timestamp = 1727881546,
Subtitle = "Koumei & the Five Fates"
},
{
Name = "Hotfix 37.0.1",
Link = "Update 37#Hotfix 37.0.1",
Aliases = { "37.0.1" },
ShortName = "H37.0.1",
Date = "2024-10-02",
Parent = "37.0",
ForumLink = "https://forums.warframe.com/topic/1415059-koumei-the-five-fates-hotfix-3701/",
ArchiveLink = "https://web.archive.org/web/20241002200416/https://forums.warframe.com/topic/1415059-koumei-the-five-fates-hotfix-3701/",
ArchiveDate = "2024-10-02",
Timestamp = 1727899204,
},
{
Name = "Hotfix 37.0.2",
Link = "Update 37#Hotfix 37.0.2",
Aliases = { "37.0.2" },
ShortName = "H37.0.2",
Date = "2024-10-03",
Parent = "37.0",
ForumLink = "https://forums.warframe.com/topic/1415797-koumei-the-five-fates-hotfix-3702/",
ArchiveLink = "https://web.archive.org/web/20241003214823/https://forums.warframe.com/topic/1415797-koumei-the-five-fates-hotfix-3702/",
ArchiveDate = "2024-10-03",
Timestamp = 1727991626,
},
{
Name = "Hotfix 37.0.3",
Link = "Update 37#Hotfix 37.0.3",
Aliases = { "37.0.3" },
ShortName = "H37.0.3",
Date = "2024-10-04",
Parent = "37.0",
ForumLink = "https://forums.warframe.com/topic/1416262-koumei-the-five-fates-hotfix-3703/",
ArchiveLink = "https://web.archive.org/web/20241004201424/https://forums.warframe.com/topic/1416262-koumei-the-five-fates-hotfix-3703/",
ArchiveDate = "2024-10-04",
Timestamp = 1728072421,
},
{
Name = "Hotfix 37.0.4",
Link = "Update 37#Hotfix 37.0.4",
Aliases = { "37.0.4" },
ShortName = "H37.0.4",
Date = "2024-10-10",
Parent = "37.0",
ForumLink = "https://forums.warframe.com/topic/1418210-koumei-the-five-fates-hotfix-3704/",
ArchiveLink = "https://archive.md/AqBaC",
ArchiveDate = "2024-10-10",
Timestamp = 1728572529,
},
{
Name = "Hotfix 37.0.5",
Link = "Update 37#Hotfix 37.0.5",
Aliases = { "37.0.5" },
ShortName = "H37.0.5",
Date = "2024-10-10",
Parent = "37.0",
ForumLink = "https://forums.warframe.com/topic/1418289-koumei-the-five-fates-hotfix-3705/",
ArchiveLink = "https://archive.md/PVnbv",
ArchiveDate = "2024-10-10",
Timestamp = 1728583490,
},
{
Name = "Hotfix 37.0.6",
Link = "Update 37#Hotfix 37.0.6",
Aliases = { "37.0.6" },
ShortName = "H37.0.6",
Date = "2024-10-11",
Parent = "37.0",
ForumLink = "https://forums.warframe.com/topic/1418558-koumei-the-five-fates-hotfix-3706/",
ArchiveLink = "https://archive.md/553hA",
ArchiveDate = "2024-10-11",
Timestamp = 1728662983,
},
{
Name = "Hotfix 37.0.7",
Link = "Update 37#Hotfix 37.0.7",
Aliases = { "37.0.7" },
ShortName = "H37.0.7",
Date = "2024-10-16",
Parent = "37.0",
ForumLink = "https://forums.warframe.com/topic/1419483-koumei-the-five-fates-hotfix-3707/",
ArchiveLink = "https://archive.md/4S4yp",
ArchiveDate = "2024-10-16",
Timestamp = 1729090875,
},
{
Name = "Hotfix 37.0.8",
Link = "Update 37#Hotfix 37.0.8",
Aliases = { "37.0.8" },
ShortName = "H37.0.8",
Date = "2024-10-16",
Parent = "37.0",
ForumLink = "https://forums.warframe.com/topic/1419626-koumei-the-five-fates-hotfix-3708/",
ArchiveLink = "https://archive.md/NonSI",
ArchiveDate = "2024-10-16",
Timestamp = 1729113354,
},
{
Name = "Hotfix 37.0.9",
Link = "Update 37#Hotfix 37.0.9",
Aliases = { "37.0.9" },
ShortName = "H37.0.9",
Date = "2024-11-13",
Parent = "37.0",
ForumLink = "https://forums.warframe.com/topic/1422994-koumei-the-five-fates-xaku-prime-hotfix-3709/",
ArchiveLink = "https://web.archive.org/web/20241113160800/https://forums.warframe.com/topic/1422994-koumei-the-five-fates-xaku-prime-hotfix-3709/",
ArchiveDate = "2024-11-13",
Timestamp = 1731513741,
},
{
Name = "Hotfix 37.0.10",
Link = "Update 37#Hotfix 37.0.10",
Aliases = { "37.0.10" },
ShortName = "H37.0.10",
Date = "2024-11-13",
Parent = "37.0",
ForumLink = "https://forums.warframe.com/topic/1423049-koumei-the-five-fates-hotfix-37010/",
ArchiveLink = "https://web.archive.org/web/20241113203341/https://forums.warframe.com/topic/1423049-koumei-the-five-fates-hotfix-37010/",
ArchiveDate = "2024-11-13",
Timestamp = 1731529498,
},
{
Name = "Hotfix 37.0.11",
Link = "Update 37#Hotfix 37.0.11",
Aliases = { "37.0.11" },
ShortName = "H37.0.11",
Date = "2024-11-14",
Parent = "37.0",
ForumLink = "https://forums.warframe.com/topic/1423181-koumei-the-five-fates-hotfix-37011/",
ArchiveLink = "https://web.archive.org/web/20241116151151/https://forums.warframe.com/topic/1423181-koumei-the-five-fates-hotfix-37011/",
ArchiveDate = "2024-11-14",
Timestamp = 1731614606,
},
{
Name = "Update 38.0",
Link = "Update 38#Update 38.0",
Aliases = { "38", "38.0", "Warframe: 1999" },
ShortName = "U38",
Date = "2024-12-13",
Parent = "38.0",
ForumLink = "https://forums.warframe.com/topic/1425786-update-38-warframe-1999/",
ArchiveLink = "https://web.archive.org/web/20241213141321/https://forums.warframe.com/topic/1425786-update-38-warframe-1999/",
ArchiveDate = "2024-12-13",
Timestamp = 1734098693,
Subtitle = "Warframe: 1999"
},
{
Name = "Hotfix 38.0.1",
Link = "Update 38#Hotfix 38.0.1",
Aliases = { "38.0.1" },
ShortName = "H38.0.1",
Date = "2024-12-14",
Parent = "38.0",
ForumLink = "https://forums.warframe.com/topic/1426249-warframe-1999-hotfix-3801/",
ArchiveLink = "https://web.archive.org/web/20241214014340/https://forums.warframe.com/topic/1426249-warframe-1999-hotfix-3801/",
ArchiveDate = "2024-12-14",
Timestamp = 1734140216,
},
{
Name = "Hotfix 38.0.2",
Link = "Update 38#Hotfix 38.0.2",
Aliases = { "38.0.2" },
ShortName = "H38.0.2",
Date = "2024-12-14",
Parent = "38.0",
ForumLink = "https://forums.warframe.com/topic/1426805-warframe-1999-hotfix-3802/",
ArchiveLink = "https://web.archive.org/web/20241214191111/https://forums.warframe.com/topic/1426805-warframe-1999-hotfix-3802/",
ArchiveDate = "2024-12-14",
Timestamp = 1734203418,
},
{
Name = "Hotfix 38.0.3",
Link = "Update 38#Hotfix 38.0.3",
Aliases = { "38.0.3" },
ShortName = "H38.0.3",
Date = "2024-12-16",
Parent = "38.0",
ForumLink = "https://forums.warframe.com/topic/1428096-warframe-1999-hotfix-3803/",
ArchiveLink = "https://web.archive.org/web/20241216220739/https://forums.warframe.com/topic/1428096-warframe-1999-hotfix-3803/",
ArchiveDate = "2024-12-16",
Timestamp = 1734386793,
},
{
Name = "Hotfix 38.0.4",
Link = "Update 38#Hotfix 38.0.4",
Aliases = { "38.0.4" },
ShortName = "H38.0.4",
Date = "2024-12-17",
Parent = "38.0",
ForumLink = "https://forums.warframe.com/topic/1428568-warframe-1999-hotfix-3804/",
ArchiveLink = "https://archive.md/hu60r",
ArchiveDate = "2024-12-18",
Timestamp = 1734470211,
},
{
Name = "Hotfix 38.0.5",
Link = "Update 38#Hotfix 38.0.5",
Aliases = { "38.0.5" },
ShortName = "H38.0.5",
Date = "2024-12-18",
Parent = "38.0",
ForumLink = "https://forums.warframe.com/topic/1429043-warframe-1999-hotfix-3805/",
ArchiveLink = "https://archive.md/M2KFF",
ArchiveDate = "2024-12-19",
Timestamp = 1734553165,
},
{
Name = "Hotfix 38.0.6",
Link = "Update 38#Hotfix 38.0.6",
Aliases = { "38.0.6" },
ShortName = "H38.0.6",
Date = "2025-01-09",
Parent = "38.0",
ForumLink = "https://forums.warframe.com/topic/1433715-warframe-1999-hotfix-3806/",
ArchiveLink = "https://web.archive.org/web/20250109201003/https://forums.warframe.com/topic/1433715-warframe-1999-hotfix-3806/",
ArchiveDate = "2025-01-09",
Timestamp = 1736453157,
},
{
Name = "Hotfix 38.0.7",
Link = "Update 38#Hotfix 38.0.7",
Aliases = { "38.0.7" },
ShortName = "H38.0.7",
Date = "2025-01-14",
Parent = "38.0",
ForumLink = "https://forums.warframe.com/topic/1434747-warframe-1999-hotfix-3807/",
ArchiveLink = "https://web.archive.org/web/20250114200324/https://forums.warframe.com/web/20250114200324/https://forums.warframe.com/topic/1434747-warframe-1999-hotfix-3807/",
ArchiveDate = "2025-01-14",
Timestamp = 1736884988,
},
{
Name = "Update 38.5",
Link = "Update 38#Update 38.5",
Aliases = { "38.5", "Techrot Encore" },
ShortName = "U39",
Date = "2025-03-19",
Parent = "38.0",
ForumLink = "https://forums.warframe.com/topic/1442589-update-385-techrot-encore/",
ArchiveLink = "https://web.archive.org/web/20250331235519/https://forums.warframe.com/topic/1442589-update-385-techrot-encore/",
ArchiveDate = "2025-03-31",
Timestamp = 1742346180,
Subtitle = "Techrot Encore"
},
{
Name = "Hotfix 38.5.1",
Link = "Update 38#Hotfix 38.5.1",
Aliases = { "38.5.1" },
ShortName = "H38.5.1",
Date = "2025-03-19",
Parent = "38.0",
ForumLink = "https://forums.warframe.com/topic/1443036-techrot-encore-hotfix-3851/",
ArchiveLink = "https://web.archive.org/web/20250322203421/https://forums.warframe.com/topic/1443036-techrot-encore-hotfix-3851/",
ArchiveDate = "2025-03-22",
Timestamp = 1742375460,
},
}
-- Building additional indexes from data
local VersionData = {["Versions"] = {}, ["Tree"] = {}, ["Aliases"] = {}, ["LatestVersion"] = Versions[#Versions]}
for i, ver in ipairs(Versions) do
VersionData.Versions[ver.Name] = ver
VersionData.Aliases[ver.ShortName] = ver
for j, ali in ipairs(ver.Aliases) do
VersionData.Aliases[ali] = ver
end
VersionData.Tree[ver.Parent] = VersionData.Tree[ver.Parent] or {}
table.insert(VersionData.Tree[ver.Parent], ver)
end
return VersionData