{"id":742,"date":"2021-01-14T16:00:27","date_gmt":"2021-01-14T16:00:27","guid":{"rendered":"https:\/\/dev-intel-gap.pantheonsite.io\/?p=742"},"modified":"2021-01-14T16:00:27","modified_gmt":"2021-01-14T16:00:27","slug":"how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb","status":"publish","type":"post","link":"https:\/\/game.intel.com\/tr\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/","title":{"rendered":"How Hitman 3\u2019s devs shrank the entire trilogy install size by over 80GB\u00a0"},"content":{"rendered":"<h2 class=\"wp-block-heading\">As most PC game installs get more and more bloated, Hitman 3 cut its file size in half.&nbsp;<\/h2>\n\n\n\n<p><a href=\"https:\/\/www.pcgamer.com\/solving-a-murder-mystery-in-hitman-3s-coolest-new-level\/\" target=\"_blank\" rel=\"noreferrer noopener\">Hitman 3<\/a> is going to be an enormous PC game\u2014at least if you own Hitman 1 and 2, which Hitman 3 can import to bring the entire trilogy into a single package. That sounds like a recipe for an install size big enough to make an SSD cry, because Hitman 2, with the first game\u2019s levels imported, is currently 149 gigabytes. Hitman 2 is one of <a href=\"https:\/\/www.pcgamer.com\/biggest-game-install-sizes\/\" target=\"_blank\" rel=\"noreferrer noopener\">the mightiest storage hogs on PC<\/a>, second only to Call of Duty. But last week, <a href=\"https:\/\/www.pcgamer.com\/hitman-3-will-retroactively-optimise-the-first-two-games\/\" target=\"_blank\" rel=\"noreferrer noopener\">we reported<\/a> that Hitman 3 will actually shrink instead of grow, retroactively optimizing the first two Hitman games into a dramatically smaller package. How did IO Interactive manage to cut the total install size in half?&nbsp;<\/p>\n\n\n\n<p>I had to know more, so I asked IO Interactive to break it down.&nbsp;<\/p>\n\n\n\n<p>\u201cWith all content installed (including the locations from H1+H2), we\u2019re expecting Hitman 3 to clock in at approximately 60-70 GB and we\u2019re really happy with that,\u201d IO Interactive\u2019s chief technology officer Maurizo De Pascale told me over email.&nbsp;<\/p>\n\n\n\n<p>Even without the older games bundled in, Hitman 3 is a leaner install than IO has managed to pull off with its last two games. As De Pascale explained to me, the answer is simple: More compression. But why Hitman 3\u2019s compression is so effective, and why they didn\u2019t use the same techniques last time, is where it gets more complicated (and more interesting).&nbsp;<\/p>\n\n\n\n<p>Hitman 3 uses a technique called <a href=\"https:\/\/github.com\/lz4\/lz4\" target=\"_blank\" rel=\"noreferrer noopener\">LZ4 compression<\/a> that\u2019s been around for about a decade. Almost everything in the game runs through this compression algorithm, which is especially efficient. Here\u2019s how De Pascale explained it:&nbsp;<\/p>\n\n\n\n<p>\u201cAlmost all lossless compression techniques exploit the fact that data often has repeating sequences. For example, \u2018HITMAN\u2019 or \u2018IO Interactive\u2019 will likely appear frequently in an article about IOI. Those duplicated sequences don\u2019t need to be stored multiple times and can be omitted, as long as you embed some information in the compressed stream about where they appeared originally, so that you can still perfectly reconstruct the initial data.&nbsp;<\/p>\n\n\n\n<p>\u201cThe super simplified description of LZ4 is that it replaces those lengthy sequences with a reference to a sequence that has previously appeared in the decompressed stream. So, for example, instead of storing the word \u2018compression\u2019 as-is, the algorithm can store the equivalent of \u2018the word that appeared X words ago,\u2019 which can be very efficiently encoded with few bits. Of course that\u2019s not exactly how it works, but it\u2019s sufficiently close to convey the idea.&nbsp;<\/p>\n\n\n\n<p>\u201cThis is actually a pretty common technique, which other compressors employ as well, but LZ4 has a very performant implementation that provides a good trade-off between reasonable disk compression and great decompression speed, which makes it a common choice for games.\u201d&nbsp;<\/p>\n\n\n\n<p>With Hitman 1 and 2, IO didn\u2019t apply compression as broadly \u201cto avoid performance issues on low-spec hardware.\u201d The game only has so much CPU power to work with, so decompressing data has to be weighed against everything else it\u2019s doing, like running the AI and processing your inputs. The trade-off, then, is to skip compressing some files, resulting in a larger install but better performing game. By Hitman 3, engine improvements have lightened the load in other areas, freeing up more processing cycles to spend on compression.&nbsp;<\/p>\n\n\n\n<p>Another big improvement comes from how IO is importing the data from Hitman 1. Because that game was built episodically, every episode had to have all the code and assets needed to work standalone. \u201cIn Hitman 3, we\u2019re handling the way we give access to the legacy titles in a different way, which makes it easier for us to aggressively de-duplicate these shared resources,\u201d De Pascale said.&nbsp;<\/p>\n\n\n\n<p>The drawbacks of that DLC model actually mirror an older cause for bloated game install sizes: Hard drive seek times. Inside a hard drive, an arm with a tiny read\/write head has to move to the physical location of the data on the magnetic disk to read it.&nbsp;<\/p>\n\n\n\n<p>This means hard drives are way better suited to sequential reads than they are random reads\u2014imagine how much harder it would be for you to read a book if a paragraph was split up between pages 1, 13, 46, and 253 and you were constantly flipping pages, for example.&nbsp;<\/p>\n\n\n\n<p>To compensate, game developers \u201cend up carefully storing meshes and textures in the order that you can predict they\u2019ll be loaded in memory,\u201d De Pascale said. \u201cSometimes you might even duplicate the same resource, just to avoid having to seek around and break a potentially longer sequential read.\u201d&nbsp;<\/p>\n\n\n\n<p>SSDs are also faster at sequential reads than random ones, but because they don\u2019t rely on moving parts, the performance hit is nowhere near as severe as it is on a hard drive. Games designed purely for SSDs today don\u2019t have to employ those tricks. But IO Interactive has developed all three Hitman games to run on consoles, too, and the PS4 and Xbox One use 5400 RPM hard drives made a full decade ago (with measly 8MB caches, to boot). De Pascale said that IO Interactive has technology built for when its games were loading directly from DVDs, which are even slower than hard drives.&nbsp;<\/p>\n\n\n\n<p>Now that the PS5 and Xbox Series X are here with SSDs, that technology is hopefully soon to be obsolete, and any game developers who still duplicate resources for faster load times can follow IO\u2019s lead in slimming down their games. It\u2019s going to be hard to upstage an 80 gigabyte diet, though. Agent 47\u2019s definitely going to need a new tux.&nbsp;<\/p>","protected":false},"excerpt":{"rendered":"<p>As most PC game installs get more and more bloated, Hitman 3 cut its file size in half.&nbsp; Hitman 3 is going to be an enormous PC game\u2014at least if you own Hitman 1 and 2, which Hitman 3 can import to bring the entire trilogy into a single package. That sounds like a recipe [&hellip;]<\/p>","protected":false},"author":2,"featured_media":1324,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-742","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-showcase"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How Hitman 3&#039;s devs shrank the entire trilogy install size by over 80GB\u00a0 | Intel Gaming Access<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/game.intel.com\/tr\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Hitman 3&#039;s devs shrank the entire trilogy install size by over 80GB\u00a0 | Intel Gaming Access\" \/>\n<meta property=\"og:description\" content=\"As most PC game installs get more and more bloated, Hitman 3 cut its file size in half.&nbsp; Hitman 3 is going to be an enormous PC game\u2014at least if you own Hitman 1 and 2, which Hitman 3 can import to bring the entire trilogy into a single package. That sounds like a recipe [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/game.intel.com\/tr\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/\" \/>\n<meta property=\"og:site_name\" content=\"Intel Gaming Access\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-14T16:00:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/game.intel.com\/wp-content\/uploads\/2023\/12\/thumbnail_fbgNhcGKtA4PqijBjMSREJ.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"510\" \/>\n\t<meta property=\"og:image:height\" content=\"256\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Intel Gaming\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@IntelGaming\" \/>\n<meta name=\"twitter:site\" content=\"@IntelGaming\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Intel Gaming\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/\"},\"author\":{\"name\":\"Intel Gaming\",\"@id\":\"https:\/\/game.intel.com\/us\/#\/schema\/person\/d98d338bed40f7c6ad4d85e3cf1f41a5\"},\"headline\":\"How Hitman 3&#8217;s devs shrank the entire trilogy install size by over 80GB\u00a0\",\"datePublished\":\"2021-01-14T16:00:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/\"},\"wordCount\":968,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/game.intel.com\/us\/#organization\"},\"image\":{\"@id\":\"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/game.intel.com\/wp-content\/uploads\/2023\/12\/thumbnail_fbgNhcGKtA4PqijBjMSREJ.jpg\",\"articleSection\":[\"Games Showcase\"],\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/\",\"url\":\"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/\",\"name\":\"How Hitman 3's devs shrank the entire trilogy install size by over 80GB\u00a0 | Intel Gaming Access\",\"isPartOf\":{\"@id\":\"https:\/\/game.intel.com\/us\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/game.intel.com\/wp-content\/uploads\/2023\/12\/thumbnail_fbgNhcGKtA4PqijBjMSREJ.jpg\",\"datePublished\":\"2021-01-14T16:00:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#primaryimage\",\"url\":\"https:\/\/game.intel.com\/wp-content\/uploads\/2023\/12\/thumbnail_fbgNhcGKtA4PqijBjMSREJ.jpg\",\"contentUrl\":\"https:\/\/game.intel.com\/wp-content\/uploads\/2023\/12\/thumbnail_fbgNhcGKtA4PqijBjMSREJ.jpg\",\"width\":510,\"height\":256},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/game.intel.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How Hitman 3&#8217;s devs shrank the entire trilogy install size by over 80GB\u00a0\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/game.intel.com\/us\/#website\",\"url\":\"https:\/\/game.intel.com\/us\/\",\"name\":\"Intel Gaming Access\",\"description\":\"Made to Game. Ready for Anything.\",\"publisher\":{\"@id\":\"https:\/\/game.intel.com\/us\/#organization\"},\"alternateName\":\"game.intel.com\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/game.intel.com\/us\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"tr\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/game.intel.com\/us\/#organization\",\"name\":\"Intel Gaming Access\",\"url\":\"https:\/\/game.intel.com\/us\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/game.intel.com\/us\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/game.intel.com\/wp-content\/uploads\/2026\/01\/square-logo.png\",\"contentUrl\":\"https:\/\/game.intel.com\/wp-content\/uploads\/2026\/01\/square-logo.png\",\"width\":800,\"height\":800,\"caption\":\"Intel Gaming Access\"},\"image\":{\"@id\":\"https:\/\/game.intel.com\/us\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/IntelGaming\",\"https:\/\/www.instagram.com\/intelgaming\/\",\"https:\/\/discord.gg\/intel\",\"https:\/\/www.youtube.com\/@intelgaming\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/game.intel.com\/us\/#\/schema\/person\/d98d338bed40f7c6ad4d85e3cf1f41a5\",\"name\":\"Intel Gaming\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/game.intel.com\/us\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ddfb2e0a14042da189fe0aaca78f97eed3376c9ed5f245d2d38785159461c682?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ddfb2e0a14042da189fe0aaca78f97eed3376c9ed5f245d2d38785159461c682?s=96&d=mm&r=g\",\"caption\":\"Intel Gaming\"},\"url\":\"https:\/\/game.intel.com\/tr\/stories\/author\/intel-gaming-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How Hitman 3's devs shrank the entire trilogy install size by over 80GB\u00a0 | Intel Gaming Access","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/game.intel.com\/tr\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/","og_locale":"tr_TR","og_type":"article","og_title":"How Hitman 3's devs shrank the entire trilogy install size by over 80GB\u00a0 | Intel Gaming Access","og_description":"As most PC game installs get more and more bloated, Hitman 3 cut its file size in half.&nbsp; Hitman 3 is going to be an enormous PC game\u2014at least if you own Hitman 1 and 2, which Hitman 3 can import to bring the entire trilogy into a single package. That sounds like a recipe [&hellip;]","og_url":"https:\/\/game.intel.com\/tr\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/","og_site_name":"Intel Gaming Access","article_published_time":"2021-01-14T16:00:27+00:00","og_image":[{"width":510,"height":256,"url":"https:\/\/game.intel.com\/wp-content\/uploads\/2023\/12\/thumbnail_fbgNhcGKtA4PqijBjMSREJ.jpg","type":"image\/jpeg"}],"author":"Intel Gaming","twitter_card":"summary_large_image","twitter_creator":"@IntelGaming","twitter_site":"@IntelGaming","twitter_misc":{"Written by":"Intel Gaming","Est. reading time":"5 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#article","isPartOf":{"@id":"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/"},"author":{"name":"Intel Gaming","@id":"https:\/\/game.intel.com\/us\/#\/schema\/person\/d98d338bed40f7c6ad4d85e3cf1f41a5"},"headline":"How Hitman 3&#8217;s devs shrank the entire trilogy install size by over 80GB\u00a0","datePublished":"2021-01-14T16:00:27+00:00","mainEntityOfPage":{"@id":"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/"},"wordCount":968,"commentCount":0,"publisher":{"@id":"https:\/\/game.intel.com\/us\/#organization"},"image":{"@id":"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#primaryimage"},"thumbnailUrl":"https:\/\/game.intel.com\/wp-content\/uploads\/2023\/12\/thumbnail_fbgNhcGKtA4PqijBjMSREJ.jpg","articleSection":["Games Showcase"],"inLanguage":"tr","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/","url":"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/","name":"How Hitman 3's devs shrank the entire trilogy install size by over 80GB\u00a0 | Intel Gaming Access","isPartOf":{"@id":"https:\/\/game.intel.com\/us\/#website"},"primaryImageOfPage":{"@id":"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#primaryimage"},"image":{"@id":"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#primaryimage"},"thumbnailUrl":"https:\/\/game.intel.com\/wp-content\/uploads\/2023\/12\/thumbnail_fbgNhcGKtA4PqijBjMSREJ.jpg","datePublished":"2021-01-14T16:00:27+00:00","breadcrumb":{"@id":"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/"]}]},{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#primaryimage","url":"https:\/\/game.intel.com\/wp-content\/uploads\/2023\/12\/thumbnail_fbgNhcGKtA4PqijBjMSREJ.jpg","contentUrl":"https:\/\/game.intel.com\/wp-content\/uploads\/2023\/12\/thumbnail_fbgNhcGKtA4PqijBjMSREJ.jpg","width":510,"height":256},{"@type":"BreadcrumbList","@id":"https:\/\/game.intel.com\/stories\/how-hitman-3s-devs-shrank-the-entire-trilogy-install-size-by-over-80gb\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/game.intel.com\/"},{"@type":"ListItem","position":2,"name":"How Hitman 3&#8217;s devs shrank the entire trilogy install size by over 80GB\u00a0"}]},{"@type":"WebSite","@id":"https:\/\/game.intel.com\/us\/#website","url":"https:\/\/game.intel.com\/us\/","name":"Intel Oyun Eri\u015fimi","description":"Made to Game. Ready for Anything.","publisher":{"@id":"https:\/\/game.intel.com\/us\/#organization"},"alternateName":"game.intel.com","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/game.intel.com\/us\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"tr"},{"@type":"Organization","@id":"https:\/\/game.intel.com\/us\/#organization","name":"Intel Oyun Eri\u015fimi","url":"https:\/\/game.intel.com\/us\/","logo":{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/game.intel.com\/us\/#\/schema\/logo\/image\/","url":"https:\/\/game.intel.com\/wp-content\/uploads\/2026\/01\/square-logo.png","contentUrl":"https:\/\/game.intel.com\/wp-content\/uploads\/2026\/01\/square-logo.png","width":800,"height":800,"caption":"Intel Gaming Access"},"image":{"@id":"https:\/\/game.intel.com\/us\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/IntelGaming","https:\/\/www.instagram.com\/intelgaming\/","https:\/\/discord.gg\/intel","https:\/\/www.youtube.com\/@intelgaming"]},{"@type":"Person","@id":"https:\/\/game.intel.com\/us\/#\/schema\/person\/d98d338bed40f7c6ad4d85e3cf1f41a5","name":"Intel Gaming","image":{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/game.intel.com\/us\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ddfb2e0a14042da189fe0aaca78f97eed3376c9ed5f245d2d38785159461c682?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ddfb2e0a14042da189fe0aaca78f97eed3376c9ed5f245d2d38785159461c682?s=96&d=mm&r=g","caption":"Intel Gaming"},"url":"https:\/\/game.intel.com\/tr\/stories\/author\/intel-gaming-team\/"}]}},"_links":{"self":[{"href":"https:\/\/game.intel.com\/tr\/wp-json\/wp\/v2\/posts\/742","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/game.intel.com\/tr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/game.intel.com\/tr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/game.intel.com\/tr\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/game.intel.com\/tr\/wp-json\/wp\/v2\/comments?post=742"}],"version-history":[{"count":0,"href":"https:\/\/game.intel.com\/tr\/wp-json\/wp\/v2\/posts\/742\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/game.intel.com\/tr\/wp-json\/wp\/v2\/media\/1324"}],"wp:attachment":[{"href":"https:\/\/game.intel.com\/tr\/wp-json\/wp\/v2\/media?parent=742"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/game.intel.com\/tr\/wp-json\/wp\/v2\/categories?post=742"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/game.intel.com\/tr\/wp-json\/wp\/v2\/tags?post=742"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}