{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Game recommendation on GOG.com\n", "\n", "## Loading data" ] }, { "cell_type": "code", "execution_count": 44, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "games 3778\n", "reviewed games 2256\n" ] } ], "source": [ "import json, glob\n", "\n", "games = json.load(open('games.json'))\n", "reviews = {}\n", "for filepath in glob.glob('reviews/*.json'):\n", " game = filepath.replace('reviews/', '').replace('.json', '')\n", " reviews[game] = json.load(open(filepath))\n", "\n", "print('games', len(games))\n", "print('reviewed games', len(reviews))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Similarity metric" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def similarity(game1, game2):\n", " game1_users = set(review['reviewer']['username'] for review in reviews[game1])\n", " game2_users = set(review['reviewer']['username'] for review in reviews[game2])\n", " \n", " if len(game1_users | game2_users) == 0:\n", " return 1\n", " \n", " return 1 - len(game1_users & game2_users) / len(game1_users | game2_users)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Top 3 most similar game for popular games" ] }, { "cell_type": "code", "execution_count": 42, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "diablo\n", " > warcraft_2_battlenet_edition 0.9855855855855856\n", " > elder_scrolls_iv_oblivion_game_of_the_year_edition_deluxe_the 0.9897260273972602\n", " > blade_runner 0.990521327014218\n", "firewatch\n", " > what_remains_of_edith_finch 0.9571428571428572\n", " > the_vanishing_of_ethan_carter 0.9788732394366197\n", " > gone_home 0.9804560260586319\n", "legend_of_grimrock\n", " > legend_of_grimrock_2 0.9655172413793104\n", " > the_book_of_unwritten_tales 0.9795081967213115\n", " > gothic_3 0.9857142857142858\n", "elex\n", " > seven_the_days_long_gone 0.9786324786324786\n", " > divinity_original_sin_enhanced_edition 0.9805194805194806\n", " > kingdom_come_deliverance 0.9821428571428571\n", "deus_ex\n", " > deus_ex_invisible_war 0.937037037037037\n", " > system_shock_2 0.9742268041237113\n", " > star_wars_knights_of_the_old_republic 0.9787234042553191\n", "dungeon_keeper\n", " > dungeon_keeper_2 0.9769820971867008\n", " > jade_empire_special_edition 0.9844236760124611\n", " > nox 0.9870466321243523\n", "dungeon_keeper_2\n", " > dungeon_keeper 0.9769820971867008\n", " > jade_empire_special_edition 0.9844236760124611\n", " > theme_hospital 0.9872773536895675\n", "total_anihilation_commander_pack\n", " > total_annihilation_kingdoms 0.9723320158102767\n", " > dark_reign_expansion 0.9834710743801653\n", " > infested_planet 0.9855072463768116\n", "the_witcher\n", " > dragon_age_origins 0.9821882951653944\n", " > vampire_the_masquerade_bloodlines 0.9840425531914894\n", " > alan_wake 0.9873015873015873\n", "sid_meiers_alpha_centauri\n", " > wing_commander_4_the_price_of_freedom 0.9881422924901185\n", " > wing_commander_3_heart_of_the_tiger 0.9891696750902527\n", " > heroes_of_might_and_magic_5_bundle 0.9894366197183099\n" ] } ], "source": [ "for game, _ in list(sorted(reviews.items(), key=lambda game: -len(game[1])))[:10]:\n", " sims = [(other_game, similarity(game, other_game)) for other_game in reviews if other_game != game]\n", " sims.sort(key=lambda x: x[1])\n", " print(game)\n", " for other_game, sim in sims[:3]:\n", " if sim < 1:\n", " print(' >', other_game, sim)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Top 20 most similar games to Red Faction (old-school FPS)" ] }, { "cell_type": "code", "execution_count": 45, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "red_faction\n", " > red_faction_2 0.8867924528301887\n", " > stalker_clear_sky 0.9565217391304348\n", " > serious_sam_the_first_encounter 0.9634146341463414\n", " > sea_dogs 0.9672131147540983\n", " > call_of_juarez 0.967741935483871\n", " > serious_sam_the_second_encounter 0.967741935483871\n", " > terminal_velocity 0.9682539682539683\n", " > hogs_of_war 0.9692307692307692\n", " > syndicate_wars 0.9714285714285714\n", " > quake_4 0.971830985915493\n", " > tomb_raider_the_angel_of_darkness 0.9722222222222222\n", " > abandon_ship 0.975609756097561\n", " > indiana_jones_and_the_emperors_tomb 0.9759036144578314\n", " > sniper_ghost_warrior_3 0.9761904761904762\n", " > delta_force_land_warrior 0.9767441860465116\n", " > star_wolves_3_civil_war 0.9767441860465116\n", " > unholy_heights 0.9777777777777777\n", " > judge_dredd_dredd_vs_death 0.9777777777777777\n", " > brothers_in_arms_hells_highway 0.9782608695652174\n", " > wing_commander_armada 0.9782608695652174\n" ] } ], "source": [ "game = 'red_faction'\n", "sims = [(other_game, similarity(game, other_game)) for other_game in reviews if other_game != game]\n", "sims.sort(key=lambda x: x[1])\n", "print(game)\n", "for other_game, sim in sims[:20]:\n", " print(' >', other_game, sim)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Plotting that on a map" ] }, { "cell_type": "code", "execution_count": 43, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/home/damien/.venv/lib/python3.6/site-packages/umap/umap_.py:1495: UserWarning: custom distance metric does not return gradient; inverse_transform will be unavailable. To enable using inverse_transform method method, define a distance function that returns a tuple of (distance [float], gradient [np.array])\n", " \"custom distance metric does not return gradient; inverse_transform will be unavailable. \"\n" ] }, { "data": { "text/html": [ "\n", "
\n", " \n", " Loading BokehJS ...\n", "
" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "\n", "(function(root) {\n", " function now() {\n", " return new Date();\n", " }\n", "\n", " var force = true;\n", "\n", " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", " root._bokeh_onload_callbacks = [];\n", " root._bokeh_is_loading = undefined;\n", " }\n", "\n", " var JS_MIME_TYPE = 'application/javascript';\n", " var HTML_MIME_TYPE = 'text/html';\n", " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", " var CLASS_NAME = 'output_bokeh rendered_html';\n", "\n", " /**\n", " * Render data to the DOM node\n", " */\n", " function render(props, node) {\n", " var script = document.createElement(\"script\");\n", " node.appendChild(script);\n", " }\n", "\n", " /**\n", " * Handle when an output is cleared or removed\n", " */\n", " function handleClearOutput(event, handle) {\n", " var cell = handle.cell;\n", "\n", " var id = cell.output_area._bokeh_element_id;\n", " var server_id = cell.output_area._bokeh_server_id;\n", " // Clean up Bokeh references\n", " if (id != null && id in Bokeh.index) {\n", " Bokeh.index[id].model.document.clear();\n", " delete Bokeh.index[id];\n", " }\n", "\n", " if (server_id !== undefined) {\n", " // Clean up Bokeh references\n", " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", " cell.notebook.kernel.execute(cmd, {\n", " iopub: {\n", " output: function(msg) {\n", " var id = msg.content.text.trim();\n", " if (id in Bokeh.index) {\n", " Bokeh.index[id].model.document.clear();\n", " delete Bokeh.index[id];\n", " }\n", " }\n", " }\n", " });\n", " // Destroy server and session\n", " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", " cell.notebook.kernel.execute(cmd);\n", " }\n", " }\n", "\n", " /**\n", " * Handle when a new output is added\n", " */\n", " function handleAddOutput(event, handle) {\n", " var output_area = handle.output_area;\n", " var output = handle.output;\n", "\n", " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", " return\n", " }\n", "\n", " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", "\n", " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", " // store reference to embed id on output_area\n", " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", " }\n", " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", " var bk_div = document.createElement(\"div\");\n", " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", " var script_attrs = bk_div.children[0].attributes;\n", " for (var i = 0; i < script_attrs.length; i++) {\n", " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n", " }\n", " // store reference to server id on output_area\n", " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", " }\n", " }\n", "\n", " function register_renderer(events, OutputArea) {\n", "\n", " function append_mime(data, metadata, element) {\n", " // create a DOM node to render to\n", " var toinsert = this.create_output_subarea(\n", " metadata,\n", " CLASS_NAME,\n", " EXEC_MIME_TYPE\n", " );\n", " this.keyboard_manager.register_events(toinsert);\n", " // Render to node\n", " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", " render(props, toinsert[toinsert.length - 1]);\n", " element.append(toinsert);\n", " return toinsert\n", " }\n", "\n", " /* Handle when an output is cleared or removed */\n", " events.on('clear_output.CodeCell', handleClearOutput);\n", " events.on('delete.Cell', handleClearOutput);\n", "\n", " /* Handle when a new output is added */\n", " events.on('output_added.OutputArea', handleAddOutput);\n", "\n", " /**\n", " * Register the mime type and append_mime function with output_area\n", " */\n", " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", " /* Is output safe? */\n", " safe: true,\n", " /* Index of renderer in `output_area.display_order` */\n", " index: 0\n", " });\n", " }\n", "\n", " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", " if (root.Jupyter !== undefined) {\n", " var events = require('base/js/events');\n", " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", "\n", " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", " register_renderer(events, OutputArea);\n", " }\n", " }\n", "\n", " \n", " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", " root._bokeh_timeout = Date.now() + 5000;\n", " root._bokeh_failed_load = false;\n", " }\n", "\n", " var NB_LOAD_WARNING = {'data': {'text/html':\n", " \"
\\n\"+\n", " \"

\\n\"+\n", " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", " \"

\\n\"+\n", " \"\\n\"+\n", " \"\\n\"+\n", " \"from bokeh.resources import INLINE\\n\"+\n", " \"output_notebook(resources=INLINE)\\n\"+\n", " \"\\n\"+\n", " \"
\"}};\n", "\n", " function display_loaded() {\n", " var el = document.getElementById(\"2077\");\n", " if (el != null) {\n", " el.textContent = \"BokehJS is loading...\";\n", " }\n", " if (root.Bokeh !== undefined) {\n", " if (el != null) {\n", " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", " }\n", " } else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(display_loaded, 100)\n", " }\n", " }\n", "\n", "\n", " function run_callbacks() {\n", " try {\n", " root._bokeh_onload_callbacks.forEach(function(callback) {\n", " if (callback != null)\n", " callback();\n", " });\n", " } finally {\n", " delete root._bokeh_onload_callbacks\n", " }\n", " console.debug(\"Bokeh: all callbacks have finished\");\n", " }\n", "\n", " function load_libs(css_urls, js_urls, callback) {\n", " if (css_urls == null) css_urls = [];\n", " if (js_urls == null) js_urls = [];\n", "\n", " root._bokeh_onload_callbacks.push(callback);\n", " if (root._bokeh_is_loading > 0) {\n", " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", " return null;\n", " }\n", " if (js_urls == null || js_urls.length === 0) {\n", " run_callbacks();\n", " return null;\n", " }\n", " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", "\n", " function on_load() {\n", " root._bokeh_is_loading--;\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", " run_callbacks()\n", " }\n", " }\n", "\n", " function on_error() {\n", " console.error(\"failed to load \" + url);\n", " }\n", "\n", " for (var i = 0; i < css_urls.length; i++) {\n", " var url = css_urls[i];\n", " const element = document.createElement(\"link\");\n", " element.onload = on_load;\n", " element.onerror = on_error;\n", " element.rel = \"stylesheet\";\n", " element.type = \"text/css\";\n", " element.href = url;\n", " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", " document.body.appendChild(element);\n", " }\n", "\n", " const hashes = {\"https://cdn.bokeh.org/bokeh/release/bokeh-2.0.1.min.js\": \"JpP8FXbgAZLkfur7LiK3j9AGBhHNIvF742meBJrjO2ShJDhCG2I1uVvW+0DUtrmc\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.0.1.min.js\": \"xZlADit0Q04ISQEdKg2k3L4W9AwQBAuDs9nJL9fM/WwzL1tEU9VPNezOFX0nLEAz\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.0.1.min.js\": \"4BuPRZkdMKSnj3zoxiNrQ86XgNw0rYmBOxe7nshquXwwcauupgBF2DHLVG1WuZlV\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.0.1.min.js\": \"Dv1SQ87hmDqK6S5OhBf0bCuwAEvL5QYL0PuR/F1SPVhCS/r/abjkbpKDYL2zeM19\"};\n", "\n", " for (var i = 0; i < js_urls.length; i++) {\n", " var url = js_urls[i];\n", " var element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error;\n", " element.async = false;\n", " element.src = url;\n", " if (url in hashes) {\n", " element.crossOrigin = \"anonymous\";\n", " element.integrity = \"sha384-\" + hashes[url];\n", " }\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\n", " };var element = document.getElementById(\"2077\");\n", " if (element == null) {\n", " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '2077' but no matching script tag was found. \")\n", " return false;\n", " }\n", "\n", " function inject_raw_css(css) {\n", " const element = document.createElement(\"style\");\n", " element.appendChild(document.createTextNode(css));\n", " document.body.appendChild(element);\n", " }\n", "\n", " \n", " var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.0.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.0.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.0.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.0.1.min.js\", \"https://unpkg.com/@holoviz/panel@^0.9.4/dist/panel.min.js\"];\n", " var css_urls = [];\n", " \n", "\n", " var inline_js = [\n", " function(Bokeh) {\n", " inject_raw_css(\"table.panel-df {\\n margin-left: auto;\\n margin-right: auto;\\n border: none;\\n border-collapse: collapse;\\n border-spacing: 0;\\n color: black;\\n font-size: 12px;\\n table-layout: fixed;\\n width: 100%;\\n}\\n\\n.panel-df tr, th, td {\\n text-align: right;\\n vertical-align: middle;\\n padding: 0.5em 0.5em !important;\\n line-height: normal;\\n white-space: normal;\\n max-width: none;\\n border: none;\\n}\\n\\n.panel-df tbody {\\n display: table-row-group;\\n vertical-align: middle;\\n border-color: inherit;\\n}\\n\\n.panel-df tbody tr:nth-child(odd) {\\n background: #f5f5f5;\\n}\\n\\n.panel-df thead {\\n border-bottom: 1px solid black;\\n vertical-align: bottom;\\n}\\n\\n.panel-df tr:hover {\\n background: lightblue !important;\\n cursor: pointer;\\n}\\n\");\n", " },\n", " function(Bokeh) {\n", " inject_raw_css(\".widget-box {\\n\\tmin-height: 20px;\\n\\tbackground-color: #f5f5f5;\\n\\tborder: 1px solid #e3e3e3 !important;\\n\\tborder-radius: 4px;\\n\\t-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n\\tbox-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n\\toverflow-x: hidden;\\n\\toverflow-y: hidden;\\n}\\n\\n.scrollable {\\n overflow: scroll;\\n}\\n\\nprogress {\\n\\tappearance: none;\\n\\t-moz-appearance: none;\\n\\t-webkit-appearance: none;\\n\\n\\tborder: none;\\n\\theight: 20px;\\n\\tbackground-color: whiteSmoke;\\n\\tborder-radius: 3px;\\n\\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n\\tcolor: royalblue;\\n\\tposition: relative;\\n\\tmargin: 0 0 1.5em;\\n}\\n\\nprogress[value]::-webkit-progress-bar {\\n\\tbackground-color: whiteSmoke;\\n\\tborder-radius: 3px;\\n\\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n}\\n\\nprogress[value]::-webkit-progress-value {\\n\\tposition: relative;\\n\\n\\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\\n\\tborder-radius:3px;\\n}\\n\\nprogress.active:not([value])::before {\\n\\tbackground-position: 10%;\\n\\tanimation-name: stripes;\\n\\tanimation-duration: 3s;\\n\\tanimation-timing-function: linear;\\n\\tanimation-iteration-count: infinite;\\n}\\n\\nprogress[value]::-moz-progress-bar {\\n\\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\\n\\tborder-radius:3px;\\n}\\n\\nprogress:not([value])::-moz-progress-bar {\\n\\tborder-radius:3px;\\n\\tbackground:\\n\\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n\\n}\\n\\nprogress.active:not([value])::-moz-progress-bar {\\n\\tbackground-position: 10%;\\n\\tanimation-name: stripes;\\n\\tanimation-duration: 3s;\\n\\tanimation-timing-function: linear;\\n\\tanimation-iteration-count: infinite;\\n}\\n\\nprogress.active:not([value])::-webkit-progress-bar {\\n\\tbackground-position: 10%;\\n\\tanimation-name: stripes;\\n\\tanimation-duration: 3s;\\n\\tanimation-timing-function: linear;\\n\\tanimation-iteration-count: infinite;\\n}\\n\\nprogress.primary[value]::-webkit-progress-value { background-color: #007bff; }\\nprogress.primary:not([value])::before { background-color: #007bff; }\\nprogress.primary:not([value])::-webkit-progress-bar { background-color: #007bff; }\\nprogress.primary::-moz-progress-bar { background-color: #007bff; }\\n\\nprogress.secondary[value]::-webkit-progress-value { background-color: #6c757d; }\\nprogress.secondary:not([value])::before { background-color: #6c757d; }\\nprogress.secondary:not([value])::-webkit-progress-bar { background-color: #6c757d; }\\nprogress.secondary::-moz-progress-bar { background-color: #6c757d; }\\n\\nprogress.success[value]::-webkit-progress-value { background-color: #28a745; }\\nprogress.success:not([value])::before { background-color: #28a745; }\\nprogress.success:not([value])::-webkit-progress-bar { background-color: #28a745; }\\nprogress.success::-moz-progress-bar { background-color: #28a745; }\\n\\nprogress.danger[value]::-webkit-progress-value { background-color: #dc3545; }\\nprogress.danger:not([value])::before { background-color: #dc3545; }\\nprogress.danger:not([value])::-webkit-progress-bar { background-color: #dc3545; }\\nprogress.danger::-moz-progress-bar { background-color: #dc3545; }\\n\\nprogress.warning[value]::-webkit-progress-value { background-color: #ffc107; }\\nprogress.warning:not([value])::before { background-color: #ffc107; }\\nprogress.warning:not([value])::-webkit-progress-bar { background-color: #ffc107; }\\nprogress.warning::-moz-progress-bar { background-color: #ffc107; }\\n\\nprogress.info[value]::-webkit-progress-value { background-color: #17a2b8; }\\nprogress.info:not([value])::before { background-color: #17a2b8; }\\nprogress.info:not([value])::-webkit-progress-bar { background-color: #17a2b8; }\\nprogress.info::-moz-progress-bar { background-color: #17a2b8; }\\n\\nprogress.light[value]::-webkit-progress-value { background-color: #f8f9fa; }\\nprogress.light:not([value])::before { background-color: #f8f9fa; }\\nprogress.light:not([value])::-webkit-progress-bar { background-color: #f8f9fa; }\\nprogress.light::-moz-progress-bar { background-color: #f8f9fa; }\\n\\nprogress.dark[value]::-webkit-progress-value { background-color: #343a40; }\\nprogress.dark:not([value])::-webkit-progress-bar { background-color: #343a40; }\\nprogress.dark:not([value])::before { background-color: #343a40; }\\nprogress.dark::-moz-progress-bar { background-color: #343a40; }\\n\\nprogress:not([value])::-webkit-progress-bar {\\n\\tborder-radius: 3px;\\n\\tbackground:\\n\\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\nprogress:not([value])::before {\\n\\tcontent:\\\" \\\";\\n\\tposition:absolute;\\n\\theight: 20px;\\n\\ttop:0;\\n\\tleft:0;\\n\\tright:0;\\n\\tbottom:0;\\n\\tborder-radius: 3px;\\n\\tbackground:\\n\\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\n\\n@keyframes stripes {\\n from {background-position: 0%}\\n to {background-position: 100%}\\n}\");\n", " },\n", " function(Bokeh) {\n", " inject_raw_css(\".json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-row,\\n.json-formatter-row a,\\n.json-formatter-row a:hover {\\n color: black;\\n text-decoration: none;\\n}\\n.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-row .json-formatter-string,\\n.json-formatter-row .json-formatter-stringifiable {\\n color: green;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-row .json-formatter-number {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-boolean {\\n color: red;\\n}\\n.json-formatter-row .json-formatter-null {\\n color: #855A00;\\n}\\n.json-formatter-row .json-formatter-undefined {\\n color: #ca0b69;\\n}\\n.json-formatter-row .json-formatter-function {\\n color: #FF20ED;\\n}\\n.json-formatter-row .json-formatter-date {\\n background-color: rgba(0, 0, 0, 0.05);\\n}\\n.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: blue;\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-bracket {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-key {\\n color: #00008B;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n.json-formatter-dark.json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-dark.json-formatter-row,\\n.json-formatter-dark.json-formatter-row a,\\n.json-formatter-dark.json-formatter-row a:hover {\\n color: white;\\n text-decoration: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-string,\\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\\n color: #31F031;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-number {\\n color: #66C2FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\\n color: #EC4242;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-null {\\n color: #EEC97D;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\\n color: #ef8fbe;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-function {\\n color: #FD48CB;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-date {\\n background-color: rgba(255, 255, 255, 0.05);\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: #027BFF;\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\\n color: #9494FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-key {\\n color: #23A0DB;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n\");\n", " },\n", " function(Bokeh) {\n", " inject_raw_css(\".codehilite .hll { background-color: #ffffcc }\\n.codehilite { background: #f8f8f8; }\\n.codehilite .c { color: #408080; font-style: italic } /* Comment */\\n.codehilite .err { border: 1px solid #FF0000 } /* Error */\\n.codehilite .k { color: #008000; font-weight: bold } /* Keyword */\\n.codehilite .o { color: #666666 } /* Operator */\\n.codehilite .ch { color: #408080; font-style: italic } /* Comment.Hashbang */\\n.codehilite .cm { color: #408080; font-style: italic } /* Comment.Multiline */\\n.codehilite .cp { color: #BC7A00 } /* Comment.Preproc */\\n.codehilite .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */\\n.codehilite .c1 { color: #408080; font-style: italic } /* Comment.Single */\\n.codehilite .cs { color: #408080; font-style: italic } /* Comment.Special */\\n.codehilite .gd { color: #A00000 } /* Generic.Deleted */\\n.codehilite .ge { font-style: italic } /* Generic.Emph */\\n.codehilite .gr { color: #FF0000 } /* Generic.Error */\\n.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */\\n.codehilite .gi { color: #00A000 } /* Generic.Inserted */\\n.codehilite .go { color: #888888 } /* Generic.Output */\\n.codehilite .gp { color: #000080; font-weight: bold } /* Generic.Prompt */\\n.codehilite .gs { font-weight: bold } /* Generic.Strong */\\n.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */\\n.codehilite .gt { color: #0044DD } /* Generic.Traceback */\\n.codehilite .kc { color: #008000; font-weight: bold } /* Keyword.Constant */\\n.codehilite .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */\\n.codehilite .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */\\n.codehilite .kp { color: #008000 } /* Keyword.Pseudo */\\n.codehilite .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */\\n.codehilite .kt { color: #B00040 } /* Keyword.Type */\\n.codehilite .m { color: #666666 } /* Literal.Number */\\n.codehilite .s { color: #BA2121 } /* Literal.String */\\n.codehilite .na { color: #7D9029 } /* Name.Attribute */\\n.codehilite .nb { color: #008000 } /* Name.Builtin */\\n.codehilite .nc { color: #0000FF; font-weight: bold } /* Name.Class */\\n.codehilite .no { color: #880000 } /* Name.Constant */\\n.codehilite .nd { color: #AA22FF } /* Name.Decorator */\\n.codehilite .ni { color: #999999; font-weight: bold } /* Name.Entity */\\n.codehilite .ne { color: #D2413A; font-weight: bold } /* Name.Exception */\\n.codehilite .nf { color: #0000FF } /* Name.Function */\\n.codehilite .nl { color: #A0A000 } /* Name.Label */\\n.codehilite .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */\\n.codehilite .nt { color: #008000; font-weight: bold } /* Name.Tag */\\n.codehilite .nv { color: #19177C } /* Name.Variable */\\n.codehilite .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */\\n.codehilite .w { color: #bbbbbb } /* Text.Whitespace */\\n.codehilite .mb { color: #666666 } /* Literal.Number.Bin */\\n.codehilite .mf { color: #666666 } /* Literal.Number.Float */\\n.codehilite .mh { color: #666666 } /* Literal.Number.Hex */\\n.codehilite .mi { color: #666666 } /* Literal.Number.Integer */\\n.codehilite .mo { color: #666666 } /* Literal.Number.Oct */\\n.codehilite .sa { color: #BA2121 } /* Literal.String.Affix */\\n.codehilite .sb { color: #BA2121 } /* Literal.String.Backtick */\\n.codehilite .sc { color: #BA2121 } /* Literal.String.Char */\\n.codehilite .dl { color: #BA2121 } /* Literal.String.Delimiter */\\n.codehilite .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */\\n.codehilite .s2 { color: #BA2121 } /* Literal.String.Double */\\n.codehilite .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */\\n.codehilite .sh { color: #BA2121 } /* Literal.String.Heredoc */\\n.codehilite .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */\\n.codehilite .sx { color: #008000 } /* Literal.String.Other */\\n.codehilite .sr { color: #BB6688 } /* Literal.String.Regex */\\n.codehilite .s1 { color: #BA2121 } /* Literal.String.Single */\\n.codehilite .ss { color: #19177C } /* Literal.String.Symbol */\\n.codehilite .bp { color: #008000 } /* Name.Builtin.Pseudo */\\n.codehilite .fm { color: #0000FF } /* Name.Function.Magic */\\n.codehilite .vc { color: #19177C } /* Name.Variable.Class */\\n.codehilite .vg { color: #19177C } /* Name.Variable.Global */\\n.codehilite .vi { color: #19177C } /* Name.Variable.Instance */\\n.codehilite .vm { color: #19177C } /* Name.Variable.Magic */\\n.codehilite .il { color: #666666 } /* Literal.Number.Integer.Long */\\n\\n.markdown h1 { margin-block-start: 0.34em }\\n.markdown h2 { margin-block-start: 0.42em }\\n.markdown h3 { margin-block-start: 0.5em }\\n.markdown h4 { margin-block-start: 0.67em }\\n.markdown h5 { margin-block-start: 0.84em }\\n.markdown h6 { margin-block-start: 1.17em }\\n.markdown ul { padding-inline-start: 2em }\\n.markdown ol { padding-inline-start: 2em }\\n.markdown strong { font-weight: 600 }\\n.markdown a { color: -webkit-link }\\n.markdown a { color: -moz-hyperlinkText }\\n\");\n", " },\n", " function(Bokeh) {\n", " Bokeh.set_log_level(\"info\");\n", " },\n", " function(Bokeh) {\n", " \n", " \n", " }\n", " ];\n", "\n", " function run_inline_js() {\n", " \n", " if (root.Bokeh !== undefined || force === true) {\n", " \n", " for (var i = 0; i < inline_js.length; i++) {\n", " inline_js[i].call(root, root.Bokeh);\n", " }\n", " if (force === true) {\n", " display_loaded();\n", " }} else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(run_inline_js, 100);\n", " } else if (!root._bokeh_failed_load) {\n", " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", " root._bokeh_failed_load = true;\n", " } else if (force !== true) {\n", " var cell = $(document.getElementById(\"2077\")).parents('.cell').data().cell;\n", " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", " }\n", "\n", " }\n", "\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", " run_inline_js();\n", " } else {\n", " load_libs(css_urls, js_urls, function() {\n", " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", " run_inline_js();\n", " });\n", " }\n", "}(window));" ], "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"2077\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n const hashes = {\"https://cdn.bokeh.org/bokeh/release/bokeh-2.0.1.min.js\": \"JpP8FXbgAZLkfur7LiK3j9AGBhHNIvF742meBJrjO2ShJDhCG2I1uVvW+0DUtrmc\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.0.1.min.js\": \"xZlADit0Q04ISQEdKg2k3L4W9AwQBAuDs9nJL9fM/WwzL1tEU9VPNezOFX0nLEAz\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.0.1.min.js\": \"4BuPRZkdMKSnj3zoxiNrQ86XgNw0rYmBOxe7nshquXwwcauupgBF2DHLVG1WuZlV\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.0.1.min.js\": \"Dv1SQ87hmDqK6S5OhBf0bCuwAEvL5QYL0PuR/F1SPVhCS/r/abjkbpKDYL2zeM19\"};\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n if (url in hashes) {\n element.crossOrigin = \"anonymous\";\n element.integrity = \"sha384-\" + hashes[url];\n }\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"2077\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '2077' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n \n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.0.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.0.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.0.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.0.1.min.js\", \"https://unpkg.com/@holoviz/panel@^0.9.4/dist/panel.min.js\"];\n var css_urls = [];\n \n\n var inline_js = [\n function(Bokeh) {\n inject_raw_css(\"table.panel-df {\\n margin-left: auto;\\n margin-right: auto;\\n border: none;\\n border-collapse: collapse;\\n border-spacing: 0;\\n color: black;\\n font-size: 12px;\\n table-layout: fixed;\\n width: 100%;\\n}\\n\\n.panel-df tr, th, td {\\n text-align: right;\\n vertical-align: middle;\\n padding: 0.5em 0.5em !important;\\n line-height: normal;\\n white-space: normal;\\n max-width: none;\\n border: none;\\n}\\n\\n.panel-df tbody {\\n display: table-row-group;\\n vertical-align: middle;\\n border-color: inherit;\\n}\\n\\n.panel-df tbody tr:nth-child(odd) {\\n background: #f5f5f5;\\n}\\n\\n.panel-df thead {\\n border-bottom: 1px solid black;\\n vertical-align: bottom;\\n}\\n\\n.panel-df tr:hover {\\n background: lightblue !important;\\n cursor: pointer;\\n}\\n\");\n },\n function(Bokeh) {\n inject_raw_css(\".widget-box {\\n\\tmin-height: 20px;\\n\\tbackground-color: #f5f5f5;\\n\\tborder: 1px solid #e3e3e3 !important;\\n\\tborder-radius: 4px;\\n\\t-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n\\tbox-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n\\toverflow-x: hidden;\\n\\toverflow-y: hidden;\\n}\\n\\n.scrollable {\\n overflow: scroll;\\n}\\n\\nprogress {\\n\\tappearance: none;\\n\\t-moz-appearance: none;\\n\\t-webkit-appearance: none;\\n\\n\\tborder: none;\\n\\theight: 20px;\\n\\tbackground-color: whiteSmoke;\\n\\tborder-radius: 3px;\\n\\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n\\tcolor: royalblue;\\n\\tposition: relative;\\n\\tmargin: 0 0 1.5em;\\n}\\n\\nprogress[value]::-webkit-progress-bar {\\n\\tbackground-color: whiteSmoke;\\n\\tborder-radius: 3px;\\n\\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n}\\n\\nprogress[value]::-webkit-progress-value {\\n\\tposition: relative;\\n\\n\\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\\n\\tborder-radius:3px;\\n}\\n\\nprogress.active:not([value])::before {\\n\\tbackground-position: 10%;\\n\\tanimation-name: stripes;\\n\\tanimation-duration: 3s;\\n\\tanimation-timing-function: linear;\\n\\tanimation-iteration-count: infinite;\\n}\\n\\nprogress[value]::-moz-progress-bar {\\n\\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\\n\\tborder-radius:3px;\\n}\\n\\nprogress:not([value])::-moz-progress-bar {\\n\\tborder-radius:3px;\\n\\tbackground:\\n\\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n\\n}\\n\\nprogress.active:not([value])::-moz-progress-bar {\\n\\tbackground-position: 10%;\\n\\tanimation-name: stripes;\\n\\tanimation-duration: 3s;\\n\\tanimation-timing-function: linear;\\n\\tanimation-iteration-count: infinite;\\n}\\n\\nprogress.active:not([value])::-webkit-progress-bar {\\n\\tbackground-position: 10%;\\n\\tanimation-name: stripes;\\n\\tanimation-duration: 3s;\\n\\tanimation-timing-function: linear;\\n\\tanimation-iteration-count: infinite;\\n}\\n\\nprogress.primary[value]::-webkit-progress-value { background-color: #007bff; }\\nprogress.primary:not([value])::before { background-color: #007bff; }\\nprogress.primary:not([value])::-webkit-progress-bar { background-color: #007bff; }\\nprogress.primary::-moz-progress-bar { background-color: #007bff; }\\n\\nprogress.secondary[value]::-webkit-progress-value { background-color: #6c757d; }\\nprogress.secondary:not([value])::before { background-color: #6c757d; }\\nprogress.secondary:not([value])::-webkit-progress-bar { background-color: #6c757d; }\\nprogress.secondary::-moz-progress-bar { background-color: #6c757d; }\\n\\nprogress.success[value]::-webkit-progress-value { background-color: #28a745; }\\nprogress.success:not([value])::before { background-color: #28a745; }\\nprogress.success:not([value])::-webkit-progress-bar { background-color: #28a745; }\\nprogress.success::-moz-progress-bar { background-color: #28a745; }\\n\\nprogress.danger[value]::-webkit-progress-value { background-color: #dc3545; }\\nprogress.danger:not([value])::before { background-color: #dc3545; }\\nprogress.danger:not([value])::-webkit-progress-bar { background-color: #dc3545; }\\nprogress.danger::-moz-progress-bar { background-color: #dc3545; }\\n\\nprogress.warning[value]::-webkit-progress-value { background-color: #ffc107; }\\nprogress.warning:not([value])::before { background-color: #ffc107; }\\nprogress.warning:not([value])::-webkit-progress-bar { background-color: #ffc107; }\\nprogress.warning::-moz-progress-bar { background-color: #ffc107; }\\n\\nprogress.info[value]::-webkit-progress-value { background-color: #17a2b8; }\\nprogress.info:not([value])::before { background-color: #17a2b8; }\\nprogress.info:not([value])::-webkit-progress-bar { background-color: #17a2b8; }\\nprogress.info::-moz-progress-bar { background-color: #17a2b8; }\\n\\nprogress.light[value]::-webkit-progress-value { background-color: #f8f9fa; }\\nprogress.light:not([value])::before { background-color: #f8f9fa; }\\nprogress.light:not([value])::-webkit-progress-bar { background-color: #f8f9fa; }\\nprogress.light::-moz-progress-bar { background-color: #f8f9fa; }\\n\\nprogress.dark[value]::-webkit-progress-value { background-color: #343a40; }\\nprogress.dark:not([value])::-webkit-progress-bar { background-color: #343a40; }\\nprogress.dark:not([value])::before { background-color: #343a40; }\\nprogress.dark::-moz-progress-bar { background-color: #343a40; }\\n\\nprogress:not([value])::-webkit-progress-bar {\\n\\tborder-radius: 3px;\\n\\tbackground:\\n\\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\nprogress:not([value])::before {\\n\\tcontent:\\\" \\\";\\n\\tposition:absolute;\\n\\theight: 20px;\\n\\ttop:0;\\n\\tleft:0;\\n\\tright:0;\\n\\tbottom:0;\\n\\tborder-radius: 3px;\\n\\tbackground:\\n\\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\n\\n@keyframes stripes {\\n from {background-position: 0%}\\n to {background-position: 100%}\\n}\");\n },\n function(Bokeh) {\n inject_raw_css(\".json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-row,\\n.json-formatter-row a,\\n.json-formatter-row a:hover {\\n color: black;\\n text-decoration: none;\\n}\\n.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-row .json-formatter-string,\\n.json-formatter-row .json-formatter-stringifiable {\\n color: green;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-row .json-formatter-number {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-boolean {\\n color: red;\\n}\\n.json-formatter-row .json-formatter-null {\\n color: #855A00;\\n}\\n.json-formatter-row .json-formatter-undefined {\\n color: #ca0b69;\\n}\\n.json-formatter-row .json-formatter-function {\\n color: #FF20ED;\\n}\\n.json-formatter-row .json-formatter-date {\\n background-color: rgba(0, 0, 0, 0.05);\\n}\\n.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: blue;\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-bracket {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-key {\\n color: #00008B;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n.json-formatter-dark.json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-dark.json-formatter-row,\\n.json-formatter-dark.json-formatter-row a,\\n.json-formatter-dark.json-formatter-row a:hover {\\n color: white;\\n text-decoration: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-string,\\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\\n color: #31F031;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-number {\\n color: #66C2FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\\n color: #EC4242;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-null {\\n color: #EEC97D;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\\n color: #ef8fbe;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-function {\\n color: #FD48CB;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-date {\\n background-color: rgba(255, 255, 255, 0.05);\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: #027BFF;\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\\n color: #9494FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-key {\\n color: #23A0DB;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n\");\n },\n function(Bokeh) {\n inject_raw_css(\".codehilite .hll { background-color: #ffffcc }\\n.codehilite { background: #f8f8f8; }\\n.codehilite .c { color: #408080; font-style: italic } /* Comment */\\n.codehilite .err { border: 1px solid #FF0000 } /* Error */\\n.codehilite .k { color: #008000; font-weight: bold } /* Keyword */\\n.codehilite .o { color: #666666 } /* Operator */\\n.codehilite .ch { color: #408080; font-style: italic } /* Comment.Hashbang */\\n.codehilite .cm { color: #408080; font-style: italic } /* Comment.Multiline */\\n.codehilite .cp { color: #BC7A00 } /* Comment.Preproc */\\n.codehilite .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */\\n.codehilite .c1 { color: #408080; font-style: italic } /* Comment.Single */\\n.codehilite .cs { color: #408080; font-style: italic } /* Comment.Special */\\n.codehilite .gd { color: #A00000 } /* Generic.Deleted */\\n.codehilite .ge { font-style: italic } /* Generic.Emph */\\n.codehilite .gr { color: #FF0000 } /* Generic.Error */\\n.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */\\n.codehilite .gi { color: #00A000 } /* Generic.Inserted */\\n.codehilite .go { color: #888888 } /* Generic.Output */\\n.codehilite .gp { color: #000080; font-weight: bold } /* Generic.Prompt */\\n.codehilite .gs { font-weight: bold } /* Generic.Strong */\\n.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */\\n.codehilite .gt { color: #0044DD } /* Generic.Traceback */\\n.codehilite .kc { color: #008000; font-weight: bold } /* Keyword.Constant */\\n.codehilite .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */\\n.codehilite .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */\\n.codehilite .kp { color: #008000 } /* Keyword.Pseudo */\\n.codehilite .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */\\n.codehilite .kt { color: #B00040 } /* Keyword.Type */\\n.codehilite .m { color: #666666 } /* Literal.Number */\\n.codehilite .s { color: #BA2121 } /* Literal.String */\\n.codehilite .na { color: #7D9029 } /* Name.Attribute */\\n.codehilite .nb { color: #008000 } /* Name.Builtin */\\n.codehilite .nc { color: #0000FF; font-weight: bold } /* Name.Class */\\n.codehilite .no { color: #880000 } /* Name.Constant */\\n.codehilite .nd { color: #AA22FF } /* Name.Decorator */\\n.codehilite .ni { color: #999999; font-weight: bold } /* Name.Entity */\\n.codehilite .ne { color: #D2413A; font-weight: bold } /* Name.Exception */\\n.codehilite .nf { color: #0000FF } /* Name.Function */\\n.codehilite .nl { color: #A0A000 } /* Name.Label */\\n.codehilite .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */\\n.codehilite .nt { color: #008000; font-weight: bold } /* Name.Tag */\\n.codehilite .nv { color: #19177C } /* Name.Variable */\\n.codehilite .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */\\n.codehilite .w { color: #bbbbbb } /* Text.Whitespace */\\n.codehilite .mb { color: #666666 } /* Literal.Number.Bin */\\n.codehilite .mf { color: #666666 } /* Literal.Number.Float */\\n.codehilite .mh { color: #666666 } /* Literal.Number.Hex */\\n.codehilite .mi { color: #666666 } /* Literal.Number.Integer */\\n.codehilite .mo { color: #666666 } /* Literal.Number.Oct */\\n.codehilite .sa { color: #BA2121 } /* Literal.String.Affix */\\n.codehilite .sb { color: #BA2121 } /* Literal.String.Backtick */\\n.codehilite .sc { color: #BA2121 } /* Literal.String.Char */\\n.codehilite .dl { color: #BA2121 } /* Literal.String.Delimiter */\\n.codehilite .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */\\n.codehilite .s2 { color: #BA2121 } /* Literal.String.Double */\\n.codehilite .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */\\n.codehilite .sh { color: #BA2121 } /* Literal.String.Heredoc */\\n.codehilite .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */\\n.codehilite .sx { color: #008000 } /* Literal.String.Other */\\n.codehilite .sr { color: #BB6688 } /* Literal.String.Regex */\\n.codehilite .s1 { color: #BA2121 } /* Literal.String.Single */\\n.codehilite .ss { color: #19177C } /* Literal.String.Symbol */\\n.codehilite .bp { color: #008000 } /* Name.Builtin.Pseudo */\\n.codehilite .fm { color: #0000FF } /* Name.Function.Magic */\\n.codehilite .vc { color: #19177C } /* Name.Variable.Class */\\n.codehilite .vg { color: #19177C } /* Name.Variable.Global */\\n.codehilite .vi { color: #19177C } /* Name.Variable.Instance */\\n.codehilite .vm { color: #19177C } /* Name.Variable.Magic */\\n.codehilite .il { color: #666666 } /* Literal.Number.Integer.Long */\\n\\n.markdown h1 { margin-block-start: 0.34em }\\n.markdown h2 { margin-block-start: 0.42em }\\n.markdown h3 { margin-block-start: 0.5em }\\n.markdown h4 { margin-block-start: 0.67em }\\n.markdown h5 { margin-block-start: 0.84em }\\n.markdown h6 { margin-block-start: 1.17em }\\n.markdown ul { padding-inline-start: 2em }\\n.markdown ol { padding-inline-start: 2em }\\n.markdown strong { font-weight: 600 }\\n.markdown a { color: -webkit-link }\\n.markdown a { color: -moz-hyperlinkText }\\n\");\n },\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n function(Bokeh) {\n \n \n }\n ];\n\n function run_inline_js() {\n \n if (root.Bokeh !== undefined || force === true) {\n \n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"2077\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "\n", "\n", "\n", "\n", "\n", "\n", "
\n" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function embed_document(root) {\n", " \n", " var docs_json = {\"057b5c96-0801-4fba-8a90-b19de38df97a\":{\"roots\":{\"references\":[{\"attributes\":{\"background_fill_color\":\"white\",\"below\":[{\"id\":\"2088\"}],\"center\":[{\"id\":\"2091\"},{\"id\":\"2095\"}],\"left\":[{\"id\":\"2092\"}],\"plot_height\":800,\"plot_width\":800,\"renderers\":[{\"id\":\"2115\"}],\"title\":{\"id\":\"2190\"},\"toolbar\":{\"id\":\"2104\"},\"x_range\":{\"id\":\"2080\"},\"x_scale\":{\"id\":\"2084\"},\"y_range\":{\"id\":\"2082\"},\"y_scale\":{\"id\":\"2086\"}},\"id\":\"2079\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"2102\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"field\":\"color\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"field\":\"color\"},\"size\":{\"units\":\"screen\",\"value\":2.4318019154289874},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"2114\",\"type\":\"Circle\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"category\",\"@category\"],[\"slugs\",\"@slugs\"]]},\"id\":\"2103\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"2097\",\"type\":\"WheelZoomTool\"},{\"attributes\":{},\"id\":\"2193\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"line_color\":{\"field\":\"color\"},\"size\":{\"units\":\"screen\",\"value\":2.4318019154289874},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"2113\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"2099\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"2100\",\"type\":\"ResetTool\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_inspect\":\"auto\",\"active_multi\":null,\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"2096\"},{\"id\":\"2097\"},{\"id\":\"2098\"},{\"id\":\"2099\"},{\"id\":\"2100\"},{\"id\":\"2101\"},{\"id\":\"2103\"}]},\"id\":\"2104\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"2082\",\"type\":\"DataRange1d\"},{\"attributes\":{\"overlay\":{\"id\":\"2102\"}},\"id\":\"2098\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"axis\":{\"id\":\"2088\"},\"ticker\":null,\"visible\":false},\"id\":\"2091\",\"type\":\"Grid\"},{\"attributes\":{\"text\":\"\"},\"id\":\"2190\",\"type\":\"Title\"},{\"attributes\":{\"formatter\":{\"id\":\"2193\"},\"ticker\":{\"id\":\"2093\"},\"visible\":false},\"id\":\"2092\",\"type\":\"LinearAxis\"},{\"attributes\":{\"data_source\":{\"id\":\"2078\"},\"glyph\":{\"id\":\"2113\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"2114\"},\"selection_glyph\":null,\"view\":{\"id\":\"2116\"}},\"id\":\"2115\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"2089\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"2084\",\"type\":\"LinearScale\"},{\"attributes\":{\"axis\":{\"id\":\"2092\"},\"dimension\":1,\"ticker\":null,\"visible\":false},\"id\":\"2095\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"2101\",\"type\":\"HelpTool\"},{\"attributes\":{},\"id\":\"2191\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"source\":{\"id\":\"2078\"}},\"id\":\"2116\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"2195\",\"type\":\"Selection\"},{\"attributes\":{\"formatter\":{\"id\":\"2191\"},\"ticker\":{\"id\":\"2089\"},\"visible\":false},\"id\":\"2088\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"2093\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"2080\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"2196\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data\":{\"category\":[\"Aventure\",\"Aventure\",\"Course\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Strat\\u00e9gie\",\"Tir\",\"Aventure\",\"Action\",\"Aventure\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Simulation\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Tir\",\"Action\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Strat\\u00e9gie\",\"Aventure\",\"Tir\",\"Tir\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Aventure\",\"Tir\",\"Tir\",\"Action\",\"Aventure\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Action\",\"Tir\",\"Simulation\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Action\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Action\",\"Jeu de r\\u00f4le\",\"Action\",\"Simulation\",\"Action\",\"Tir\",\"Tir\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Action\",\"Action\",\"Tir\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Aventure\",\"Tir\",\"Tir\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Action\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Tir\",\"Tir\",\"Tir\",\"Aventure\",\"Action\",\"Strat\\u00e9gie\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Aventure\",\"Tir\",\"Tir\",\"Tir\",\"Aventure\",\"Aventure\",\"Action\",\"Action\",\"Simulation\",\"Strat\\u00e9gie\",\"Action\",\"Course\",\"Action\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Simulation\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Simulation\",\"Simulation\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Strat\\u00e9gie\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Simulation\",\"Simulation\",\"Simulation\",\"Tir\",\"Action\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Tir\",\"Tir\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Aventure\",\"Tir\",\"Tir\",\"Action\",\"Aventure\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Aventure\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Course\",\"Jeu de r\\u00f4le\",\"Action\",\"Tir\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Aventure\",\"Aventure\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Action\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Action\",\"Strat\\u00e9gie\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Tir\",\"Aventure\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Action\",\"Tir\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Tir\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Action\",\"Action\",\"Tir\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Course\",\"Course\",\"Aventure\",\"Simulation\",\"Strat\\u00e9gie\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Action\",\"Strat\\u00e9gie\",\"Aventure\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Action\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Action\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Aventure\",\"Action\",\"Course\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Action\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Tir\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Course\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Tir\",\"Action\",\"Aventure\",\"Action\",\"Aventure\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Aventure\",\"Action\",\"Simulation\",\"Course\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Aventure\",\"Tir\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Action\",\"Aventure\",\"Action\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Simulation\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Action\",\"Strat\\u00e9gie\",\"Tir\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Aventure\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Aventure\",\"Action\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Action\",\"Tir\",\"Tir\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Course\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Tir\",\"Tir\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Simulation\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Aventure\",\"Tir\",\"Action\",\"Course\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Action\",\"Course\",\"Course\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Course\",\"Action\",\"Action\",\"Action\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Aventure\",\"Aventure\",\"Tir\",\"Tir\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Tir\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Aventure\",\"Aventure\",\"Action\",\"Aventure\",\"Action\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Tir\",\"Strat\\u00e9gie\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Tir\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Aventure\",\"Aventure\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Simulation\",\"Simulation\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Action\",\"Aventure\",\"Action\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Course\",\"Aventure\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Tir\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Simulation\",\"Simulation\",\"Tir\",\"Simulation\",\"Simulation\",\"Action\",\"Simulation\",\"Simulation\",\"Simulation\",\"Tir\",\"Action\",\"Action\",\"Action\",\"Action\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Simulation\",\"Action\",\"Aventure\",\"Tir\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Simulation\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Course\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Tir\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Simulation\",\"Simulation\",\"Aventure\",\"Tir\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Action\",\"Tir\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Aventure\",\"Aventure\",\"Action\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Course\",\"Course\",\"Tir\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Sport\",\"Jeu de r\\u00f4le\",\"Action\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Tir\",\"Strat\\u00e9gie\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Simulation\",\"Simulation\",\"Action\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Action\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Course\",\"Course\",\"Simulation\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Action\",\"Sport\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Tir\",\"Action\",\"Aventure\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Simulation\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Course\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Tir\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Tir\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Action\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Action\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Course\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Action\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Aventure\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Action\",\"Action\",\"Tir\",\"Tir\",\"Jeu de r\\u00f4le\",\"Tir\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Aventure\",\"Action\",\"Aventure\",\"Simulation\",\"Simulation\",\"Simulation\",\"Aventure\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Tir\",\"Tir\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Tir\",\"Simulation\",\"Action\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Simulation\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Aventure\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Action\",\"Aventure\",\"Tir\",\"Tir\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Tir\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Simulation\",\"Simulation\",\"Simulation\",\"Action\",\"Action\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Tir\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Aventure\",\"Simulation\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Action\",\"Course\",\"Jeu de r\\u00f4le\",\"Action\",\"Tir\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Aventure\",\"Action\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Action\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\"],\"color\":[\"#e2514a\",\"#e2514a\",\"#fca55d\",\"#47a0b3\",\"#47a0b3\",\"#edf8a3\",\"#47a0b3\",\"#5e4fa2\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#edf8a3\",\"#47a0b3\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#edf8a3\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#9e0142\",\"#fee999\",\"#47a0b3\",\"#5e4fa2\",\"#9e0142\",\"#e2514a\",\"#fee999\",\"#e2514a\",\"#47a0b3\",\"#e2514a\",\"#5e4fa2\",\"#5e4fa2\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#edf8a3\",\"#edf8a3\",\"#e2514a\",\"#5e4fa2\",\"#5e4fa2\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#fee999\",\"#edf8a3\",\"#5e4fa2\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#5e4fa2\",\"#edf8a3\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#edf8a3\",\"#edf8a3\",\"#9e0142\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#edf8a3\",\"#fee999\",\"#9e0142\",\"#fee999\",\"#9e0142\",\"#edf8a3\",\"#9e0142\",\"#5e4fa2\",\"#5e4fa2\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#5e4fa2\",\"#9e0142\",\"#9e0142\",\"#5e4fa2\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#5e4fa2\",\"#5e4fa2\",\"#e2514a\",\"#5e4fa2\",\"#5e4fa2\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#e2514a\",\"#9e0142\",\"#47a0b3\",\"#edf8a3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#edf8a3\",\"#47a0b3\",\"#9e0142\",\"#fca55d\",\"#9e0142\",\"#47a0b3\",\"#fee999\",\"#5e4fa2\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#5e4fa2\",\"#5e4fa2\",\"#e2514a\",\"#47a0b3\",\"#fee999\",\"#fee999\",\"#fee999\",\"#e2514a\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#5e4fa2\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#edf8a3\",\"#edf8a3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#5e4fa2\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#e2514a\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#fee999\",\"#e2514a\",\"#47a0b3\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#5e4fa2\",\"#9e0142\",\"#edf8a3\",\"#edf8a3\",\"#47a0b3\",\"#9e0142\",\"#9e0142\",\"#fee999\",\"#fee999\",\"#5e4fa2\",\"#5e4fa2\",\"#9e0142\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#e2514a\",\"#5e4fa2\",\"#5e4fa2\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#47a0b3\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#fee999\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#47a0b3\",\"#e2514a\",\"#47a0b3\",\"#9e0142\",\"#9e0142\",\"#5e4fa2\",\"#47a0b3\",\"#47a0b3\",\"#5e4fa2\",\"#9e0142\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#edf8a3\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#fca55d\",\"#fee999\",\"#9e0142\",\"#5e4fa2\",\"#fee999\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#fee999\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#47a0b3\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#5e4fa2\",\"#5e4fa2\",\"#47a0b3\",\"#9e0142\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#47a0b3\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#47a0b3\",\"#fee999\",\"#fee999\",\"#5e4fa2\",\"#e2514a\",\"#47a0b3\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#5e4fa2\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#fee999\",\"#fee999\",\"#5e4fa2\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#edf8a3\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#5e4fa2\",\"#9e0142\",\"#9e0142\",\"#5e4fa2\",\"#e2514a\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#9e0142\",\"#47a0b3\",\"#fee999\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#edf8a3\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#5e4fa2\",\"#5e4fa2\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#5e4fa2\",\"#5e4fa2\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#fca55d\",\"#fca55d\",\"#e2514a\",\"#edf8a3\",\"#47a0b3\",\"#edf8a3\",\"#fee999\",\"#fee999\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#47a0b3\",\"#e2514a\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#9e0142\",\"#edf8a3\",\"#edf8a3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#edf8a3\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#edf8a3\",\"#e2514a\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#fee999\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#fee999\",\"#9e0142\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#e2514a\",\"#9e0142\",\"#fca55d\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#edf8a3\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#edf8a3\",\"#edf8a3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#47a0b3\",\"#5e4fa2\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#fca55d\",\"#edf8a3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#5e4fa2\",\"#5e4fa2\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#edf8a3\",\"#fca55d\",\"#47a0b3\",\"#47a0b3\",\"#5e4fa2\",\"#e2514a\",\"#5e4fa2\",\"#fee999\",\"#e2514a\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#5e4fa2\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#fee999\",\"#e2514a\",\"#edf8a3\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#9e0142\",\"#47a0b3\",\"#5e4fa2\",\"#47a0b3\",\"#fee999\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#5e4fa2\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#fee999\",\"#e2514a\",\"#47a0b3\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#5e4fa2\",\"#5e4fa2\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#47a0b3\",\"#edf8a3\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#5e4fa2\",\"#5e4fa2\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#e2514a\",\"#47a0b3\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#9e0142\",\"#5e4fa2\",\"#5e4fa2\",\"#47a0b3\",\"#fca55d\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#5e4fa2\",\"#5e4fa2\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#9e0142\",\"#edf8a3\",\"#9e0142\",\"#e2514a\",\"#47a0b3\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#5e4fa2\",\"#9e0142\",\"#fca55d\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#fca55d\",\"#fca55d\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#fca55d\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#5e4fa2\",\"#e2514a\",\"#e2514a\",\"#5e4fa2\",\"#5e4fa2\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#5e4fa2\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#5e4fa2\",\"#47a0b3\",\"#edf8a3\",\"#fee999\",\"#fee999\",\"#edf8a3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#47a0b3\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#5e4fa2\",\"#fee999\",\"#fee999\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#47a0b3\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#5e4fa2\",\"#5e4fa2\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#edf8a3\",\"#47a0b3\",\"#47a0b3\",\"#edf8a3\",\"#e2514a\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#e2514a\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#edf8a3\",\"#edf8a3\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#edf8a3\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#edf8a3\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#fca55d\",\"#e2514a\",\"#edf8a3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#edf8a3\",\"#edf8a3\",\"#5e4fa2\",\"#edf8a3\",\"#edf8a3\",\"#9e0142\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#5e4fa2\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#9e0142\",\"#e2514a\",\"#5e4fa2\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#9e0142\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#edf8a3\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#fca55d\",\"#fee999\",\"#fee999\",\"#fee999\",\"#e2514a\",\"#47a0b3\",\"#edf8a3\",\"#e2514a\",\"#5e4fa2\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#fee999\",\"#e2514a\",\"#edf8a3\",\"#edf8a3\",\"#e2514a\",\"#5e4fa2\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#47a0b3\",\"#9e0142\",\"#5e4fa2\",\"#fee999\",\"#edf8a3\",\"#edf8a3\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#fee999\",\"#fee999\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#fca55d\",\"#fca55d\",\"#5e4fa2\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#a2d9a4\",\"#fee999\",\"#9e0142\",\"#5e4fa2\",\"#5e4fa2\",\"#47a0b3\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#5e4fa2\",\"#47a0b3\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#9e0142\",\"#e2514a\",\"#47a0b3\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#5e4fa2\",\"#edf8a3\",\"#edf8a3\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#edf8a3\",\"#9e0142\",\"#47a0b3\",\"#edf8a3\",\"#e2514a\",\"#edf8a3\",\"#edf8a3\",\"#47a0b3\",\"#fee999\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#edf8a3\",\"#5e4fa2\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#fca55d\",\"#fca55d\",\"#edf8a3\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#fee999\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#9e0142\",\"#a2d9a4\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#47a0b3\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#edf8a3\",\"#47a0b3\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#47a0b3\",\"#fca55d\",\"#47a0b3\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#fee999\",\"#fee999\",\"#47a0b3\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#5e4fa2\",\"#9e0142\",\"#9e0142\",\"#47a0b3\",\"#9e0142\",\"#edf8a3\",\"#fee999\",\"#9e0142\",\"#fee999\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#edf8a3\",\"#9e0142\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#fca55d\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#5e4fa2\",\"#5e4fa2\",\"#47a0b3\",\"#9e0142\",\"#5e4fa2\",\"#5e4fa2\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#5e4fa2\",\"#e2514a\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#9e0142\",\"#9e0142\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#edf8a3\",\"#9e0142\",\"#9e0142\",\"#5e4fa2\",\"#5e4fa2\",\"#fee999\",\"#5e4fa2\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#5e4fa2\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#fee999\",\"#47a0b3\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#e2514a\",\"#47a0b3\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#5e4fa2\",\"#5e4fa2\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#fee999\",\"#9e0142\",\"#e2514a\",\"#5e4fa2\",\"#edf8a3\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#edf8a3\",\"#47a0b3\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#edf8a3\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#edf8a3\",\"#fee999\",\"#fee999\",\"#9e0142\",\"#e2514a\",\"#9e0142\",\"#e2514a\",\"#5e4fa2\",\"#5e4fa2\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#9e0142\",\"#5e4fa2\",\"#fee999\",\"#9e0142\",\"#9e0142\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#9e0142\",\"#9e0142\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#5e4fa2\",\"#9e0142\",\"#9e0142\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#edf8a3\",\"#edf8a3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#fee999\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#edf8a3\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#47a0b3\",\"#fee999\",\"#e2514a\",\"#edf8a3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#fee999\",\"#9e0142\",\"#fca55d\",\"#fee999\",\"#9e0142\",\"#5e4fa2\",\"#9e0142\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#9e0142\",\"#9e0142\",\"#9e0142\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#5e4fa2\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#47a0b3\",\"#fee999\",\"#fee999\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#9e0142\",\"#e2514a\",\"#47a0b3\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#9e0142\",\"#edf8a3\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#edf8a3\",\"#fee999\",\"#e2514a\",\"#9e0142\",\"#fee999\",\"#fee999\",\"#fee999\",\"#fee999\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#5e4fa2\",\"#47a0b3\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#5e4fa2\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#edf8a3\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#47a0b3\",\"#5e4fa2\",\"#e2514a\",\"#e2514a\",\"#e2514a\",\"#fee999\",\"#fee999\",\"#fee999\",\"#47a0b3\",\"#47a0b3\",\"#e2514a\",\"#47a0b3\",\"#e2514a\",\"#e2514a\",\"#fee999\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690],\"label\":[\"Aventure\",\"Aventure\",\"Course\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Strat\\u00e9gie\",\"Tir\",\"Aventure\",\"Action\",\"Aventure\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Simulation\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Tir\",\"Action\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Strat\\u00e9gie\",\"Aventure\",\"Tir\",\"Tir\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Aventure\",\"Tir\",\"Tir\",\"Action\",\"Aventure\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Action\",\"Tir\",\"Simulation\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Action\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Action\",\"Jeu de r\\u00f4le\",\"Action\",\"Simulation\",\"Action\",\"Tir\",\"Tir\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Action\",\"Action\",\"Tir\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Aventure\",\"Tir\",\"Tir\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Action\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Tir\",\"Tir\",\"Tir\",\"Aventure\",\"Action\",\"Strat\\u00e9gie\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Aventure\",\"Tir\",\"Tir\",\"Tir\",\"Aventure\",\"Aventure\",\"Action\",\"Action\",\"Simulation\",\"Strat\\u00e9gie\",\"Action\",\"Course\",\"Action\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Simulation\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Simulation\",\"Simulation\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Strat\\u00e9gie\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Simulation\",\"Simulation\",\"Simulation\",\"Tir\",\"Action\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Tir\",\"Tir\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Aventure\",\"Tir\",\"Tir\",\"Action\",\"Aventure\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Aventure\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Course\",\"Jeu de r\\u00f4le\",\"Action\",\"Tir\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Aventure\",\"Aventure\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Action\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Action\",\"Strat\\u00e9gie\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Tir\",\"Aventure\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Action\",\"Tir\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Tir\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Action\",\"Action\",\"Tir\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Course\",\"Course\",\"Aventure\",\"Simulation\",\"Strat\\u00e9gie\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Action\",\"Strat\\u00e9gie\",\"Aventure\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Action\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Action\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Aventure\",\"Action\",\"Course\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Action\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Tir\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Course\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Tir\",\"Action\",\"Aventure\",\"Action\",\"Aventure\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Aventure\",\"Action\",\"Simulation\",\"Course\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Aventure\",\"Tir\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Action\",\"Aventure\",\"Action\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Simulation\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Action\",\"Strat\\u00e9gie\",\"Tir\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Aventure\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Aventure\",\"Action\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Action\",\"Tir\",\"Tir\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Course\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Tir\",\"Tir\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Simulation\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Aventure\",\"Tir\",\"Action\",\"Course\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Action\",\"Course\",\"Course\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Course\",\"Action\",\"Action\",\"Action\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Aventure\",\"Aventure\",\"Tir\",\"Tir\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Tir\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Aventure\",\"Aventure\",\"Action\",\"Aventure\",\"Action\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Tir\",\"Strat\\u00e9gie\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Tir\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Aventure\",\"Aventure\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Simulation\",\"Simulation\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Action\",\"Aventure\",\"Action\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Course\",\"Aventure\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Tir\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Simulation\",\"Simulation\",\"Tir\",\"Simulation\",\"Simulation\",\"Action\",\"Simulation\",\"Simulation\",\"Simulation\",\"Tir\",\"Action\",\"Action\",\"Action\",\"Action\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Simulation\",\"Action\",\"Aventure\",\"Tir\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Simulation\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Course\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Tir\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Simulation\",\"Simulation\",\"Aventure\",\"Tir\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Action\",\"Tir\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Aventure\",\"Aventure\",\"Action\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Course\",\"Course\",\"Tir\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Sport\",\"Jeu de r\\u00f4le\",\"Action\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Tir\",\"Strat\\u00e9gie\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Simulation\",\"Simulation\",\"Action\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Action\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Course\",\"Course\",\"Simulation\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Action\",\"Sport\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Tir\",\"Action\",\"Aventure\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Simulation\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Course\",\"Strat\\u00e9gie\",\"Tir\",\"Tir\",\"Tir\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Tir\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Action\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Action\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Action\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Course\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Action\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Aventure\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Action\",\"Action\",\"Tir\",\"Tir\",\"Jeu de r\\u00f4le\",\"Tir\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Aventure\",\"Action\",\"Aventure\",\"Simulation\",\"Simulation\",\"Simulation\",\"Aventure\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Tir\",\"Tir\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Tir\",\"Simulation\",\"Action\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Simulation\",\"Strat\\u00e9gie\",\"Action\",\"Action\",\"Action\",\"Simulation\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Aventure\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Action\",\"Aventure\",\"Tir\",\"Tir\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Action\",\"Tir\",\"Jeu de r\\u00f4le\",\"Action\",\"Action\",\"Simulation\",\"Simulation\",\"Simulation\",\"Action\",\"Action\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Tir\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Simulation\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Aventure\",\"Simulation\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Simulation\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Action\",\"Jeu de r\\u00f4le\",\"Action\",\"Course\",\"Jeu de r\\u00f4le\",\"Action\",\"Tir\",\"Action\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Action\",\"Action\",\"Action\",\"Aventure\",\"Aventure\",\"Aventure\",\"Aventure\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Action\",\"Aventure\",\"Strat\\u00e9gie\",\"Simulation\",\"Aventure\",\"Aventure\",\"Action\",\"Simulation\",\"Aventure\",\"Aventure\",\"Aventure\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Aventure\",\"Action\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Tir\",\"Tir\",\"Tir\",\"Tir\",\"Strat\\u00e9gie\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Simulation\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Tir\",\"Aventure\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Jeu de r\\u00f4le\",\"Strat\\u00e9gie\",\"Strat\\u00e9gie\",\"Aventure\",\"Strat\\u00e9gie\",\"Aventure\",\"Aventure\",\"Jeu de r\\u00f4le\"],\"slugs\":[\"1954_alcatraz\",\"198x\",\"1nsane\",\"60_parsecs\",\"60_seconds\",\"7_billion_humans\",\"80_days\",\"99_levels_to_hell\",\"a_bird_story\",\"a_boy_and_his_blob\",\"a_golden_wake\",\"a_hat_in_time\",\"a_hat_in_time_nyakuza_metro\",\"a_legionarys_life\",\"a_plague_tale_innocence\",\"a_short_hike\",\"abandon_ship\",\"abzu\",\"act_of_war_gold_edition\",\"ad_2044\",\"advent_rising\",\"adventure_pals\",\"aegis_defenders\",\"aer\",\"afterlife\",\"agatha_christie_the_abc_murders\",\"age_of_civilizations_ii\",\"age_of_wonders\",\"age_of_wonders_3_deluxe_edition\",\"age_of_wonders_3_eternal_lords\",\"age_of_wonders_3_golden_realms\",\"age_of_wonders_planetfall\",\"age_of_wonders_planetfall_deluxe_edition\",\"age_of_wonders_planetfall_revelations\",\"age_of_wonders_shadow_magic\",\"ai_war_2\",\"ai_war_2_the_spire_rises\",\"ai_war_fleet_command\",\"airline_tycoon_deluxe\",\"airships_conquer_the_skies\",\"alan_wake\",\"alan_wakes_american_nightmare\",\"albion\",\"alien_nations\",\"aliens_versus_predator_classic_2000\",\"alone_in_the_dark\",\"alone_in_the_dark_the_new_nightmare\",\"alqadim_the_genies_curse\",\"always_sometimes_monsters\",\"american_conquest\",\"amerzone_the_explorer_legacy\",\"amid_evil\",\"amid_evil_warrior_edition\",\"amnesia_the_dark_descent\",\"among_the_sleep\",\"an_elder_scrolls_legend_battlespire\",\"ancestors\",\"ancestors_legacy_complete_edition\",\"ancestors_legacy_saladins_conquest\",\"annas_quest\",\"anno_1404_gold_edition\",\"anno_1503_ad\",\"anno_1602_ad\",\"anno_1701_ad\",\"anodyne_2_return_to_dust\",\"anomaly_2\",\"anomaly_defenders\",\"anomaly_korea\",\"anomaly_warzone_earth_mobile_campaign\",\"anvil_of_dawn\",\"apache_longbow\",\"apache_vs_havoc\",\"apsulov_end_of_gods\",\"aqua_kitty_milk_mine_defender\",\"aquanox_2_revelation\",\"ara_fell\",\"arabian_nights\",\"aragami\",\"aragami_nightfall\",\"arcanum_of_steamworks_and_magick_obscura\",\"archimedean_dynasty\",\"armed_and_dangerous\",\"army_men\",\"army_men_rts\",\"arx_fatalis\",\"ash_of_gods\",\"ash_of_gods_redemption_digital_deluxe\",\"assassins_creed_directors_cut\",\"astebreed\",\"astrox_imperium\",\"atlantic_fleet\",\"atlantis_2_beyond_atlantis\",\"atlantis_3_the_new_world\",\"atlantis_the_lost_tales\",\"atom_rpg_postapocalyptic_indie_game\",\"automachef\",\"b_17_flying_fortress_the_mighty_8th\",\"bad_north\",\"baldurs_gate_2_enhanced_edition\",\"baldurs_gate_enhanced_edition\",\"baldurs_gate_faces_of_good_and_evil\",\"baldurs_gate_siege_of_dragonspear\",\"banished\",\"banner_saga_2_the\",\"bastard\",\"bastion\",\"battle_brothers\",\"battle_brothers_beasts_exploration\",\"battle_brothers_beasts_exploration_supporter_edition_upgrade\",\"battle_brothers_warriors_of_the_north\",\"battle_chess_special_edition\",\"battle_isle_platinum\",\"battle_isle_the_andosia_war\",\"battle_realms_winter_of_the_wolf\",\"battlestar_galactica_deadlock\",\"battlestar_galactica_deadlock_ghost_fleet_offensive\",\"battlestar_galactica_deadlock_reinforcement_pack\",\"battlestar_galactica_deadlock_the_broken_alliance\",\"battletech_flashpoint\",\"battletech_game\",\"battletech_heavy_metal\",\"battletech_mercenary_collection\",\"battletech_season_pass\",\"battletech_urban_warfare\",\"battlezone_combat_commander\",\"bear_with_me_the_complete_collection\",\"beat_cop\",\"beautiful_desolation\",\"beholder_2\",\"besiege\",\"betrayal_at_krondor\",\"between_the_stars\",\"beyond_divinity\",\"beyond_good_and_evil\",\"biing_sex_intrigue_and_scalpels\",\"bioforge\",\"bioshock_infinite\",\"bioshock_remastered\",\"black_future_88\",\"black_future_88_original_digital_soundtrack\",\"black_mirror_3\",\"black_mirror_ii\",\"black_moon_chronicles\",\"blackguards_special_edition\",\"blacksad_under_the_skin\",\"blade_runner\",\"blair_witch\",\"blair_witch_deluxe_edition\",\"blake_stone_aliens_of_gold\",\"blasphemous\",\"blasphemous_digital_deluxe_edition\",\"blazing_chrome\",\"blazing_star\",\"blitzkrieg_2_anthology\",\"blitzkrieg_anthology\",\"blockhood\",\"blood_2_the_chosen_expansion\",\"blood_fresh_supply\",\"bloodnet\",\"bloodrayne\",\"bloodrayne_2\",\"bloodrayne_betrayal\",\"bloodstained_ritual_of_the_night\",\"bloodstained_ritual_of_the_night_igas_back_pack\",\"botanicula\",\"botanicula_soundtrack_art_book\",\"braid\",\"breathedge\",\"brigador\",\"brigador_deluxe_edition\",\"brigador_deluxe_edition_upgrade\",\"bright_memory\",\"broken_age\",\"broken_sword_2__the_smoking_mirror\",\"broken_sword_3__the_sleeping_dragon\",\"broken_sword_4\",\"broken_sword_5_the_serpents_curse\",\"broken_sword_directors_cut\",\"brothers_a_tale_of_two_sons\",\"brothers_in_arms_earned_in_blood\",\"brothers_in_arms_hells_highway\",\"brothers_in_arms_road_to_hill_30\",\"bug_fables_the_everlasting_sapling\",\"butcher\",\"caesar\",\"caesar_3\",\"caesar_ii\",\"caesar_iv\",\"call_of_cthulhu\",\"call_of_cthulhu_dark_corners_of_the_earth\",\"call_of_cthulhu_shadow_of_the_comet\",\"call_of_juarez\",\"call_of_juarez_bound_in_blood\",\"call_of_juarez_gunslinger\",\"candle\",\"candleman\",\"cannon_fodder\",\"cannon_fodder_2\",\"capitalism_2\",\"caravan\",\"carmageddon_2_carpocalypse_now\",\"carmageddon_max_damage\",\"carmageddon_tdr_2000\",\"castles_castles_2\",\"cat_quest_ii\",\"catacombs_pack\",\"caves_of_qud\",\"celtic_kings_rage_of_war\",\"chaos_overlords\",\"chaser\",\"chernobylite\",\"children_of_morta\",\"children_of_the_nile_complete\",\"children_of_zodiarcs\",\"children_of_zodiarcs_collectors_edition\",\"children_of_zodiarcs_collectors_upgrade\",\"chook_sosig_walk_the_plank\",\"chris_sawyers_locomotion\",\"chuchel\",\"chuchel_cherry_edition\",\"circle_empires\",\"civcity_rome\",\"clash\",\"clive_barkers_undying\",\"close_combat_2_a_bridge_too_far\",\"close_combat_3_the_russian_front\",\"close_combat_4_the_battle_of_the_bulge\",\"close_combat_5_invasion_normandy_utah_beach_to_cherbourg\",\"close_combat_cross_of_iron\",\"close_combat_gateway_to_caen\",\"codename_iceman\",\"codename_panzers_phase_one\",\"coffee_talk\",\"cognition_an_erica_reed_thriller\",\"cold_waters\",\"comanche_vs_hokum\",\"combat_mission_afrika_korps\",\"combat_mission_barbarossa_to_berlin\",\"combat_mission_beyond_overlord\",\"commandos_2_3\",\"commandos_2_hd\",\"commandos_ammo_pack\",\"conflict_desert_storm\",\"conqueror_ad_1086\",\"conquest_frontier_wars\",\"conquest_of_the_new_world\",\"conquests_of_camelot\",\"conquests_of_the_longbow\",\"constructor\",\"cook_serve_delicious_3\",\"cooking_simulator\",\"corpse_party\",\"corpse_party_book_of_shadows\",\"corsairs_gold\",\"cosmos_cosmic_adventure\",\"cossacks_3\",\"cossacks_3_days_of_brilliance\",\"cossacks_3_guardians_of_the_highlands\",\"cossacks_3_path_to_grandeur\",\"cossacks_3_rise_to_glory\",\"cossacks_3_the_golden_age\",\"cossacks_anthology\",\"cossacks_ii_anthology\",\"craft_the_world\",\"craft_the_world_bosses_monsters\",\"craft_the_world_lonely_mountain\",\"craft_the_world_temples_of_4_elements\",\"crawl\",\"creatures_exodus\",\"creatures_the_albian_years\",\"creatures_village\",\"crime_cities\",\"crossing_souls\",\"crossroads_inn\",\"crossroads_inn_season_pass\",\"crusader_kings_complete\",\"crusader_no_regret\",\"crusader_no_remorse\",\"crypt_of_the_necrodancer_amplified\",\"crypt_of_the_necrodancer_danny_baranowsky_soundtrack\",\"crysis\",\"crysiswarhead\",\"crystal_caves\",\"cultist_simulator\",\"cultures_12\",\"cultures_34\",\"cuphead\",\"curious_expedition_the\",\"cyberia\",\"cyberia_2_resurrection\",\"cyberpunk_2077\",\"d_the_game\",\"dangerous_dave_pack\",\"dark_devotion\",\"dark_fall_3_lost_souls\",\"dark_fall_ghost_vigil\",\"dark_quest_1_2\",\"dark_reign_2\",\"dark_reign_expansion\",\"darkest_dungeon\",\"darkest_dungeon_soundtrack\",\"darkest_dungeon_the_color_of_madness\",\"darkest_dungeon_the_crimson_court\",\"darkest_dungeon_the_shieldbreaker\",\"darkest_hour_a_hearts_of_iron_game\",\"darklands\",\"darksiders_genesis\",\"darksiders_genesis_digital_extras\",\"darksiders_ii_deathinitive_edition\",\"darksiders_warmastered_edition\",\"darkstone\",\"darkwood\",\"darkwood_artbook\",\"darkwood_soundtrack\",\"darq\",\"dawn_of_man\",\"day_of_the_tentacle_remastered\",\"dd_stronghold_kingdom_simulator\",\"dead_cells_the_bad_seed\",\"dead_cells_the_bad_seed_bundle\",\"dead_space\",\"deadlock_2_shrine_wars\",\"deadlock_planetary_conquest\",\"deadly_dozen\",\"death_road_to_canada\",\"deathtrap_dungeon\",\"deep_sky_derelicts\",\"deep_sky_derelicts_definitive_edition\",\"deep_sky_derelicts_new_prospects\",\"deep_sky_derelicts_station_life\",\"defcon\",\"defender_of_the_crown\",\"deliver_us_the_moon\",\"delta_force\",\"delta_force_2\",\"delta_force_black_hawk_down_platinum_pack\",\"delta_force_land_warrior\",\"demetrios_the_big_cynical_adventure\",\"democracy_3\",\"deponia\",\"deponia_2_chaos_on_deponia\",\"deponia_doomsday\",\"descent\",\"descent_2\",\"descent_3_expansion\",\"desktop_dungeons\",\"desktop_dungeons_goatperson\",\"desperados_2\",\"desperados_wanted_dead_or_alive\",\"detective_gallo\",\"dethkarz\",\"deus_ex\",\"deus_ex_invisible_war\",\"devil_daggers\",\"diablo\",\"die_by_the_sword_expansion\",\"diluvion\",\"diluvion_fleet_edition_upgrade\",\"disaster_report_4_summer_memories\",\"disaster_report_4_summer_memories_digital_limited_edition\",\"disciples_2_gold\",\"disciples_sacred_lands_gold\",\"disco_elysium\",\"disco_elysium_artbooklet\",\"dishonored_complete_collection\",\"dishonored_definitive_edition\",\"disney_classic_games_aladdin_and_the_lion_king\",\"disney_the_jungle_book\",\"disneys_hercules\",\"distant_worlds_universe\",\"divine_divinity\",\"divinity_2_developers_cut\",\"divinity_original_sin_2\",\"divinity_original_sin_2_divine_ascension\",\"divinity_original_sin_2_divine_edition\",\"divinity_original_sin_2_eternal_edition\",\"divinity_original_sin_2_sir_lora\",\"divinity_original_sin_enhanced_edition\",\"divinity_original_sin_enhanced_edition_collectors_edition\",\"do_not_feed_the_monkeys\",\"dont_escape_4_days_to_survive\",\"donut_county\",\"doom_3_bfg_edition\",\"doom_ii_final_doom\",\"door_kickers_action_squad\",\"downwell\",\"dracula_trilogy\",\"dragon_age_origins\",\"dragons_dogma_dark_arisen\",\"draugen\",\"dream\",\"dreamfall_the_longest_journey\",\"driftland_the_magic_revival\",\"dry_drowning\",\"dungeon_keeper\",\"dungeon_keeper_2\",\"dungeons_3_a_multitude_of_maps\",\"dungeons_3_an_unexpected_dlc\",\"dungeons_3_clash_of_gods\",\"dungeons_3_famous_last_words\",\"dungeons_dragons_dark_sun_series\",\"dungeons_dragons_dragonshard\",\"dungeons_dragons_krynn_series\",\"dungeons_dragons_ravenloft_series\",\"dusk\",\"dust_an_elysian_tail\",\"dwarrows\",\"dying_light_harran_inmate_bundle\",\"dying_light_shu_warrior_bundle\",\"dying_light_volatile_hunter_bundle\",\"eador_genesis\",\"earth_2140_trilogy\",\"earth_2150_trilogy\",\"earthlock\",\"earthlock_comic_book_1\",\"earthlock_ost\",\"earthworm_jim_1_2\",\"earthworm_jim_3d\",\"echo\",\"edna_harvey_the_breakout\",\"edna_harvey_the_breakout_anniversary_edition\",\"egypt_old_kingdom\",\"elder_scrolls_iv_oblivion_game_of_the_year_edition_deluxe_the\",\"elex\",\"elite_warriors_vietnam\",\"eliza\",\"else_heartbreak\",\"emperor_rise_of_the_middle_kingdom\",\"empire_earth_2_gold\",\"empire_earth_3\",\"empire_earth_gold_edition\",\"empires_dawn_of_the_modern_world\",\"empires_of_the_undergrowth\",\"encased_a_scifi_postapocalyptic_rpg\",\"endzone_a_world_apart\",\"endzone_a_world_apart_save_the_world_edition\",\"enigmatis_2_the_mists_of_ravenwood\",\"enigmatis_3_the_shadow_of_karkhala\",\"enigmatis_the_ghosts_of_maple_creek\",\"enter_the_gungeon\",\"epic_pinball_the_complete_collection\",\"epistory_typing_chronicles\",\"eradicator\",\"escape_from_monkey_island\",\"eschalon_book_iii\",\"etherlords_2\",\"europa_universalis\",\"europa_universalis_ii\",\"europa_universalis_iii_collection_upgrade\",\"europa_universalis_iii_complete\",\"everspace\",\"everspace_encounters\",\"evil_genius\",\"evil_islands\",\"exanima\",\"faces_of_war\",\"factorio\",\"factorio_soundtrack\",\"falcon_collection\",\"fallen_enchantress_upgrade_to_ultimate\",\"fallen_haven\",\"fallout\",\"fallout_2\",\"fallout_3_game_of_the_year_edition\",\"fallout_new_vegas_ultimate_edition\",\"fallout_tactics\",\"fantasy_general\",\"fantasy_general_ii_invasion_general_edition\",\"fantasy_general_ii_onslaught\",\"far_cry\",\"far_cry_2_fortunes_edition\",\"far_lone_sails\",\"far_lone_sails_artbook\",\"far_lone_sails_ost\",\"faster_than_light\",\"fear_2_project_origin_reborn\",\"fear_platinum\",\"felix_the_reaper\",\"felix_the_reaper_supporter_pack\",\"fell_seal_arbiters_mark\",\"fenimore_fillmore_3_skulls_of_the_toltecs\",\"fenimore_fillmore_the_westerner\",\"field_of_glory_empires\",\"field_of_glory_ii_age_of_belisarius\",\"field_of_glory_ii_rise_of_persia\",\"figment\",\"final_liberation_warhammer_epic_40000\",\"finding_paradise\",\"firewatch\",\"flashback\",\"flatout\",\"flatout_2\",\"florence\",\"flower\",\"for_the_king\",\"forager\",\"forgotten_realms_the_archives_collection_one\",\"forgotten_realms_the_archives_collection_three\",\"forgotten_realms_the_archives_collection_two\",\"forgotton_anne\",\"forgotton_anne_collectors_upgrade\",\"forsaken\",\"foundation\",\"foxtail\",\"fragile_allegiance\",\"fran_bow\",\"freddy_pharkas_frontier_pharmacist\",\"freedom_force\",\"freedom_force_vs_the_3rd_reich\",\"freespace_2\",\"freespace_expansion\",\"frostpunk\",\"frostpunk_game_of_the_year_edition\",\"frostpunk_season_pass\",\"frostpunk_the_last_autumn\",\"frostpunk_the_rifts\",\"full_throttle_remastered\",\"furi\",\"gabriel_knight_2_the_beast_within\",\"gabriel_knight_3_blood_of_the_sacred_blood_of_the_damned\",\"gabriel_knight_sins_of_the_fathers\",\"gabriel_knight_sins_of_the_fathers_20th_anniversary_edition\",\"galactic_civilizations_i_ultimate_edition\",\"galactic_civilizations_iii\",\"galactic_civilizations_iii_lost_treasures_dlc\",\"galactic_civilizations_iii_precursor_worlds\",\"galactic_civilizations_iii_star_control_heroes\",\"galactic_civilizations_iii_villains_of_star_control\",\"galaxy_trucker\",\"gangsters_organized_crime\",\"garden_flipper\",\"gato_roboto\",\"gemini_rue\",\"gex\",\"ghost_of_a_tale\",\"giana_sisters_rise_of_the_owlverlord\",\"giants_citizen_kabuto\",\"gibbous_a_cthulhu_adventure\",\"gibbous_a_cthulhu_adventure_deluxe_edition\",\"gobliiins_pack\",\"gone_home\",\"good_company\",\"goodbye_deponia\",\"gorky_17\",\"gorogoa\",\"gorogoa_soundtrack\",\"gothic\",\"gothic_2_gold_edition\",\"gothic_3\",\"grandia_ii_anniversary_edition\",\"graveyard_keeper\",\"graveyard_keeper_stranger_sins\",\"great_battles_collectors_edition\",\"greedfall\",\"grim_dawn\",\"grim_dawn_ashes_of_malmouth\",\"grim_dawn_crucible\",\"grim_dawn_forgotten_gods\",\"grim_dawn_loyalist_item_pack_2\",\"grim_dawn_loyalist_upgrade_dlc\",\"grim_fandango_remastered\",\"grimoire_heralds_of_the_winged_exemplar\",\"gris\",\"ground_control_2_operation_exodus\",\"ground_control_expansion\",\"guild_of_dungeoneering\",\"guild_of_dungeoneering_ice_cream_headaches\",\"gun\",\"hacknet\",\"hacknet_complete_edition\",\"hacknet_labyrinths\",\"hacknet_ultimate_edition\",\"hand_of_fate\",\"hard_reset_redux\",\"hard_truck_2_king_of_the_road\",\"hard_west\",\"hard_west_collectors_edition\",\"hard_west_scars_of_freedom\",\"harvester\",\"hatoful_boyfriend\",\"heart_of_china\",\"hearts_of_iron\",\"hearts_of_iron_ii_complete\",\"hearts_of_iron_iii\",\"hearts_of_iron_iii_dlc_collection\",\"heave_ho\",\"hellblade_senuas_sacrifice_pack\",\"hello_neighbor\",\"her_story\",\"heretic_kingdoms_the_inquisition\",\"heritage_of_kings_the_settlers\",\"heroes_chronicles_all_chapters\",\"heroes_of_annihilated_empires\",\"heroes_of_hammerwatch\",\"heroes_of_hammerwatch_moon_temple\",\"heroes_of_hammerwatch_pyramid_of_prophecy\",\"heroes_of_might_and_magic\",\"heroes_of_might_and_magic_2_gold_edition\",\"heroes_of_might_and_magic_3_complete_edition\",\"heroes_of_might_and_magic_4_complete\",\"heroes_of_might_and_magic_5_bundle\",\"herou_rogue_to_redemption\",\"hexplore\",\"hidden_dangerous_2_courage_under_fire\",\"hitman\",\"hitman_2_silent_assassin\",\"hitman_absolution\",\"hitman_blood_money\",\"hitman_contracts\",\"hob\",\"hocus_pocus\",\"hollow_knight\",\"hollow_knight_gods_nightmares\",\"hollow_knight_ost\",\"holy_potatoes_a_spy_story\",\"holy_potatoes_were_in_space\",\"homeworld_deserts_of_kharak\",\"homeworld_emergence\",\"homeworld_remastered_collection\",\"hot_tin_roof_the_cat_that_wore_a_fedora\",\"hotline_miami\",\"hotline_miami_2_wrong_number_digital_special_edition\",\"house_flipper\",\"human_resource_machine\",\"huniepop\",\"huniepop_deluxe_edition_upgrade\",\"i_am_not_a_monster_first_contact\",\"i_g_i_2_covert_strike\",\"i_have_no_mouth_and_i_must_scream\",\"icewind_dale_2\",\"icewind_dale_enhanced_edition\",\"ignition\",\"il_2_sturmovik_1946\",\"imperator_rome\",\"imperator_rome_magna_graecia_content_pack\",\"imperial_glory\",\"imperialism\",\"imperialism_2_the_age_of_exploration\",\"imperium_galactica\",\"imperium_galactica_ii_alliances\",\"impossible_creatures\",\"in_cold_blood\",\"in_other_waters\",\"in_other_waters_a_study_of_gliese_667cc\",\"in_other_waters_soundtrack\",\"incoming_incoming_forces\",\"independence_war_2\",\"indiana_jones_and_the_emperors_tomb\",\"indiana_jones_and_the_fate_of_atlantis\",\"indiana_jones_and_the_infernal_machine\",\"indiana_jones_and_the_last_crusade\",\"indivisible\",\"infested_planet\",\"infested_planet_planetary_campaign\",\"infested_planet_tricksters_arsenal\",\"inner_chains\",\"inside\",\"insomnia_the_ark\",\"interrogation_you_will_be_deceived\",\"interstate76\",\"into_the_breach\",\"invisible_inc_contingency_plan\",\"ion_fury\",\"iron_danger\",\"iron_storm\",\"ishar_compilation\",\"jack_orlando_a_cinematic_adventure_dc\",\"jade_empire_special_edition\",\"jagged_alliance\",\"jagged_alliance_2\",\"jagged_alliance_2_wildfire\",\"jagged_alliance_deadly_games\",\"jalopy\",\"jazz_jackrabbit_2_collection\",\"jazz_jackrabbit_collection\",\"journeyman_project_2\",\"journeyman_project_3\",\"judge_dredd_dredd_vs_death\",\"jump_king\",\"kajko_i_kokosz\",\"katana_zero\",\"ken_folletts_the_pillars_of_the_earth_season_pass\",\"kenshi\",\"kentucky_route_zero\",\"kerbal_space_program\",\"kerbal_space_program_breaking_ground\",\"kholat\",\"kim\",\"kingdom_come_deliverance\",\"kingdom_come_deliverance_a_womans_lot\",\"kingdom_come_deliverance_art_book\",\"kingdom_come_deliverance_band_of_bastards\",\"kingdom_come_deliverance_from_the_ashes\",\"kingdom_come_deliverance_ost\",\"kingdom_come_deliverance_ost_atmospheres_additionals\",\"kingdom_come_deliverance_royal_dlc_package\",\"kingdom_come_deliverance_royal_edition\",\"kingdom_come_deliverance_the_amorous_adventures_of_bold_sir_hans_capon\",\"kingdom_come_deliverance_treasures_of_the_past\",\"kingdom_rush_origins\",\"kingdom_under_fire_the_crusaders\",\"kingdoms_castles\",\"kingpin_life_of_crime\",\"kings_bounty_crossworlds_goty\",\"kings_bounty_the_legend\",\"kings_bounty_warriors_of_the_north\",\"kings_quest_1_2_3\",\"kings_quest_4_5_6\",\"kings_quest_7_8\",\"kingsway\",\"knightin\",\"knights_and_merchants_the_peasants_rebellion\",\"knightshift\",\"krush_kill_n_destroy_2_krossfire\",\"krush_kill_n_destroy_xtreme\",\"kynseed\",\"lair_of_the_clockwork_god\",\"lamplight_city\",\"lamplight_city_original_soundtrack\",\"lands_of_lore_1_2\",\"lands_of_lore_3\",\"last_express_the\",\"late_shift\",\"layers_of_fear\",\"layers_of_fear_2\",\"layers_of_fear_inheritance\",\"legacy_of_kain_blood_omen_2\",\"legacy_of_kain_defiance\",\"legacy_of_kain_soul_reaver\",\"legacy_of_kain_soul_reaver_2\",\"legend_of_grimrock\",\"legend_of_grimrock_2\",\"legend_of_heroes_trails_in_the_sky_sc_the\",\"legend_of_heroes_trails_in_the_sky_the_3rd_the\",\"legend_of_heroes_trails_of_cold_steel_the\",\"legend_of_keepers_career_of_a_dungeon_master\",\"legend_of_keepers_supporter_pack\",\"legend_of_kyrandia\",\"legend_of_kyrandia_hand_of_fate\",\"legend_of_kyrandia_malcolms_revenge\",\"legends_of_amberland_the_forgotten_crown\",\"lego_harry_potter_years_14\",\"lego_indiana_jones_the_original_adventures\",\"lego_pirates_of_the_caribbean_the_video_game\",\"leisure_suit_larry\",\"leisure_suit_larry_love_for_sail\",\"leisure_suit_larry_magna_cum_laude_uncut_and_uncensored\",\"leisure_suit_larry_reloaded\",\"leisure_suit_larry_wet_dreams_dont_dry\",\"leo_the_lion\",\"leo_the_lions_puzzles\",\"lethis_path_of_progress\",\"lichdom_battlemage\",\"lifeless_planet_premier_edition\",\"lighthouse_the_dark_being\",\"limbo\",\"line_of_sight_vietnam\",\"litil_divil\",\"little_big_adventure\",\"little_big_adventure_2\",\"little_big_workshop\",\"little_inferno\",\"little_misfortune\",\"little_nightmares_expansion_1\",\"little_nightmares_expansion_2\",\"little_nightmares_expansion_3\",\"little_nightmares_secrets_of_the_maw_expansion_pass\",\"littlewood\",\"loom\",\"lords_of_magic_special_eddition\",\"lords_of_the_fallen_game_of_the_year_edition\",\"lords_of_the_realm_3\",\"lords_of_the_realm_royal_edition\",\"lords_of_xulima_deluxe_edition\",\"lost_ember\",\"lost_horizon\",\"lost_horizon_double_pack\",\"lovecrafts_untold_stories\",\"lovely_planet\",\"lovers_in_a_dangerous_spacetime\",\"low_magic_age\",\"lula_the_sexy_empire\",\"luna_the_shadow_dust\",\"m_a_x_m_a_x_2\",\"machiavillain\",\"machinarium_collectors_edition\",\"mafia\",\"mafia_ii_directors_cut\",\"mafia_iii\",\"mages_initiation_reign_of_the_elements\",\"mages_of_mystralia\",\"magic_carpet\",\"magic_carpet_2_the_netherworlds\",\"maize\",\"majesty_2_collection\",\"majesty_gold_hd\",\"man_o_war_corsair\",\"maniac_mansion\",\"marz_tactical_base_defense\",\"masquerada_songs_and_shadows\",\"master_of_magic\",\"master_of_magic_caster_of_magic\",\"master_of_orion\",\"master_of_orion_1_2\",\"master_of_orion_collectors_edition_upgrade\",\"mdk\",\"mdk_2\",\"medal_of_honor_allied_assault_war_chest\",\"medal_of_honor_pacific_assault\",\"megaquarium\",\"megarace_1_2\",\"men_of_war_red_tide\",\"men_of_war_vietnam\",\"metal_fatigue\",\"metal_slug\",\"metal_slug_3\",\"metal_slug_x\",\"metro_2033_redux\",\"metro_last_light_redux\",\"might_and_magic_6_limited_edition\",\"might_and_magic_7_for_blood_and_honor\",\"might_and_magic_8_day_of_the_destroyer\",\"might_and_magic_9\",\"milanoir\",\"mini_metro\",\"mirrors_edge\",\"mission_critical\",\"missionforce_cyberstorm\",\"mob_rule\",\"moebius\",\"monkey_island_2_special_edition_lechucks_revenge\",\"monkey_king_master_of_the_clouds\",\"monster_bash\",\"monster_jam_steel_titans\",\"montagues_mount\",\"moonlighter\",\"moonlighter_between_dimensions\",\"moonlighter_complete_edition\",\"mortal_kombat_123\",\"mortal_kombat_4\",\"mosaic\",\"mother_russia_bleeds\",\"moto_racer\",\"moto_racer_3\",\"mount_blade\",\"mount_blade_warband\",\"mount_blade_warband_napoleonic_wars\",\"mount_blade_warband_viking_conquest\",\"mount_blade_with_fire_sword\",\"murder_by_numbers\",\"murder_by_numbers_collectors_edition\",\"mutant_year_zero_road_to_eden_deluxe_edition\",\"mutant_year_zero_road_to_eden_fan_edition_upgrade\",\"mutant_year_zero_seed_of_evil\",\"mutazione\",\"mx_vs_atv_unleashed\",\"my_friend_pedro_soundtrack\",\"my_memory_of_us\",\"my_memory_of_us_collectors_edition\",\"my_time_at_portia\",\"myst_3_exile\",\"myst_4\",\"myst_5_end_of_ages\",\"myst_masterpiece_edition\",\"nam\",\"nancy_drew_curse_of_blackmoor_manor\",\"ne_no_kami_the_two_princess_knights_of_kyoto\",\"necrovision\",\"necrovision_lost_company\",\"neighbours_from_hell_compilation\",\"neo_scavenger\",\"nethergate_resurrection\",\"neverwinter_nights_2_complete\",\"neverwinter_nights_dark_dreams_of_furiae\",\"neverwinter_nights_darkness_over_daggerford\",\"neverwinter_nights_enhanced_edition_pack\",\"neverwinter_nights_heroes_of_neverwinter\",\"neverwinter_nights_infinite_dungeons\",\"neverwinter_nights_pirates_of_the_sword_coast\",\"neverwinter_nights_tyrants_of_the_moonsea\",\"neverwinter_nights_wyvern_crown_of_cormyr\",\"nex_machina\",\"niche\",\"night_call\",\"night_call_deluxe_edition\",\"night_in_the_woods\",\"nightmare_reaper\",\"nightmares_from_the_deep_2_the_sirens_call\",\"nightmares_from_the_deep_3_davy_jones\",\"nightmares_from_the_deep_the_cursed_heart\",\"nine_parchments\",\"no_mans_sky\",\"noctropolis\",\"noita\",\"normality\",\"nova_drift\",\"nox\",\"obduction\",\"obduction_soundtrack\",\"observer\",\"oceanhorn_monster_of_uncharted_seas\",\"oddworld_abes_exoddus\",\"oddworld_abes_oddysee\",\"oddworld_munchs_oddysee\",\"oddworld_new_n_tasty\",\"oddworld_strangers_wrath\",\"offworld_trading_company\",\"ohsir_the_insult_simulator\",\"operencia_the_stolen_sun\",\"operencia_the_stolen_sun_explorers_edition\",\"opus_magnum\",\"order_of_battle_burma_road\",\"order_of_battle_morning_sun\",\"order_of_battle_rising_sun\",\"order_of_battle_sandstorm\",\"order_of_battle_us_marines\",\"order_of_battle_world_war_ii\",\"ori_and_the_blind_forest_definitive_edition\",\"orwell\",\"orwell_deluxe_edition\",\"orwell_ignorance_is_strength\",\"orwell_ignorance_is_strength_season_2_deluxe\",\"orwell_ignorance_is_strength_seasons_complete\",\"ostriv\",\"outcast\",\"outlast_2\",\"outlast_whistleblower\",\"outlaws_a_handful_of_missions\",\"outward\",\"outward_ost\",\"overcooked_2\",\"overcooked_2_campfire_cook_off\",\"overcooked_2_carnival_of_chaos\",\"overcooked_2_night_of_the_hangry_horde\",\"overcooked_2_season_pass\",\"overcooked_2_surf_n_turf\",\"overcooked_2_too_many_cooks_pack\",\"overcooked_gourmet_edition\",\"overland\",\"overload\",\"overlord_ii\",\"overlord_raising_hell\",\"pacific_general\",\"painkiller\",\"painkiller_overdose\",\"pajama_sam_vol_1\",\"pajama_sam_vol_2\",\"pandemonium\",\"pandemonium_2\",\"panzer_corps_2\",\"panzer_corps_2_general_edition\",\"panzer_corps_gold\",\"panzer_elite_se\",\"panzer_general_2\",\"panzer_general_3d_assault\",\"papers_please\",\"paradigm\",\"parkan_2\",\"parkitect\",\"parkitect_taste_of_adventure\",\"pathfinder_kingmaker_beneath_the_stolen_lands\",\"pathfinder_kingmaker_explorer_edition\",\"pathfinder_kingmaker_imperial_edition\",\"pathfinder_kingmaker_royal_ascention\",\"pathfinder_kingmaker_royal_edition\",\"pathfinder_kingmaker_season_pass\",\"pathfinder_kingmaker_the_wildcards\",\"pathfinder_kingmaker_varnholds_lot\",\"pathologic_2\",\"pathologic_classic_hd\",\"patrician_3\",\"pax_imperia_eminent_domain\",\"pc_building_simulator\",\"pc_building_simulator_nzxt_workshop\",\"perimeter_emperors_testament\",\"phantasmagoria\",\"phantasmagoria_2\",\"phantom_doctrine\",\"phantom_doctrine_deluxe_edition\",\"pharaoh_cleopatra\",\"pikuniku\",\"pilgrims\",\"pillars_of_eternity_2_game\",\"pillars_of_eternity_definitive_edition\",\"pillars_of_eternity_hero_edition\",\"pillars_of_eternity_ii_deadfire_explorers_pack\",\"pillars_of_eternity_ii_deadfire_seeker_slayer_survivor\",\"pillars_of_eternity_ii_deadfire_the_beast_of_winter\",\"pillars_of_eternity_ii_deadfire_the_forgotten_sanctum\",\"pillars_of_eternity_the_white_march_expansion_pass\",\"pillars_of_eternity_the_white_march_part_1\",\"pillars_of_eternity_the_white_march_part_2\",\"pilot_brothers\",\"pilot_brothers_2\",\"pilot_brothers_3_back_side_of_the_earth\",\"pinball_world\",\"pine\",\"pinstripe\",\"pinstripe_original_soundtrack\",\"pirates_cove_adventure_pack\",\"pirates_gold_plus\",\"pixeljunk_monsters_hd\",\"pizza_connection_2\",\"plane_mechanic_simulator\",\"planescape_torment_enhanced_edition\",\"planet_alpha\",\"planet_alpha_digital_deluxe\",\"planetbase\",\"pod_gold\",\"police_quest_1_2_3_4\",\"police_quest_swat_1_2\",\"populous\",\"populous_2\",\"populous_the_beginning\",\"port_royale\",\"port_royale_2\",\"post_mortem\",\"postal_2\",\"postal_2_paradise_lost\",\"postal_4_no_regerts\",\"praetorians\",\"predynastic_egypt\",\"prehistorik_12\",\"prince_of_persia\",\"prince_of_persia_the_sands_of_time\",\"prince_of_persia_the_two_thrones\",\"prince_of_persia_warrior_within\",\"prison_architect\",\"prison_architect_psych_ward_wardens_edition\",\"privateer_2_the_darkening\",\"pro_pinball_big_race_usa\",\"pro_pinball_timeshock\",\"project_eden\",\"project_highrise\",\"project_highrise_architects_edition\",\"project_hospital\",\"project_warlock\",\"project_zomboid\",\"psychonauts\",\"pyre\",\"pyre_original_soundtrack\",\"quake_4\",\"quake_ii_quad_damage\",\"quake_iii_gold\",\"quake_the_offering\",\"quern_undying_thoughts\",\"quest_for_glory\",\"quest_for_infamy\",\"rage_of_mages\",\"rage_of_mages_ii_necromancer\",\"railroad_tycoon_2\",\"railroad_tycoon_3\",\"railway_empire_germany\",\"rain_world\",\"randals_monday\",\"raptor_call_of_the_shadows_2010_edition\",\"rayman_2_the_great_escape\",\"rayman_3_hoodlum_havoc\",\"rayman_forever\",\"rayman_origins\",\"rayman_raving_rabbids\",\"reah_face_the_unknown\",\"real_myst_masterpiece_edition\",\"realms_of_arkania_1_2\",\"realms_of_arkania_3\",\"realms_of_chaos\",\"realms_of_the_haunting\",\"realpolitiks\",\"realpolitiks_new_power\",\"rebel_galaxy\",\"red_baron_pack\",\"red_faction\",\"red_faction_armageddon\",\"red_faction_armageddon_path_to_war\",\"red_faction_guerrilla_remarstered\",\"redneck_rampage_collection\",\"redout_solar_challenge_edition\",\"regalia_of_men_and_monarchs\",\"regalia_royal_edition\",\"regions_of_ruin\",\"reigns_game_of_thrones\",\"relegion\",\"restaurant_empire\",\"return_of_the_obra_dinn\",\"return_to_castle_wolfenstein\",\"return_to_krondor\",\"return_to_mysterious_island\",\"return_to_zork\",\"reus\",\"revenant\",\"richard_alice\",\"rimworld\",\"rimworld_royalty\",\"rise_of_the_dragon\",\"rise_of_the_triad__dark_war\",\"risen\",\"risen_2_dark_waters_gold_edition\",\"risen_3_titan_lords_complete_edition\",\"riven_the_sequel_to_myst\",\"robin_hood\",\"rogue_legacy\",\"rogue_trooper\",\"rogue_wizards\",\"rollercoaster_tycoon_2\",\"rollercoaster_tycoon_deluxe\",\"ruiner\",\"ruiner_soundtrack\",\"runaway_2_the_dream_of_the_turtle\",\"runaway_3_a_twist_of_fate\",\"runaway_a_road_adventure\",\"rune_classic\",\"rusty_lake_hotel\",\"rusty_lake_roots\",\"saboteur\",\"sacred_2_gold\",\"sacred_gold\",\"saints_row_2\",\"saints_row_iv_game_of_the_century_edition\",\"saints_row_the_third_the_full_package\",\"sally_face\",\"sam_max_hit_the_road\",\"samorost2\",\"samorost_3\",\"samorost_3_cosmic_edition\",\"sanctuaryrpg_black_edition\",\"sanitarium\",\"schizm\",\"screamer\",\"screamer_2\",\"screencheat\",\"sea_dogs\",\"sea_dogs_caribbean_tales\",\"sea_dogs_city_of_abandoned_ships\",\"seasons_after_fall\",\"secret_agent\",\"secret_files_2_puritas_cordis\",\"secret_files_3\",\"secret_files_sam_peters\",\"secret_files_tunguska\",\"sengoku_jidai_gold\",\"sensible_world_of_soccer_9697\",\"septerra_core_legacy_of_the_creator\",\"serial_cleaner\",\"serious_sam_the_first_encounter\",\"serious_sam_the_second_encounter\",\"seven_kingdoms_2\",\"seven_the_days_long_gone\",\"seven_the_days_long_gone_digital_collectors_edition\",\"shadow_man\",\"shadow_warrior_classic_redux\",\"shadow_watch\",\"shadowgate_special_edition\",\"shadowrun_dragonfall_directors_cut\",\"shadowrun_hong_kong_extended_edition\",\"shadowrun_hong_kong_extended_edition_deluxe\",\"shadowrun_returns\",\"shadwen\",\"shardlight\",\"sheltered\",\"shenzhen_io\",\"sherlock_holmes_and_the_hound_of_the_baskervilles\",\"sherlock_holmes_crimes_and_punishments\",\"sherlock_holmes_nemesis_remastered\",\"sherlock_holmes_secret_of_the_silver_earring\",\"sherlock_holmes_the_awakened_remastered\",\"sherlock_holmes_the_devils_daughter\",\"sherlock_holmes_versus_jack_the_ripper\",\"shivers\",\"shogo_mobile_armor_division\",\"shortest_trip_to_earth\",\"shortest_trip_to_earth_supporters_pack\",\"shovel_knight\",\"shovel_knight_shovel_of_hope\",\"shovel_knight_showdown\",\"sid_meiers_alpha_centauri\",\"sid_meiers_civilization_iii_complete\",\"sid_meiers_civilization_iv_the_complete_edition\",\"sid_meiers_colonization\",\"sid_meiers_covert_action\",\"sid_meiers_pirates\",\"sid_meiers_railroads\",\"sigma_theory_global_cold_war\",\"silence\",\"silent_hunter_2\",\"silent_service_12\",\"silent_storm_gold\",\"silver\",\"simcity_2000_special_edition\",\"simcity_3000\",\"simcity_4_deluxe_edition\",\"simon_the_sorcerer\",\"simon_the_sorcerer_2\",\"simon_the_sorcerer_3d\",\"simpleplanes\",\"sin_gold\",\"sins_of_a_solar_empire_rebellion_outlaw_sectors_dlc\",\"sins_of_a_solar_empire_rebellion_ultimate_edition\",\"skulls_of_the_shogun\",\"sky_cannoneer\",\"slay_the_spire\",\"slime_rancher\",\"slipstream\",\"slipstream_5000\",\"smart_city_plan\",\"sniper_elite_berlin_1945\",\"sniper_ghost_warrior\",\"sniper_ghost_warrior_2\",\"sniper_ghost_warrior_3_gold_edition\",\"sniper_ghost_warrior_3_gold_edition_upgrade\",\"soldier_of_fortune_ii_double_helix_gold_edition\",\"soldier_of_fortune_payback\",\"soldier_of_fortune_platinum_edition\",\"soldiers_heroes_of_world_war_ii\",\"sorcerer_king_rivals\",\"soul_saga\",\"soulbringer\",\"space_colony_hd\",\"space_quest_1_2_3\",\"space_quest_4_5_6\",\"space_rangers_quest\",\"spacecom\",\"spec_ops_the_line\",\"speedball_2_hd\",\"spellcasting_123\",\"spellforce_2_anniversary_edition\",\"spellforce_3_soul_harvest\",\"spellforce_3_soul_harvest_digital_extras\",\"spellforce_platinum\",\"spelunky\",\"sphinx_and_the_cursed_mummy\",\"splinter_cell\",\"spore_collection\",\"stalker_call_of_pripyat\",\"stalker_clear_sky\",\"stalker_shadow_of_chernobyl\",\"star_control_i_ii\",\"star_control_iii\",\"star_control_origins\",\"star_control_origins_earth_rising_season_pass\",\"star_trek_25th_anniversary\",\"star_trek_judgment_rites\",\"star_trek_starfleet_academy\",\"star_trek_starfleet_command_gold_edition\",\"star_wars_battlefront\",\"star_wars_battlefront_ii\",\"star_wars_dark_forces\",\"star_wars_empire_at_war_gold_pack\",\"star_wars_episode_i_racer\",\"star_wars_galactic_battlegrounds_saga\",\"star_wars_jedi_knight_dark_forces_ii\",\"star_wars_jedi_knight_ii_jedi_outcast\",\"star_wars_jedi_knight_jedi_academy\",\"star_wars_knights_of_the_old_republic\",\"star_wars_knights_of_the_old_republic_ii_the_sith_lords\",\"star_wars_rebellion\",\"star_wars_republic_commando\",\"star_wars_rogue_squadron_3d\",\"star_wars_shadows_of_the_empire\",\"star_wars_the_force_unleashed_ii\",\"star_wars_the_force_unleashed_ultimate_sith_edition\",\"star_wars_tie_fighter_special_edition\",\"star_wars_xwing_alliance\",\"star_wars_xwing_special_edition\",\"star_wars_xwing_vs_tie_fighter\",\"star_wolves_3_civil_war\",\"starbound\",\"stardew_valley\",\"starflight_1_2\",\"starpoint_gemini_2\",\"starpoint_gemini_warlords\",\"startopia\",\"stasis\",\"stasis_deluxe_edition\",\"state_of_mind\",\"staxel\",\"steamworld_dig\",\"steamworld_dig_2\",\"steel_division_2\",\"steel_division_2_total_conflict_edition\",\"steel_rats\",\"stellar_tactics\",\"stellaris\",\"stellaris_ancient_relics_story_pack\",\"stellaris_distant_stars_story_pack\",\"stellaris_federations\",\"stellaris_galaxy_edition\",\"stellaris_humanoids_species_pack\",\"stellaris_leviathans_story_pack\",\"stellaris_lithoids_species_pack\",\"stellaris_megacorp\",\"stellaris_plantoids_species_pack\",\"stellaris_synthetic_dawn_story_pack\",\"stellaris_utopia\",\"still_life\",\"still_life_2\",\"still_there\",\"stonekeep\",\"strafe\",\"stranglehold\",\"strategic_command_world_war_i\",\"street_fighter_alpha_2\",\"streets_of_rogue\",\"strife_veteran_edition\",\"stronghold\",\"stronghold_crusader\",\"stronghold_crusader_2_special_edition\",\"stronghold_crusader_2_the_emperor_the_hermit\",\"stronghold_crusader_2_the_princess_the_pig\",\"stronghold_crusader_2_the_templar_the_duke\",\"stygian_reign_of_the_old_ones\",\"styx_master_of_shadows\",\"submarine_titans\",\"sudden_strike_4\",\"sudden_strike_4_africa_desert_war\",\"sudden_strike_4_complete_collection\",\"sudden_strike_4_road_to_dunkirk\",\"sudden_strike_gold\",\"sudeki\",\"sunless_sea\",\"sunless_sea_zubmariner\",\"sunless_skies\",\"superhero_league_of_hoboken\",\"superhot\",\"supraland\",\"surviving_mars_green_planet\",\"surviving_mars_marsvision_song_contest\",\"surviving_mars_project_laika\",\"surviving_mars_season_pass\",\"surviving_mars_stellaris_dome_set\",\"swat_3_tactical_game_of_the_year_edition\",\"swat_4_gold_edition\",\"swords_souls_neverseen\",\"syberia\",\"syberia_2\",\"syberia_3_the_complete_journey\",\"symmetry\",\"syndicate\",\"syndicate_wars\",\"synthetik_legion_rising\",\"synthetik_supporter_pack\",\"system_shock_2\",\"system_shock_enhanced_edition\",\"tacoma_game\",\"tales_of_majeyal_ashes_of_urhrok\",\"tales_of_majeyal_embers_of_rage\",\"tales_of_majeyal_forbidden_cults\",\"tangledeep_legend_of_shara_pack\",\"tangledeep_legend_of_shara_soundtrack\",\"tanglewoodr\",\"technobabylon\",\"telepath_tactics\",\"telling_lies\",\"tempest_pirate_city\",\"terminator_resistance\",\"terra_nova_strike_force_centauri\",\"terraria\",\"tesla_effect_a_tex_murphy_adventure\",\"testament_of_sherlock_holmes_the\",\"tex_murphy_1_2\",\"tex_murphy_overseer\",\"tex_murphy_the_pandora_directive\",\"tex_murphy_under_a_killing_moon\",\"the_11th_hour\",\"the_13th_doll_a_fan_game_of_the_7th_guest\",\"the_7th_guest_25th_anniversary_edition\",\"the_adventures_of_shuggy\",\"the_adventures_of_willy_beamish\",\"the_bards_tale_trilogy\",\"the_book_of_unwritten_tales\",\"the_book_of_unwritten_tales_2\",\"the_book_of_unwritten_tales_2_almanac_edition\",\"the_book_of_unwritten_tales_critter_chronicles\",\"the_chaos_engine\",\"the_colonels_bequest\",\"the_coma_2_vicious_sisters_deluxe_edition\",\"the_council\",\"the_curse_of_monkey_island\",\"the_dagger_of_amon_ra\",\"the_dame_was_loaded\",\"the_darkside_detective\",\"the_dig\",\"the_elder_scrolls_adventures_redguard\",\"the_elder_scrolls_iii_morrowind_goty_edition\",\"the_escapists_2_game_of_the_year_edition\",\"the_feeble_files\",\"the_final_station\",\"the_flame_in_the_flood\",\"the_friends_of_ringo_ishikawa\",\"the_great_perhaps\",\"the_guild_2_renaissance\",\"the_guild_3\",\"the_guild_gold_edition\",\"the_hugo_trilogy\",\"the_incredible_machine_mega_pack\",\"the_king_of_fighters_2002\",\"the_king_of_fighters_2002_unlimited_match\",\"the_king_of_fighters_xiv_galaxy_edition\",\"the_king_of_fighters_xiv_galaxy_edition_upgrade_pack_1\",\"the_king_of_fighters_xiv_galaxy_edition_upgrade_pack_2\",\"the_last_tinker_city_of_colors\",\"the_legend_of_heroes_trails_in_the_sky\",\"the_legend_of_heroes_trails_of_cold_steel_ii\",\"the_legend_of_heroes_trails_of_cold_steel_ii_all_casual_clothes\",\"the_legend_of_heroes_trails_of_cold_steel_iii_consumable_starter_set\",\"the_legend_of_heroes_trails_of_cold_steel_iii_consumable_value_set\",\"the_legend_of_heroes_trails_of_cold_steel_iii_digital_limited_edition\",\"the_legend_of_heroes_trails_of_cold_steel_iii_standard_cosmetic_set\",\"the_little_acre\",\"the_long_journey_home\",\"the_longest_journey\",\"the_longing\",\"the_manhole_masterpiece_edition\",\"the_messenger\",\"the_mystery_of_the_druids\",\"the_nations_gold_edition\",\"the_next_big_thing\",\"the_occupation\",\"the_pedestrian\",\"the_quest_deluxe_edition\",\"the_samaritan_paradox\",\"the_secret_of_monkey_island_special_edition\",\"the_settlers_2_10th_anniversary\",\"the_settlers_2_gold_edition\",\"the_settlers_3_ultimate_collection\",\"the_settlers_4_gold_edition\",\"the_settlers_rise_of_an_empire_gold_edition\",\"the_sexy_brutale\",\"the_shivah\",\"the_suffering\",\"the_suffering_ties_that_bind\",\"the_suicide_of_rachel_foster\",\"the_surge_2_premium_edition\",\"the_surge_augmented_edition\",\"the_swapper\",\"the_temple_of_elemental_evil\",\"the_textorcist_the_story_of_ray_bibbia\",\"the_tiny_bang_story\",\"the_ultimate_doom\",\"the_universim\",\"the_vanishing_of_ethan_carter\",\"the_way\",\"the_whispered_world_special_edition\",\"the_witcher\",\"the_witcher_2\",\"the_witcher_3_wild_hunt\",\"the_witcher_3_wild_hunt_expansion_pass\",\"the_witcher_3_wild_hunt_game_of_the_year_edition\",\"the_witcher_3_wild_hunt_hearts_of_stone\",\"the_witchs_house_mv\",\"the_witness\",\"the_zork_anthology\",\"thea_2_the_shattering\",\"thea_the_awakening\",\"theme_hospital\",\"theme_park\",\"they_are_billions\",\"thief_2_the_metal_age\",\"thief_3\",\"thief_gold\",\"thief_simulator\",\"thimbleweed_park\",\"this_war_of_mine\",\"this_war_of_mine_complete_edition\",\"this_war_of_mine_stories_fading_embers\",\"this_war_of_mine_stories_fathers_promise\",\"this_war_of_mine_stories_season_pass\",\"this_war_of_mine_stories_the_last_broadcast\",\"this_war_of_mine_the_little_ones\",\"throne_of_darkness\",\"thronebreaker_the_witcher_tales\",\"through_the_ages\",\"through_the_ages_new_leaders_wonders\",\"thunderscape\",\"time_commando\",\"time_gentlemen_please_ben_there_dan_that\",\"timelapse\",\"tis100\",\"titan_quest_anniversary_edition\",\"titan_quest_atlantis\",\"titan_quest_ragnarok\",\"titanic_adventure_out_of_time\",\"titus_the_fox_to_marrakech_and_back\",\"to_the_moon\",\"tom_clancys_ghost_recon\",\"tom_clancys_rainbow_six\",\"tomb_raider_123\",\"tomb_raider_the_angel_of_darkness\",\"tomb_raider_the_last_revelation_chronicles\",\"toonstruck\",\"torchlight\",\"torchlight_ii\",\"toren\",\"toren_deluxe_edition\",\"torins_passage\",\"torment_tides_of_numenera\",\"torment_tides_of_numenera_immortal_edition\",\"torment_tides_of_numenera_immortal_edition_content\",\"torment_tides_of_numenera_legacy_edition\",\"torment_tides_of_numenera_legacy_edition_content\",\"total_anihilation_commander_pack\",\"total_annihilation_kingdoms\",\"total_overdose_a_gunslingers_tale_in_mexico\",\"tower_57\",\"tower_of_time\",\"towerfall_ascension\",\"towerfall_ascension_dark_world\",\"train_valley\",\"train_valley_2\",\"train_valley_2_passenger_flow\",\"transistor\",\"transistor_soundtrack\",\"transport_fever_2\",\"tri\",\"tri_deluxe_edition\",\"tri_original_soundtrack_artbook\",\"tron_20\",\"tropico_3_gold_edition\",\"tropico_4\",\"tropico_4_complete_dlc_pack\",\"tropico_6\",\"tropico_6_el_prez_edition\",\"tropico_reloaded\",\"truberbrook\",\"true_fear_forsaken_souls\",\"turmoil\",\"turok_2_seeds_of_evil\",\"two_worlds\",\"two_worlds_ii_call_of_the_tenebrae_dlc\",\"tyranny_commander_edition\",\"tyranny_gold_edition\",\"tyranny_official_soundtrack_deluxe_edition\",\"tyranny_tales_from_the_tiers\",\"tzar_the_burden_of_the_crown\",\"ufo_aftermath\",\"ufo_aftershock\",\"ultima_1_2_3\",\"ultima_456\",\"ultima_7_complete\",\"ultima_8_gold_edition\",\"ultima_9_ascension\",\"ultima_underworld_1_2\",\"ultimate_fishing_simulator\",\"ultimate_fishing_simulator_greenland_dlc\",\"ultimate_general_civil_war\",\"ultimate_general_gettysburg\",\"unavowed\",\"underrail\",\"underrail_expedition\",\"undertale\",\"unepic\",\"unforeseen_incidents\",\"unforeseen_incidents_artbook\",\"universe_sandbox\",\"unreal_2_the_awakening_se\",\"unreal_gold\",\"unreal_tournament_2004_ece\",\"unreal_tournament_goty\",\"uplink_hacker_elite\",\"urtuk_the_desolation\",\"uru_complete_chronicles\",\"va11_halla\",\"valhalla_hills\",\"valhalla_hills_twohorned_helmet_edition\",\"vambrace_cold_soul\",\"vampire_the_masquerade_bloodlines\",\"vampire_the_masquerade_bloodlines_2_blood_moon_edition\",\"vampire_the_masquerade_redemption\",\"vampyr_the_hunters_heirlooms\",\"vangers\",\"vaporum\",\"venetica\",\"venom_codename_outbreak\",\"victor_vran\",\"victoria_complete\",\"victoria_ii_heart_of_darkness\",\"victory_at_sea\",\"victory_at_sea_pacific\",\"virginia\",\"visage\",\"void_bastards\",\"void_bastards_bang_tydy\",\"void_the\",\"wanderlust_travel_stories\",\"wanderlust_travel_stories_soundtrack\",\"wandersong\",\"war_for_the_overworld\",\"war_for_the_overworld_heart_of_gold\",\"war_for_the_overworld_my_pet_dungeon\",\"war_for_the_overworld_the_ultimate_edition\",\"war_for_the_overworld_the_under_games\",\"war_for_the_overworld_underlord_edition\",\"war_for_the_overworld_worker_skin_collection\",\"war_wind\",\"war_wind_ii_human_onslaught\",\"warcraft_2_battlenet_edition\",\"warcraft_bundle\",\"warcraft_orcs_and_humans\",\"warhammer_40000_chaos_gate\",\"warhammer_40000_fire_warrior\",\"warhammer_40000_gladius_tau\",\"warhammer_40000_mechanicus\",\"warhammer_40000_mechanicus_heretek\",\"warhammer_40000_mechanicus_heretek_edition\",\"warhammer_40000_mechanicus_omnissiah_edition\",\"warhammer_40000_sanctus_reach\",\"warhammer_40000_sanctus_reach_horrors_of_the_warp\",\"warhammer_40000_sanctus_reach_legacy_of_the_weirdboy\",\"warhammer_40000_sanctus_reach_sons_of_cadia\",\"warhammer_mark_of_chaos_gold_edition\",\"warhammer_shadow_of_the_horned_rat\",\"warlords_battlecry\",\"warlords_battlecry_2\",\"warlords_battlecry_3\",\"warlords_i_ii\",\"warlords_iii_darklords_rising\",\"warrior_kings\",\"warsaw\",\"wasteland_2_directors_cut_digital_classic_edition\",\"wasteland_remastered\",\"wasteland_the_classic_original\",\"we_are_the_dwarves\",\"we_happy_few_deluxe_edition\",\"we_the_revolution\",\"weedcraft_inc\",\"west_of_loathing\",\"west_of_loathing_reckonin_at_gun_manor\",\"westerado_double_barreled\",\"westport_independent_the\",\"what_remains_of_edith_finch\",\"whispers_of_a_machine\",\"whispers_of_a_machine_blue_edition\",\"wing_commander_1_2\",\"wing_commander_3_heart_of_the_tiger\",\"wing_commander_4_the_price_of_freedom\",\"wing_commander_5_prophecy\",\"wing_commander_academy\",\"wing_commander_armada\",\"wing_commander_privateer\",\"wings_of_prey_complete\",\"witcher_3_wild_hunt_the_blood_and_wine_pack\",\"witcher_adventure_game\",\"wizard_of_legend\",\"wizardry_6_7\",\"wizardry_8\",\"wizardry_labyrinth_of_lost_souls\",\"wizards_warriors\",\"wolfenstein_3d_and_spear_of_destiny\",\"wolfenstein_the_new_order\",\"wolfenstein_the_old_blood\",\"wolfenstein_the_two_pack\",\"world_in_conflict_complete_edition\",\"world_of_horror\",\"worms_2\",\"worms_armageddon\",\"worms_forts_under_siege\",\"worms_united\",\"worms_wmd\",\"worms_world_party_remastered\",\"wrath_aeon_of_ruin\",\"x2_the_threat\",\"x3_reunion\",\"x3_terran_war_pack\",\"x4_foundations\",\"x4_foundations_collectors_edition\",\"x4_split_vendetta\",\"x4_split_vendetta_soundtrack\",\"x_gold\",\"xanadu_next\",\"xcom_2_reinforcement_pack\",\"xcom_2_resistance_warrior_pack\",\"xcom_2_war_of_the_chosen\",\"xcom_2_war_of_the_chosen_tactical_legacy_pack\",\"xcom_apocalypse\",\"xcom_enemy_unknown_complete_pack\",\"xcom_terror_from_the_deep\",\"xcom_ufo_defense\",\"xenonauts\",\"xiii\",\"yes_your_grace\",\"yes_your_grace_soundtrack\",\"yokus_island_express\",\"ys_i_ii_chronicles\",\"ys_memories_of_celceta\",\"ys_origin\",\"z\",\"zafehouse_diaries\",\"zak_mckracken_and_the_alien_mindbenders\",\"zeus_poseidon\",\"zork_grand_inquisitor\",\"zork_nemesis_the_forbidden_lands\",\"zwei_the_arges_adventure\"],\"x\":{\"__ndarray__\":\"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\",\"dtype\":\"float32\",\"shape\":[1691]},\"y\":{\"__ndarray__\":\"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\",\"dtype\":\"float32\",\"shape\":[1691]}},\"selected\":{\"id\":\"2195\"},\"selection_policy\":{\"id\":\"2196\"}},\"id\":\"2078\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"2086\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"2096\",\"type\":\"PanTool\"}],\"root_ids\":[\"2079\"]},\"title\":\"Bokeh Application\",\"version\":\"2.0.1\"}};\n", " var render_items = [{\"docid\":\"057b5c96-0801-4fba-8a90-b19de38df97a\",\"root_ids\":[\"2079\"],\"roots\":{\"2079\":\"c6075ecb-564c-4149-8b0b-be802842c101\"}}];\n", " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", "\n", " }\n", " if (root.Bokeh !== undefined) {\n", " embed_document(root);\n", " } else {\n", " var attempts = 0;\n", " var timer = setInterval(function(root) {\n", " if (root.Bokeh !== undefined) {\n", " clearInterval(timer);\n", " embed_document(root);\n", " } else {\n", " attempts++;\n", " if (attempts > 100) {\n", " clearInterval(timer);\n", " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", " }\n", " }\n", " }, 10, root)\n", " }\n", "})(window);" ], "application/vnd.bokehjs_exec.v0+json": "" }, "metadata": { "application/vnd.bokehjs_exec.v0+json": { "id": "2079" } }, "output_type": "display_data" } ], "source": [ "import umap\n", "import umap.plot\n", "\n", "def metric(a, b):\n", " return similarity(id_to_slug[int(a[0])], id_to_slug[int(b[0])])\n", "\n", "\n", "games_reviewed = list(sorted(reviews))\n", "games_ids = [[i] for i, _ in enumerate(games_reviewed)]\n", "slug_to_game = {game['slug']: game for game in games}\n", "id_to_slug = {i: slug for i, slug in enumerate(games_reviewed)}\n", "categories = [slug_to_game[slug]['category'] for slug in games_reviewed]\n", "\n", "mapper = umap.UMAP(metric=metric, random_state=30).fit(games_ids)\n", "\n", "umap.plot.output_notebook()\n", "p = umap.plot.interactive(mapper, labels=categories, hover_data={\"category\": categories, 'slugs': games_reviewed})\n", "umap.plot.show(p)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 4 }