From ad6a9538ca984dcec2943138575286e54691ebae Mon Sep 17 00:00:00 2001 From: Flegma Date: Thu, 9 Jul 2026 14:05:49 +0200 Subject: [PATCH 1/9] feature: add anti_wallhack option and per-map active status columns --- .../down.sql | 2 + .../up.sql | 2 + .../down.sql | 2 + .../up.sql | 3 + test/anti-wallhack.spec.ts | 61 +++++++++++++++++++ 5 files changed, 70 insertions(+) create mode 100644 hasura/migrations/default/1870000000000_alter_table_public_match_options_add_column_anti_wallhack/down.sql create mode 100644 hasura/migrations/default/1870000000000_alter_table_public_match_options_add_column_anti_wallhack/up.sql create mode 100644 hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/down.sql create mode 100644 hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/up.sql create mode 100644 test/anti-wallhack.spec.ts diff --git a/hasura/migrations/default/1870000000000_alter_table_public_match_options_add_column_anti_wallhack/down.sql b/hasura/migrations/default/1870000000000_alter_table_public_match_options_add_column_anti_wallhack/down.sql new file mode 100644 index 00000000..a2f295bf --- /dev/null +++ b/hasura/migrations/default/1870000000000_alter_table_public_match_options_add_column_anti_wallhack/down.sql @@ -0,0 +1,2 @@ +alter table "public"."match_options" + drop column if exists "anti_wallhack"; diff --git a/hasura/migrations/default/1870000000000_alter_table_public_match_options_add_column_anti_wallhack/up.sql b/hasura/migrations/default/1870000000000_alter_table_public_match_options_add_column_anti_wallhack/up.sql new file mode 100644 index 00000000..8b09ba3d --- /dev/null +++ b/hasura/migrations/default/1870000000000_alter_table_public_match_options_add_column_anti_wallhack/up.sql @@ -0,0 +1,2 @@ +alter table "public"."match_options" + add column if not exists "anti_wallhack" boolean not null default true; diff --git a/hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/down.sql b/hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/down.sql new file mode 100644 index 00000000..aa76e7fb --- /dev/null +++ b/hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/down.sql @@ -0,0 +1,2 @@ +alter table "public"."match_maps" + drop column if exists "anti_wallhack_active"; diff --git a/hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/up.sql b/hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/up.sql new file mode 100644 index 00000000..ee5518f7 --- /dev/null +++ b/hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/up.sql @@ -0,0 +1,3 @@ +alter table "public"."match_maps" + add column if not exists "anti_wallhack_active" boolean + null; diff --git a/test/anti-wallhack.spec.ts b/test/anti-wallhack.spec.ts new file mode 100644 index 00000000..1bffac20 --- /dev/null +++ b/test/anti-wallhack.spec.ts @@ -0,0 +1,61 @@ +import { PostgresService } from "./../src/postgres/postgres.service"; +import { Fixtures } from "./utils/fixtures"; +import { + bootMigratedDb, + seedRegionWithServer, + SqlTestDb, +} from "./utils/sql-test-db"; + +// Verifies the anti-wallhack migrations: match_options.anti_wallhack defaults +// to true (existing rows become protected) and match_maps.anti_wallhack_active +// is nullable (null = never reported by the game server plugin). +describe("anti-wallhack columns (SQL-driven)", () => { + let db: SqlTestDb; + let postgres: PostgresService; + let fx: Fixtures; + + beforeAll(async () => { + db = await bootMigratedDb("AntiWallhackTest"); + postgres = db.postgres; + fx = new Fixtures(postgres); + await seedRegionWithServer(postgres, "TestA", 27015); + await seedRegionWithServer(postgres, "TestB", 27016); + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + it("defaults match_options.anti_wallhack to true", async () => { + const { poolId } = await fx.mapPool(1, { offset: 0 }); + const match = await fx.match({ mapPoolId: poolId }); + + const rows = await postgres.query>( + "SELECT anti_wallhack FROM match_options WHERE id = $1", + [match.options_id], + ); + + expect(rows).toHaveLength(1); + expect(rows[0].anti_wallhack).toBe(true); + }); + + it("declares match_maps.anti_wallhack_active as nullable boolean", async () => { + const rows = await postgres.query< + Array<{ + data_type: string; + is_nullable: string; + column_default: string | null; + }> + >( + `SELECT data_type, is_nullable, column_default + FROM information_schema.columns + WHERE table_name = 'match_maps' + AND column_name = 'anti_wallhack_active'`, + ); + + expect(rows).toHaveLength(1); + expect(rows[0].data_type).toBe("boolean"); + expect(rows[0].is_nullable).toBe("YES"); + expect(rows[0].column_default).toBeNull(); + }); +}); From 9e29916f1dece69a68a339f48513d677037f5f8a Mon Sep 17 00:00:00 2001 From: Flegma Date: Thu, 9 Jul 2026 14:14:52 +0200 Subject: [PATCH 2/9] feature: expose anti_wallhack columns through hasura permissions --- .../metadata/databases/default/tables/public_match_maps.yaml | 1 + .../databases/default/tables/public_match_options.yaml | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/hasura/metadata/databases/default/tables/public_match_maps.yaml b/hasura/metadata/databases/default/tables/public_match_maps.yaml index df7afe65..dc7e96b0 100644 --- a/hasura/metadata/databases/default/tables/public_match_maps.yaml +++ b/hasura/metadata/databases/default/tables/public_match_maps.yaml @@ -152,6 +152,7 @@ select_permissions: - lineup_1_side - lineup_2_side - status + - anti_wallhack_active - created_at - ended_at - started_at diff --git a/hasura/metadata/databases/default/tables/public_match_options.yaml b/hasura/metadata/databases/default/tables/public_match_options.yaml index 24573263..1473193d 100644 --- a/hasura/metadata/databases/default/tables/public_match_options.yaml +++ b/hasura/metadata/databases/default/tables/public_match_options.yaml @@ -54,6 +54,7 @@ insert_permissions: - coaches - default_models - knife_round + - anti_wallhack - map_pool_id - map_veto - match_mode @@ -80,6 +81,7 @@ insert_permissions: - coaches - default_models - knife_round + - anti_wallhack - map_pool_id - map_veto - mr @@ -104,6 +106,7 @@ select_permissions: - default_models - id - knife_round + - anti_wallhack - map_pool_id - map_veto - match_mode @@ -132,6 +135,7 @@ update_permissions: - coaches - default_models - knife_round + - anti_wallhack - map_pool_id - map_veto - match_mode @@ -191,6 +195,7 @@ update_permissions: - coaches - default_models - knife_round + - anti_wallhack - map_pool_id - map_veto - mr From 5bb4e7d4619d14d626dc744db09bed01818f8240 Mon Sep 17 00:00:00 2001 From: Flegma Date: Thu, 9 Jul 2026 14:38:34 +0200 Subject: [PATCH 3/9] feature: seed anti_wallhack_enabled kill switch and regenerate types --- generated/index.ts | 2 +- generated/schema.graphql | 202 +++++++++++++++++------------------ src/hasura/hasura.service.ts | 6 ++ 3 files changed, 107 insertions(+), 103 deletions(-) diff --git a/generated/index.ts b/generated/index.ts index b4936677..e00cc128 100644 --- a/generated/index.ts +++ b/generated/index.ts @@ -35,7 +35,7 @@ export interface Client { export const createClient = function (options?: ClientOptions): Client { return createClientOriginal({ - url: 'http://hasura:8080/v1/graphql', + url: 'http://localhost:58081/v1/graphql', ...options, queryRoot: typeMap.Query!, diff --git a/generated/schema.graphql b/generated/schema.graphql index 2c2b79e7..cb64d432 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -2690,6 +2690,11 @@ input draft_game_picks_bool_exp { unique or primary key constraints on table "draft_game_picks" """ enum draft_game_picks_constraint { + """ + unique or primary key constraint on columns "draft_game_id", "picked_steam_id" + """ + draft_game_picks_draft_game_id_picked_steam_id_key + """ unique or primary key constraint on columns "id" """ @@ -3176,6 +3181,11 @@ input draft_game_players_bool_exp { unique or primary key constraints on table "draft_game_players" """ enum draft_game_players_constraint { + """ + unique or primary key constraint on columns "draft_game_id", "lineup" + """ + draft_game_players_captain_lineup_key + """ unique or primary key constraint on columns "draft_game_id", "steam_id" """ @@ -3673,7 +3683,6 @@ type draft_games { ): draft_game_players_aggregate! regions: [String!]! require_approval: Boolean! - scheduled_at: timestamptz status: e_draft_game_status_enum! """An object relationship""" @@ -3828,7 +3837,6 @@ input draft_games_bool_exp { players_aggregate: draft_game_players_aggregate_bool_exp regions: String_array_comparison_exp require_approval: Boolean_comparison_exp - scheduled_at: timestamptz_comparison_exp status: e_draft_game_status_enum_comparison_exp team_1: teams_bool_exp team_1_id: uuid_comparison_exp @@ -3842,6 +3850,11 @@ input draft_games_bool_exp { unique or primary key constraints on table "draft_games" """ enum draft_games_constraint { + """ + unique or primary key constraint on columns "invite_code" + """ + draft_games_invite_code_key + """ unique or primary key constraint on columns "id" """ @@ -3894,7 +3907,6 @@ input draft_games_insert_input { players: draft_game_players_arr_rel_insert_input regions: [String!] require_approval: Boolean - scheduled_at: timestamptz status: e_draft_game_status_enum team_1: teams_obj_rel_insert_input team_1_id: uuid @@ -3920,7 +3932,6 @@ type draft_games_max_fields { min_elo: Int pick_deadline: timestamptz regions: [String!] - scheduled_at: timestamptz team_1_id: uuid team_2_id: uuid updated_at: timestamptz @@ -3944,7 +3955,6 @@ input draft_games_max_order_by { min_elo: order_by pick_deadline: order_by regions: order_by - scheduled_at: order_by team_1_id: order_by team_2_id: order_by updated_at: order_by @@ -3966,7 +3976,6 @@ type draft_games_min_fields { min_elo: Int pick_deadline: timestamptz regions: [String!] - scheduled_at: timestamptz team_1_id: uuid team_2_id: uuid updated_at: timestamptz @@ -3990,7 +3999,6 @@ input draft_games_min_order_by { min_elo: order_by pick_deadline: order_by regions: order_by - scheduled_at: order_by team_1_id: order_by team_2_id: order_by updated_at: order_by @@ -4061,7 +4069,6 @@ input draft_games_order_by { players_aggregate: draft_game_players_aggregate_order_by regions: order_by require_approval: order_by - scheduled_at: order_by status: order_by team_1: teams_order_by team_1_id: order_by @@ -4140,9 +4147,6 @@ enum draft_games_select_column { """column name""" require_approval - """column name""" - scheduled_at - """column name""" status @@ -4205,7 +4209,6 @@ input draft_games_set_input { pick_deadline: timestamptz regions: [String!] require_approval: Boolean - scheduled_at: timestamptz status: e_draft_game_status_enum team_1_id: uuid team_2_id: uuid @@ -4306,7 +4309,6 @@ input draft_games_stream_cursor_value_input { pick_deadline: timestamptz regions: [String!] require_approval: Boolean - scheduled_at: timestamptz status: e_draft_game_status_enum team_1_id: uuid team_2_id: uuid @@ -4398,9 +4400,6 @@ enum draft_games_update_column { """column name""" require_approval - """column name""" - scheduled_at - """column name""" status @@ -12653,10 +12652,6 @@ type game_server_nodes { ): jsonb cpu_sockets: Int cpu_threads_per_core: Int - cs2_launch_options( - """JSON select path""" - path: String - ): jsonb! cs2_video_settings( """JSON select path""" path: String @@ -12832,7 +12827,6 @@ input game_server_nodes_aggregate_order_by { input game_server_nodes_append_input { cpu_frequency_info: jsonb cpu_governor_info: jsonb - cs2_launch_options: jsonb cs2_video_settings: jsonb gpu_info: jsonb shader_bake_status_history: jsonb @@ -12905,7 +12899,6 @@ input game_server_nodes_bool_exp { cpu_governor_info: jsonb_comparison_exp cpu_sockets: Int_comparison_exp cpu_threads_per_core: Int_comparison_exp - cs2_launch_options: jsonb_comparison_exp cs2_video_settings: jsonb_comparison_exp csgo_build_id: Int_comparison_exp demo_network_limiter: Int_comparison_exp @@ -12965,7 +12958,6 @@ delete the field or element with specified path (for JSON arrays, negative integ input game_server_nodes_delete_at_path_input { cpu_frequency_info: [String!] cpu_governor_info: [String!] - cs2_launch_options: [String!] cs2_video_settings: [String!] gpu_info: [String!] shader_bake_status_history: [String!] @@ -12977,7 +12969,6 @@ delete the array element with specified index (negative integers count from the input game_server_nodes_delete_elem_input { cpu_frequency_info: Int cpu_governor_info: Int - cs2_launch_options: Int cs2_video_settings: Int gpu_info: Int shader_bake_status_history: Int @@ -12989,7 +12980,6 @@ delete key/value pair or string element. key/value pairs are matched based on th input game_server_nodes_delete_key_input { cpu_frequency_info: String cpu_governor_info: String - cs2_launch_options: String cs2_video_settings: String gpu_info: String shader_bake_status_history: String @@ -13023,7 +13013,6 @@ input game_server_nodes_insert_input { cpu_governor_info: jsonb cpu_sockets: Int cpu_threads_per_core: Int - cs2_launch_options: jsonb cs2_video_settings: jsonb csgo_build_id: Int demo_network_limiter: Int @@ -13229,7 +13218,6 @@ input game_server_nodes_order_by { cpu_governor_info: order_by cpu_sockets: order_by cpu_threads_per_core: order_by - cs2_launch_options: order_by cs2_video_settings: order_by csgo_build_id: order_by demo_network_limiter: order_by @@ -13281,7 +13269,6 @@ input game_server_nodes_pk_columns_input { input game_server_nodes_prepend_input { cpu_frequency_info: jsonb cpu_governor_info: jsonb - cs2_launch_options: jsonb cs2_video_settings: jsonb gpu_info: jsonb shader_bake_status_history: jsonb @@ -13309,9 +13296,6 @@ enum game_server_nodes_select_column { """column name""" cpu_threads_per_core - """column name""" - cs2_launch_options - """column name""" cs2_video_settings @@ -13480,7 +13464,6 @@ input game_server_nodes_set_input { cpu_governor_info: jsonb cpu_sockets: Int cpu_threads_per_core: Int - cs2_launch_options: jsonb cs2_video_settings: jsonb csgo_build_id: Int demo_network_limiter: Int @@ -13664,7 +13647,6 @@ input game_server_nodes_stream_cursor_value_input { cpu_governor_info: jsonb cpu_sockets: Int cpu_threads_per_core: Int - cs2_launch_options: jsonb cs2_video_settings: jsonb csgo_build_id: Int demo_network_limiter: Int @@ -13765,9 +13747,6 @@ enum game_server_nodes_update_column { """column name""" cpu_threads_per_core - """column name""" - cs2_launch_options - """column name""" cs2_video_settings @@ -17200,9 +17179,7 @@ type league_seasons { playoff_seats: Int! playoff_stage_type: e_tournament_stage_types_enum! playoff_third_place_match: Boolean! - promote_count: Int! regular_season_stage_type: e_tournament_stage_types_enum! - relegate_count: Int! relegation_down_count: Int! """An array relationship""" @@ -17404,8 +17381,6 @@ type league_seasons_avg_fields { min_roster_size: Float playoff_best_of: Float playoff_seats: Float - promote_count: Float - relegate_count: Float relegation_down_count: Float relegation_up_count: Float season_number: Float @@ -17448,9 +17423,7 @@ input league_seasons_bool_exp { playoff_seats: Int_comparison_exp playoff_stage_type: e_tournament_stage_types_enum_comparison_exp playoff_third_place_match: Boolean_comparison_exp - promote_count: Int_comparison_exp regular_season_stage_type: e_tournament_stage_types_enum_comparison_exp - relegate_count: Int_comparison_exp relegation_down_count: Int_comparison_exp relegation_playoffs: league_relegation_playoffs_bool_exp relegation_playoffs_aggregate: league_relegation_playoffs_aggregate_bool_exp @@ -17528,8 +17501,6 @@ input league_seasons_inc_input { min_roster_size: Int playoff_best_of: Int playoff_seats: Int - promote_count: Int - relegate_count: Int relegation_down_count: Int relegation_up_count: Int season_number: Int @@ -17562,9 +17533,7 @@ input league_seasons_insert_input { playoff_seats: Int playoff_stage_type: e_tournament_stage_types_enum playoff_third_place_match: Boolean - promote_count: Int regular_season_stage_type: e_tournament_stage_types_enum - relegate_count: Int relegation_down_count: Int relegation_playoffs: league_relegation_playoffs_arr_rel_insert_input relegation_up_count: Int @@ -17596,8 +17565,6 @@ type league_seasons_max_fields { name: String playoff_best_of: Int playoff_seats: Int - promote_count: Int - relegate_count: Int relegation_down_count: Int relegation_up_count: Int roster_lock_at: timestamptz @@ -17623,8 +17590,6 @@ type league_seasons_min_fields { name: String playoff_best_of: Int playoff_seats: Int - promote_count: Int - relegate_count: Int relegation_down_count: Int relegation_up_count: Int roster_lock_at: timestamptz @@ -17693,9 +17658,7 @@ input league_seasons_order_by { playoff_seats: order_by playoff_stage_type: order_by playoff_third_place_match: order_by - promote_count: order_by regular_season_stage_type: order_by - relegate_count: order_by relegation_down_count: order_by relegation_playoffs_aggregate: league_relegation_playoffs_aggregate_order_by relegation_up_count: order_by @@ -17780,15 +17743,9 @@ enum league_seasons_select_column { """column name""" playoff_third_place_match - """column name""" - promote_count - """column name""" regular_season_stage_type - """column name""" - relegate_count - """column name""" relegation_down_count @@ -17839,9 +17796,7 @@ input league_seasons_set_input { playoff_seats: Int playoff_stage_type: e_tournament_stage_types_enum playoff_third_place_match: Boolean - promote_count: Int regular_season_stage_type: e_tournament_stage_types_enum - relegate_count: Int relegation_down_count: Int relegation_up_count: Int roster_lock_at: timestamptz @@ -17865,8 +17820,6 @@ type league_seasons_stddev_fields { min_roster_size: Float playoff_best_of: Float playoff_seats: Float - promote_count: Float - relegate_count: Float relegation_down_count: Float relegation_up_count: Float season_number: Float @@ -17884,8 +17837,6 @@ type league_seasons_stddev_pop_fields { min_roster_size: Float playoff_best_of: Float playoff_seats: Float - promote_count: Float - relegate_count: Float relegation_down_count: Float relegation_up_count: Float season_number: Float @@ -17903,8 +17854,6 @@ type league_seasons_stddev_samp_fields { min_roster_size: Float playoff_best_of: Float playoff_seats: Float - promote_count: Float - relegate_count: Float relegation_down_count: Float relegation_up_count: Float season_number: Float @@ -17941,9 +17890,7 @@ input league_seasons_stream_cursor_value_input { playoff_seats: Int playoff_stage_type: e_tournament_stage_types_enum playoff_third_place_match: Boolean - promote_count: Int regular_season_stage_type: e_tournament_stage_types_enum - relegate_count: Int relegation_down_count: Int relegation_up_count: Int roster_lock_at: timestamptz @@ -17967,8 +17914,6 @@ type league_seasons_sum_fields { min_roster_size: Int playoff_best_of: Int playoff_seats: Int - promote_count: Int - relegate_count: Int relegation_down_count: Int relegation_up_count: Int season_number: Int @@ -18032,15 +17977,9 @@ enum league_seasons_update_column { """column name""" playoff_third_place_match - """column name""" - promote_count - """column name""" regular_season_stage_type - """column name""" - relegate_count - """column name""" relegation_down_count @@ -18113,8 +18052,6 @@ type league_seasons_var_pop_fields { min_roster_size: Float playoff_best_of: Float playoff_seats: Float - promote_count: Float - relegate_count: Float relegation_down_count: Float relegation_up_count: Float season_number: Float @@ -18132,8 +18069,6 @@ type league_seasons_var_samp_fields { min_roster_size: Float playoff_best_of: Float playoff_seats: Float - promote_count: Float - relegate_count: Float relegation_down_count: Float relegation_up_count: Float season_number: Float @@ -18151,8 +18086,6 @@ type league_seasons_variance_fields { min_roster_size: Float playoff_best_of: Float playoff_seats: Float - promote_count: Float - relegate_count: Float relegation_down_count: Float relegation_up_count: Float season_number: Float @@ -25584,6 +25517,7 @@ input match_map_veto_picks_updates { columns and relationships of "match_maps" """ type match_maps { + anti_wallhack_active: Boolean clips_count: Int! created_at: timestamptz! @@ -26042,9 +25976,25 @@ type match_maps_aggregate { } input match_maps_aggregate_bool_exp { + bool_and: match_maps_aggregate_bool_exp_bool_and + bool_or: match_maps_aggregate_bool_exp_bool_or count: match_maps_aggregate_bool_exp_count } +input match_maps_aggregate_bool_exp_bool_and { + arguments: match_maps_select_column_match_maps_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: match_maps_bool_exp + predicate: Boolean_comparison_exp! +} + +input match_maps_aggregate_bool_exp_bool_or { + arguments: match_maps_select_column_match_maps_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: match_maps_bool_exp + predicate: Boolean_comparison_exp! +} + input match_maps_aggregate_bool_exp_count { arguments: [match_maps_select_column!] distinct: Boolean @@ -26138,6 +26088,7 @@ input match_maps_bool_exp { _and: [match_maps_bool_exp!] _not: match_maps_bool_exp _or: [match_maps_bool_exp!] + anti_wallhack_active: Boolean_comparison_exp clips_count: Int_comparison_exp created_at: timestamptz_comparison_exp demos: match_map_demos_bool_exp @@ -26217,6 +26168,7 @@ input match_maps_inc_input { input type for inserting data into table "match_maps" """ input match_maps_insert_input { + anti_wallhack_active: Boolean clips_count: Int created_at: timestamptz demos: match_map_demos_arr_rel_insert_input @@ -26398,6 +26350,7 @@ input match_maps_on_conflict { """Ordering options when selecting data from "match_maps".""" input match_maps_order_by { + anti_wallhack_active: order_by clips_count: order_by created_at: order_by demos_aggregate: match_map_demos_aggregate_order_by @@ -26445,6 +26398,9 @@ input match_maps_pk_columns_input { select columns of table "match_maps" """ enum match_maps_select_column { + """column name""" + anti_wallhack_active + """column name""" clips_count @@ -26497,10 +26453,27 @@ enum match_maps_select_column { winning_lineup_id } +""" +select "match_maps_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_maps" +""" +enum match_maps_select_column_match_maps_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + anti_wallhack_active +} + +""" +select "match_maps_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_maps" +""" +enum match_maps_select_column_match_maps_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + anti_wallhack_active +} + """ input type for updating data in table "match_maps" """ input match_maps_set_input { + anti_wallhack_active: Boolean clips_count: Int created_at: timestamptz ended_at: timestamptz @@ -26638,6 +26611,7 @@ input match_maps_stream_cursor_input { """Initial value of the column from where the streaming should start""" input match_maps_stream_cursor_value_input { + anti_wallhack_active: Boolean clips_count: Int created_at: timestamptz ended_at: timestamptz @@ -26696,6 +26670,9 @@ input match_maps_sum_order_by { update columns of table "match_maps" """ enum match_maps_update_column { + """column name""" + anti_wallhack_active + """column name""" clips_count @@ -26868,6 +26845,7 @@ input match_maps_variance_order_by { columns and relationships of "match_options" """ type match_options { + anti_wallhack: Boolean! auto_cancel_duration: Int auto_cancellation: Boolean! best_of: Int! @@ -26989,6 +26967,7 @@ input match_options_bool_exp { _and: [match_options_bool_exp!] _not: match_options_bool_exp _or: [match_options_bool_exp!] + anti_wallhack: Boolean_comparison_exp auto_cancel_duration: Int_comparison_exp auto_cancellation: Boolean_comparison_exp best_of: Int_comparison_exp @@ -27048,6 +27027,7 @@ input match_options_inc_input { input type for inserting data into table "match_options" """ input match_options_insert_input { + anti_wallhack: Boolean auto_cancel_duration: Int auto_cancellation: Boolean best_of: Int @@ -27139,6 +27119,7 @@ input match_options_on_conflict { """Ordering options when selecting data from "match_options".""" input match_options_order_by { + anti_wallhack: order_by auto_cancel_duration: order_by auto_cancellation: order_by best_of: order_by @@ -27180,6 +27161,9 @@ input match_options_pk_columns_input { select columns of table "match_options" """ enum match_options_select_column { + """column name""" + anti_wallhack + """column name""" auto_cancel_duration @@ -27257,6 +27241,7 @@ enum match_options_select_column { input type for updating data in table "match_options" """ input match_options_set_input { + anti_wallhack: Boolean auto_cancel_duration: Int auto_cancellation: Boolean best_of: Int @@ -27326,6 +27311,7 @@ input match_options_stream_cursor_input { """Initial value of the column from where the streaming should start""" input match_options_stream_cursor_value_input { + anti_wallhack: Boolean auto_cancel_duration: Int auto_cancellation: Boolean best_of: Int @@ -27366,6 +27352,9 @@ type match_options_sum_fields { update columns of table "match_options" """ enum match_options_update_column { + """column name""" + anti_wallhack + """column name""" auto_cancel_duration @@ -40524,6 +40513,7 @@ type my_friends { faceit_nickname: String faceit_player_id: String faceit_skill_level: Int + faceit_synced_at: timestamptz faceit_updated_at: timestamptz faceit_url: String friend_steam_id: bigint @@ -40683,6 +40673,7 @@ input my_friends_bool_exp { faceit_nickname: String_comparison_exp faceit_player_id: String_comparison_exp faceit_skill_level: Int_comparison_exp + faceit_synced_at: timestamptz_comparison_exp faceit_updated_at: timestamptz_comparison_exp faceit_url: String_comparison_exp friend_steam_id: bigint_comparison_exp @@ -40763,6 +40754,7 @@ input my_friends_insert_input { faceit_nickname: String faceit_player_id: String faceit_skill_level: Int + faceit_synced_at: timestamptz faceit_updated_at: timestamptz faceit_url: String friend_steam_id: bigint @@ -40801,6 +40793,7 @@ type my_friends_max_fields { faceit_nickname: String faceit_player_id: String faceit_skill_level: Int + faceit_synced_at: timestamptz faceit_updated_at: timestamptz faceit_url: String friend_steam_id: bigint @@ -40836,6 +40829,7 @@ input my_friends_max_order_by { faceit_nickname: order_by faceit_player_id: order_by faceit_skill_level: order_by + faceit_synced_at: order_by faceit_updated_at: order_by faceit_url: order_by friend_steam_id: order_by @@ -40869,6 +40863,7 @@ type my_friends_min_fields { faceit_nickname: String faceit_player_id: String faceit_skill_level: Int + faceit_synced_at: timestamptz faceit_updated_at: timestamptz faceit_url: String friend_steam_id: bigint @@ -40904,6 +40899,7 @@ input my_friends_min_order_by { faceit_nickname: order_by faceit_player_id: order_by faceit_skill_level: order_by + faceit_synced_at: order_by faceit_updated_at: order_by faceit_url: order_by friend_steam_id: order_by @@ -40949,6 +40945,7 @@ input my_friends_order_by { faceit_nickname: order_by faceit_player_id: order_by faceit_skill_level: order_by + faceit_synced_at: order_by faceit_updated_at: order_by faceit_url: order_by friend_steam_id: order_by @@ -41018,6 +41015,9 @@ enum my_friends_select_column { """column name""" faceit_skill_level + """column name""" + faceit_synced_at + """column name""" faceit_updated_at @@ -41131,6 +41131,7 @@ input my_friends_set_input { faceit_nickname: String faceit_player_id: String faceit_skill_level: Int + faceit_synced_at: timestamptz faceit_updated_at: timestamptz faceit_url: String friend_steam_id: bigint @@ -41264,6 +41265,7 @@ input my_friends_stream_cursor_value_input { faceit_nickname: String faceit_player_id: String faceit_skill_level: Int + faceit_synced_at: timestamptz faceit_updated_at: timestamptz faceit_url: String friend_steam_id: bigint @@ -46701,7 +46703,7 @@ type player_elo_variance_fields { columns and relationships of "player_faceit_rank_history" """ type player_faceit_rank_history { - elo: Int + elo: Int! id: uuid! """An object relationship""" @@ -46712,7 +46714,7 @@ type player_faceit_rank_history { """An object relationship""" player: players! previous_rank: Int - skill_level: Int! + skill_level: Int steam_id: bigint! } @@ -59384,6 +59386,7 @@ type players { where: player_faceit_rank_history_bool_exp ): player_faceit_rank_history_aggregate! faceit_skill_level: Int + faceit_synced_at: timestamptz faceit_updated_at: timestamptz faceit_url: String @@ -60665,6 +60668,7 @@ input players_bool_exp { faceit_rank_history: player_faceit_rank_history_bool_exp faceit_rank_history_aggregate: player_faceit_rank_history_aggregate_bool_exp faceit_skill_level: Int_comparison_exp + faceit_synced_at: timestamptz_comparison_exp faceit_updated_at: timestamptz_comparison_exp faceit_url: String_comparison_exp flashed_by_players: player_flashes_bool_exp @@ -60819,6 +60823,7 @@ input players_insert_input { faceit_player_id: String faceit_rank_history: player_faceit_rank_history_arr_rel_insert_input faceit_skill_level: Int + faceit_synced_at: timestamptz faceit_updated_at: timestamptz faceit_url: String flashed_by_players: player_flashes_arr_rel_insert_input @@ -60885,6 +60890,7 @@ type players_max_fields { faceit_nickname: String faceit_player_id: String faceit_skill_level: Int + faceit_synced_at: timestamptz faceit_updated_at: timestamptz faceit_url: String game_ban_count: Int @@ -60968,6 +60974,7 @@ type players_min_fields { faceit_nickname: String faceit_player_id: String faceit_skill_level: Int + faceit_synced_at: timestamptz faceit_updated_at: timestamptz faceit_url: String game_ban_count: Int @@ -61089,6 +61096,7 @@ input players_order_by { faceit_player_id: order_by faceit_rank_history_aggregate: player_faceit_rank_history_aggregate_order_by faceit_skill_level: order_by + faceit_synced_at: order_by faceit_updated_at: order_by faceit_url: order_by flashed_by_players_aggregate: player_flashes_aggregate_order_by @@ -61196,6 +61204,9 @@ enum players_select_column { """column name""" faceit_skill_level + """column name""" + faceit_synced_at + """column name""" faceit_updated_at @@ -61265,6 +61276,7 @@ input players_set_input { faceit_nickname: String faceit_player_id: String faceit_skill_level: Int + faceit_synced_at: timestamptz faceit_updated_at: timestamptz faceit_url: String game_ban_count: Int @@ -61476,6 +61488,7 @@ input players_stream_cursor_value_input { faceit_nickname: String faceit_player_id: String faceit_skill_level: Int + faceit_synced_at: timestamptz faceit_updated_at: timestamptz faceit_url: String game_ban_count: Int @@ -61586,6 +61599,9 @@ enum players_update_column { """column name""" faceit_skill_level + """column name""" + faceit_synced_at + """column name""" faceit_updated_at @@ -90768,7 +90784,6 @@ type tournaments { """ has_min_teams: Boolean id: uuid! - is_league: Boolean! """ A computed field, executes function "is_tournament_organizer" @@ -91231,7 +91246,6 @@ input tournaments_bool_exp { e_tournament_status: e_tournament_status_bool_exp has_min_teams: Boolean_comparison_exp id: uuid_comparison_exp - is_league: Boolean_comparison_exp is_organizer: Boolean_comparison_exp joined_tournament: Boolean_comparison_exp league_season_division: league_season_divisions_bool_exp @@ -91312,7 +91326,6 @@ input tournaments_insert_input { discord_webhook: String e_tournament_status: e_tournament_status_obj_rel_insert_input id: uuid - is_league: Boolean league_season_division: league_season_divisions_obj_rel_insert_input match_options_id: uuid name: String @@ -91480,7 +91493,6 @@ input tournaments_order_by { e_tournament_status: e_tournament_status_order_by has_min_teams: order_by id: order_by - is_league: order_by is_organizer: order_by joined_tournament: order_by league_season_division: league_season_divisions_order_by @@ -91576,9 +91588,6 @@ enum tournaments_select_column { """column name""" id - """column name""" - is_league - """column name""" match_options_id @@ -91650,9 +91659,6 @@ enum tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments """column name""" discord_voice_enabled - """column name""" - is_league - """column name""" trophies_enabled } @@ -91706,9 +91712,6 @@ enum tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_ """column name""" discord_voice_enabled - """column name""" - is_league - """column name""" trophies_enabled } @@ -91738,7 +91741,6 @@ input tournaments_set_input { discord_voice_enabled: Boolean discord_webhook: String id: uuid - is_league: Boolean match_options_id: uuid name: String organizer_steam_id: bigint @@ -91845,7 +91847,6 @@ input tournaments_stream_cursor_value_input { discord_voice_enabled: Boolean discord_webhook: String id: uuid - is_league: Boolean match_options_id: uuid name: String organizer_steam_id: bigint @@ -91943,9 +91944,6 @@ enum tournaments_update_column { """column name""" id - """column name""" - is_league - """column name""" match_options_id diff --git a/src/hasura/hasura.service.ts b/src/hasura/hasura.service.ts index f53b810f..b0d46d8f 100644 --- a/src/hasura/hasura.service.ts +++ b/src/hasura/hasura.service.ts @@ -152,6 +152,12 @@ export class HasuraService { await this.postgresService.query( "insert into settings (name, value) values ('public.steam_presence_enabled', 'true') on conflict (name) do nothing", ); + + // Anti-wallhack kill switch is on by default; seed the row so the admin + // toggle reflects it. `do nothing` preserves an admin's explicit off. + await this.postgresService.query( + "insert into settings (name, value) values ('anti_wallhack_enabled', 'true') on conflict (name) do nothing", + ); } private async applyMigrations(path: string): Promise { From 682d7a6628a1c6b2e2ee3f3694dc052820a27784 Mon Sep 17 00:00:00 2001 From: Flegma Date: Thu, 9 Jul 2026 14:52:55 +0200 Subject: [PATCH 4/9] feature: process antiWallhackStatus events onto match maps --- .../events/AntiWallhackStatusEvent.spec.ts | 75 +++++++++++++++++++ src/matches/events/AntiWallhackStatusEvent.ts | 34 +++++++++ src/matches/events/index.ts | 2 + 3 files changed, 111 insertions(+) create mode 100644 src/matches/events/AntiWallhackStatusEvent.spec.ts create mode 100644 src/matches/events/AntiWallhackStatusEvent.ts diff --git a/src/matches/events/AntiWallhackStatusEvent.spec.ts b/src/matches/events/AntiWallhackStatusEvent.spec.ts new file mode 100644 index 00000000..93d1fe13 --- /dev/null +++ b/src/matches/events/AntiWallhackStatusEvent.spec.ts @@ -0,0 +1,75 @@ +import AntiWallhackStatusEvent from "./AntiWallhackStatusEvent"; + +describe("AntiWallhackStatusEvent", () => { + const buildProcessor = (hasura: any) => { + const processor = new AntiWallhackStatusEvent( + { log: jest.fn(), warn: jest.fn(), error: jest.fn() } as any, + hasura, + {} as any, + {} as any, + {} as any, + ); + return processor; + }; + + it("writes anti_wallhack_active to the current match map", async () => { + const hasura = { + query: jest.fn().mockResolvedValue({ + matches_by_pk: { current_match_map_id: "map-1" }, + }), + mutation: jest.fn().mockResolvedValue({}), + }; + + const processor = buildProcessor(hasura); + processor.setData("match-1", { active: true }); + await processor.process(); + + expect(hasura.mutation).toHaveBeenCalledWith({ + update_match_maps_by_pk: { + __args: { + pk_columns: { id: "map-1" }, + _set: { anti_wallhack_active: true }, + }, + id: true, + }, + }); + }); + + it("coerces non-boolean payloads to false", async () => { + const hasura = { + query: jest.fn().mockResolvedValue({ + matches_by_pk: { current_match_map_id: "map-1" }, + }), + mutation: jest.fn().mockResolvedValue({}), + }; + + const processor = buildProcessor(hasura); + processor.setData("match-1", { active: "yes" } as any); + await processor.process(); + + expect(hasura.mutation).toHaveBeenCalledWith( + expect.objectContaining({ + update_match_maps_by_pk: expect.objectContaining({ + __args: expect.objectContaining({ + _set: { anti_wallhack_active: false }, + }), + }), + }), + ); + }); + + it("does nothing when the match has no current map", async () => { + const hasura = { + query: jest.fn().mockResolvedValue({ + matches_by_pk: { current_match_map_id: null }, + }), + mutation: jest.fn(), + }; + + const processor = buildProcessor(hasura); + processor.setData("match-1", { active: true }); + await processor.process(); + + expect(hasura.mutation).not.toHaveBeenCalled(); + }); +}); diff --git a/src/matches/events/AntiWallhackStatusEvent.ts b/src/matches/events/AntiWallhackStatusEvent.ts new file mode 100644 index 00000000..fed3098e --- /dev/null +++ b/src/matches/events/AntiWallhackStatusEvent.ts @@ -0,0 +1,34 @@ +import MatchEventProcessor from "./abstracts/MatchEventProcessor"; + +export default class AntiWallhackStatusEvent extends MatchEventProcessor<{ + active: boolean; +}> { + public async process() { + const { matches_by_pk: match } = await this.hasura.query({ + matches_by_pk: { + __args: { + id: this.matchId, + }, + current_match_map_id: true, + }, + }); + + if (!match?.current_match_map_id) { + return; + } + + await this.hasura.mutation({ + update_match_maps_by_pk: { + __args: { + pk_columns: { + id: match.current_match_map_id, + }, + _set: { + anti_wallhack_active: this.data.active === true, + }, + }, + id: true, + }, + }); + } +} diff --git a/src/matches/events/index.ts b/src/matches/events/index.ts index aece0351..05464d9a 100644 --- a/src/matches/events/index.ts +++ b/src/matches/events/index.ts @@ -1,3 +1,4 @@ +import AntiWallhackStatusEvent from "./AntiWallhackStatusEvent"; import MatchMapStatusEvent from "./MatchMapStatusEvent"; import MatchMapResetRoundEvent from "./MatchMapResetRoundEvent"; import MatchUpdatedLineupsEvent from "./MatchUpdatedLineupsEvent"; @@ -20,6 +21,7 @@ import MatchSurrendered from "./MatchSurrendered"; import MatchAbandoned from "./MatchAbandoned"; export const MatchEvents = { + antiWallhackStatus: AntiWallhackStatusEvent, mapStatus: MatchMapStatusEvent, restoreRound: MatchMapResetRoundEvent, From 423a02d8f0de6e97048fd3c88c80bb82be86fad8 Mon Sep 17 00:00:00 2001 From: Flegma Date: Thu, 9 Jul 2026 15:01:17 +0200 Subject: [PATCH 5/9] feature: serve anti_wallhack option gated by kill switch --- src/matches/matches.controller.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/matches/matches.controller.ts b/src/matches/matches.controller.ts index de98be9f..7c4edc6e 100644 --- a/src/matches/matches.controller.ts +++ b/src/matches/matches.controller.ts @@ -172,6 +172,7 @@ export class MatchesController { overtime: true, tv_delay: true, knife_round: true, + anti_wallhack: true, default_models: true, ready_setting: true, timeout_setting: true, @@ -330,6 +331,18 @@ export class MatchesController { match.options.show_elo_ranks = fivestackRanksSetting?.value === "true"; + const { settings_by_pk: antiWallhackSetting } = await this.hasura.query({ + settings_by_pk: { + __args: { + name: "anti_wallhack_enabled", + }, + value: true, + }, + }); + + match.options.anti_wallhack = + match.options.anti_wallhack && antiWallhackSetting?.value !== "false"; + // e_game_cfg_types_enum doesn't include Premier/Faceit (imports only). const cfgType = match.options.type === "Premier" || match.options.type === "Faceit" From cba7543b0dde56f999a463401172bd0c9443185e Mon Sep 17 00:00:00 2001 From: Flegma Date: Thu, 9 Jul 2026 15:29:57 +0200 Subject: [PATCH 6/9] bug: propagate anti_wallhack through match options clone and draft rooms --- .../tournaments/clone_match_options.sql | 4 +- .../update_match_options_best_of.sql | 3 +- .../up.sql | 3 +- src/draft-games/draft-game.service.ts | 1 + test/anti-wallhack.spec.ts | 43 ++++++++++++++++++- 5 files changed, 48 insertions(+), 6 deletions(-) diff --git a/hasura/functions/tournaments/clone_match_options.sql b/hasura/functions/tournaments/clone_match_options.sql index eeb8833c..2901e7bf 100644 --- a/hasura/functions/tournaments/clone_match_options.sql +++ b/hasura/functions/tournaments/clone_match_options.sql @@ -10,14 +10,14 @@ BEGIN END IF; INSERT INTO match_options ( - overtime, knife_round, mr, best_of, coaches, number_of_substitutes, + overtime, knife_round, anti_wallhack, mr, best_of, coaches, number_of_substitutes, map_veto, timeout_setting, tech_timeout_setting, map_pool_id, type, regions, prefer_dedicated_server, invite_code, region_veto, ready_setting, check_in_setting, default_models, tv_delay, auto_cancellation, match_mode, auto_cancel_duration, live_match_timeout ) SELECT - overtime, knife_round, mr, best_of, coaches, number_of_substitutes, + overtime, knife_round, anti_wallhack, mr, best_of, coaches, number_of_substitutes, map_veto, timeout_setting, tech_timeout_setting, map_pool_id, type, regions, prefer_dedicated_server, invite_code, region_veto, ready_setting, check_in_setting, default_models, tv_delay, diff --git a/hasura/functions/tournaments/update_match_options_best_of.sql b/hasura/functions/tournaments/update_match_options_best_of.sql index 7e5caf27..77913d51 100644 --- a/hasura/functions/tournaments/update_match_options_best_of.sql +++ b/hasura/functions/tournaments/update_match_options_best_of.sql @@ -48,12 +48,13 @@ BEGIN -- Clone match_options with the new best_of match_options_record.best_of := _effective_best_of; INSERT INTO match_options ( - overtime, knife_round, mr, best_of, coaches, number_of_substitutes, + overtime, knife_round, anti_wallhack, mr, best_of, coaches, number_of_substitutes, map_veto, timeout_setting, tech_timeout_setting, map_pool_id, type, regions, prefer_dedicated_server, invite_code, region_veto, ready_setting, check_in_setting, default_models, tv_delay ) VALUES ( match_options_record.overtime, match_options_record.knife_round, + match_options_record.anti_wallhack, match_options_record.mr, match_options_record.best_of, match_options_record.coaches, match_options_record.number_of_substitutes, match_options_record.map_veto, match_options_record.timeout_setting, diff --git a/hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/up.sql b/hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/up.sql index ee5518f7..85754b93 100644 --- a/hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/up.sql +++ b/hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/up.sql @@ -1,3 +1,2 @@ alter table "public"."match_maps" - add column if not exists "anti_wallhack_active" boolean - null; + add column if not exists "anti_wallhack_active" boolean null; diff --git a/src/draft-games/draft-game.service.ts b/src/draft-games/draft-game.service.ts index 7946be74..7fc844c0 100644 --- a/src/draft-games/draft-game.service.ts +++ b/src/draft-games/draft-game.service.ts @@ -1008,6 +1008,7 @@ export class DraftGameService { mr: source.mr, best_of: source.best_of, knife_round: source.knife_round, + anti_wallhack: source.anti_wallhack, default_models: source.default_models, overtime: source.overtime, map_veto: source.map_veto, diff --git a/test/anti-wallhack.spec.ts b/test/anti-wallhack.spec.ts index 1bffac20..f99fad34 100644 --- a/test/anti-wallhack.spec.ts +++ b/test/anti-wallhack.spec.ts @@ -8,7 +8,10 @@ import { // Verifies the anti-wallhack migrations: match_options.anti_wallhack defaults // to true (existing rows become protected) and match_maps.anti_wallhack_active -// is nullable (null = never reported by the game server plugin). +// is nullable (null = never reported by the game server plugin). Also covers +// clone_match_options propagating anti_wallhack onto cloned rows (tournament +// and best-of re-scheduling flows clone through this function) and the +// anti_wallhack_enabled kill switch being seeded on install. describe("anti-wallhack columns (SQL-driven)", () => { let db: SqlTestDb; let postgres: PostgresService; @@ -58,4 +61,42 @@ describe("anti-wallhack columns (SQL-driven)", () => { expect(rows[0].is_nullable).toBe("YES"); expect(rows[0].column_default).toBeNull(); }); + + // Regression for clone_match_options omitting anti_wallhack from its column + // lists: a cloned options row (tournament/league scheduling, best-of + // re-cloning) would silently reset to the column default instead of + // carrying the source row's value. + it("clone_match_options carries anti_wallhack onto the cloned row", async () => { + const optionsId = await fx.matchOptions(); + await postgres.query( + "UPDATE match_options SET anti_wallhack = false WHERE id = $1", + [optionsId], + ); + + const [{ cloned_id }] = await postgres.query>( + "SELECT clone_match_options($1) AS cloned_id", + [optionsId], + ); + + const rows = await postgres.query>( + "SELECT anti_wallhack FROM match_options WHERE id = $1", + [cloned_id], + ); + + expect(rows).toHaveLength(1); + expect(rows[0].anti_wallhack).toBe(false); + }); + + // hasura.service.ts's updateSettings() (run by bootMigratedDb via + // HasuraService.setup()) seeds this row with `on conflict do nothing`, the + // same way it seeds public.steam_presence_enabled, so a fresh install has + // the kill switch on by default. + it("seeds the anti_wallhack_enabled kill switch to true", async () => { + const rows = await postgres.query>( + "SELECT value FROM settings WHERE name = 'anti_wallhack_enabled'", + ); + + expect(rows).toHaveLength(1); + expect(rows[0].value).toBe("true"); + }); }); From 3cc6833adb225cf2a0a447ac65ad5d6af8afd2a8 Mon Sep 17 00:00:00 2001 From: Flegma Date: Thu, 9 Jul 2026 22:43:05 +0200 Subject: [PATCH 7/9] bug: renumber anti wallhack migrations after plugin runtimes collision Upstream's plugin-runtimes monorepo merge (7cbb681) introduced hasura/migrations/default/1870000000000_plugin_runtimes, colliding with our 1870000000000_alter_table_public_match_options_add_column_anti_wallhack migration's numeric prefix. HasuraService.getAvailableVersions keys migrations by the numeric prefix before the first underscore and throws "duplicate version" on collision, so the two anti-wallhack migrations are renumbered to 1871000000000 and 1871000000100 (contents unchanged) to sort after all upstream migrations without colliding. --- .../down.sql | 0 .../up.sql | 0 .../down.sql | 0 .../up.sql | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename hasura/migrations/default/{1870000000000_alter_table_public_match_options_add_column_anti_wallhack => 1871000000000_alter_table_public_match_options_add_column_anti_wallhack}/down.sql (100%) rename hasura/migrations/default/{1870000000000_alter_table_public_match_options_add_column_anti_wallhack => 1871000000000_alter_table_public_match_options_add_column_anti_wallhack}/up.sql (100%) rename hasura/migrations/default/{1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active => 1871000000100_alter_table_public_match_maps_add_column_anti_wallhack_active}/down.sql (100%) rename hasura/migrations/default/{1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active => 1871000000100_alter_table_public_match_maps_add_column_anti_wallhack_active}/up.sql (100%) diff --git a/hasura/migrations/default/1870000000000_alter_table_public_match_options_add_column_anti_wallhack/down.sql b/hasura/migrations/default/1871000000000_alter_table_public_match_options_add_column_anti_wallhack/down.sql similarity index 100% rename from hasura/migrations/default/1870000000000_alter_table_public_match_options_add_column_anti_wallhack/down.sql rename to hasura/migrations/default/1871000000000_alter_table_public_match_options_add_column_anti_wallhack/down.sql diff --git a/hasura/migrations/default/1870000000000_alter_table_public_match_options_add_column_anti_wallhack/up.sql b/hasura/migrations/default/1871000000000_alter_table_public_match_options_add_column_anti_wallhack/up.sql similarity index 100% rename from hasura/migrations/default/1870000000000_alter_table_public_match_options_add_column_anti_wallhack/up.sql rename to hasura/migrations/default/1871000000000_alter_table_public_match_options_add_column_anti_wallhack/up.sql diff --git a/hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/down.sql b/hasura/migrations/default/1871000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/down.sql similarity index 100% rename from hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/down.sql rename to hasura/migrations/default/1871000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/down.sql diff --git a/hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/up.sql b/hasura/migrations/default/1871000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/up.sql similarity index 100% rename from hasura/migrations/default/1870000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/up.sql rename to hasura/migrations/default/1871000000100_alter_table_public_match_maps_add_column_anti_wallhack_active/up.sql From a60207592684e56290664d3e14a1eaf1ff33fd12 Mon Sep 17 00:00:00 2001 From: Flegma Date: Thu, 9 Jul 2026 22:47:59 +0200 Subject: [PATCH 8/9] chore: regenerate types after rebase Regenerate generated/ against a Hasura instance carrying both upstream's plugin-runtime schema (7cbb681) and this branch's anti_wallhack columns, after the rebase onto origin/main took upstream's generated/ wholesale to resolve the schema.ts/types.ts conflict. Confirmed both anti_wallhack (26 occurrences) and plugin_runtime (206 occurrences) identifiers are present in generated/schema.ts. --- generated/schema.ts | 260 +- generated/types.ts | 38264 +++++++++++++++++++++--------------------- 2 files changed, 19224 insertions(+), 19300 deletions(-) diff --git a/generated/schema.ts b/generated/schema.ts index 118e445a..2d83b916 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -1438,7 +1438,7 @@ export interface draft_game_picks_avg_fields { /** unique or primary key constraints on table "draft_game_picks" */ -export type draft_game_picks_constraint = 'draft_game_picks_pkey' +export type draft_game_picks_constraint = 'draft_game_picks_draft_game_id_picked_steam_id_key' | 'draft_game_picks_pkey' /** aggregate max on columns */ @@ -1611,7 +1611,7 @@ export interface draft_game_players_avg_fields { /** unique or primary key constraints on table "draft_game_players" */ -export type draft_game_players_constraint = 'draft_game_players_pkey' +export type draft_game_players_constraint = 'draft_game_players_captain_lineup_key' | 'draft_game_players_pkey' /** aggregate max on columns */ @@ -1785,7 +1785,6 @@ export interface draft_games { players_aggregate: draft_game_players_aggregate regions: Scalars['String'][] require_approval: Scalars['Boolean'] - scheduled_at: (Scalars['timestamptz'] | null) status: e_draft_game_status_enum /** An object relationship */ team_1: (teams | null) @@ -1836,7 +1835,7 @@ export interface draft_games_avg_fields { /** unique or primary key constraints on table "draft_games" */ -export type draft_games_constraint = 'draft_games_pkey' +export type draft_games_constraint = 'draft_games_invite_code_key' | 'draft_games_pkey' /** aggregate max on columns */ @@ -1855,7 +1854,6 @@ export interface draft_games_max_fields { min_elo: (Scalars['Int'] | null) pick_deadline: (Scalars['timestamptz'] | null) regions: (Scalars['String'][] | null) - scheduled_at: (Scalars['timestamptz'] | null) team_1_id: (Scalars['uuid'] | null) team_2_id: (Scalars['uuid'] | null) updated_at: (Scalars['timestamptz'] | null) @@ -1879,7 +1877,6 @@ export interface draft_games_min_fields { min_elo: (Scalars['Int'] | null) pick_deadline: (Scalars['timestamptz'] | null) regions: (Scalars['String'][] | null) - scheduled_at: (Scalars['timestamptz'] | null) team_1_id: (Scalars['uuid'] | null) team_2_id: (Scalars['uuid'] | null) updated_at: (Scalars['timestamptz'] | null) @@ -1898,7 +1895,7 @@ export interface draft_games_mutation_response { /** select columns of table "draft_games" */ -export type draft_games_select_column = 'access' | 'capacity' | 'captain_selection' | 'created_at' | 'current_pick_lineup' | 'draft_order' | 'expires_at' | 'host_steam_id' | 'id' | 'inner_squad' | 'invite_code' | 'map_pool_id' | 'match_id' | 'match_options_id' | 'max_elo' | 'min_elo' | 'mode' | 'pick_deadline' | 'regions' | 'require_approval' | 'scheduled_at' | 'status' | 'team_1_id' | 'team_2_id' | 'type' | 'updated_at' +export type draft_games_select_column = 'access' | 'capacity' | 'captain_selection' | 'created_at' | 'current_pick_lineup' | 'draft_order' | 'expires_at' | 'host_steam_id' | 'id' | 'inner_squad' | 'invite_code' | 'map_pool_id' | 'match_id' | 'match_options_id' | 'max_elo' | 'min_elo' | 'mode' | 'pick_deadline' | 'regions' | 'require_approval' | 'status' | 'team_1_id' | 'team_2_id' | 'type' | 'updated_at' /** select "draft_games_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_games" */ @@ -1954,7 +1951,7 @@ export interface draft_games_sum_fields { /** update columns of table "draft_games" */ -export type draft_games_update_column = 'access' | 'capacity' | 'captain_selection' | 'created_at' | 'current_pick_lineup' | 'draft_order' | 'expires_at' | 'host_steam_id' | 'id' | 'inner_squad' | 'invite_code' | 'map_pool_id' | 'match_id' | 'match_options_id' | 'max_elo' | 'min_elo' | 'mode' | 'pick_deadline' | 'regions' | 'require_approval' | 'scheduled_at' | 'status' | 'team_1_id' | 'team_2_id' | 'type' | 'updated_at' +export type draft_games_update_column = 'access' | 'capacity' | 'captain_selection' | 'created_at' | 'current_pick_lineup' | 'draft_order' | 'expires_at' | 'host_steam_id' | 'id' | 'inner_squad' | 'invite_code' | 'map_pool_id' | 'match_id' | 'match_options_id' | 'max_elo' | 'min_elo' | 'mode' | 'pick_deadline' | 'regions' | 'require_approval' | 'status' | 'team_1_id' | 'team_2_id' | 'type' | 'updated_at' /** aggregate var_pop on columns */ @@ -4733,7 +4730,6 @@ export interface game_server_nodes { cpu_governor_info: (Scalars['jsonb'] | null) cpu_sockets: (Scalars['Int'] | null) cpu_threads_per_core: (Scalars['Int'] | null) - cs2_launch_options: Scalars['jsonb'] cs2_video_settings: Scalars['jsonb'] csgo_build_id: (Scalars['Int'] | null) demo_network_limiter: (Scalars['Int'] | null) @@ -4913,7 +4909,7 @@ export interface game_server_nodes_mutation_response { /** select columns of table "game_server_nodes" */ -export type game_server_nodes_select_column = 'build_id' | 'cpu_cores_per_socket' | 'cpu_frequency_info' | 'cpu_governor_info' | 'cpu_sockets' | 'cpu_threads_per_core' | 'cs2_launch_options' | 'cs2_video_settings' | 'csgo_build_id' | 'demo_network_limiter' | 'disk_available_gb' | 'disk_used_percent' | 'enabled' | 'enabled_for_match_making' | 'end_port_range' | 'gpu' | 'gpu_demos_enabled' | 'gpu_info' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'id' | 'label' | 'lan_ip' | 'node_ip' | 'offline_at' | 'pin_build_id' | 'pin_plugin_runtime' | 'pin_plugin_version' | 'public_ip' | 'region' | 'shader_bake_progress' | 'shader_bake_progress_stage' | 'shader_bake_status' | 'shader_bake_status_history' | 'start_port_range' | 'status' | 'supports_cpu_pinning' | 'supports_low_latency' | 'token' | 'update_status' +export type game_server_nodes_select_column = 'build_id' | 'cpu_cores_per_socket' | 'cpu_frequency_info' | 'cpu_governor_info' | 'cpu_sockets' | 'cpu_threads_per_core' | 'cs2_video_settings' | 'csgo_build_id' | 'demo_network_limiter' | 'disk_available_gb' | 'disk_used_percent' | 'enabled' | 'enabled_for_match_making' | 'end_port_range' | 'gpu' | 'gpu_demos_enabled' | 'gpu_info' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'id' | 'label' | 'lan_ip' | 'node_ip' | 'offline_at' | 'pin_build_id' | 'pin_plugin_runtime' | 'pin_plugin_version' | 'public_ip' | 'region' | 'shader_bake_progress' | 'shader_bake_progress_stage' | 'shader_bake_status' | 'shader_bake_status_history' | 'start_port_range' | 'status' | 'supports_cpu_pinning' | 'supports_low_latency' | 'token' | 'update_status' /** select "game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_server_nodes" */ @@ -5013,7 +5009,7 @@ export interface game_server_nodes_sum_fields { /** update columns of table "game_server_nodes" */ -export type game_server_nodes_update_column = 'build_id' | 'cpu_cores_per_socket' | 'cpu_frequency_info' | 'cpu_governor_info' | 'cpu_sockets' | 'cpu_threads_per_core' | 'cs2_launch_options' | 'cs2_video_settings' | 'csgo_build_id' | 'demo_network_limiter' | 'disk_available_gb' | 'disk_used_percent' | 'enabled' | 'enabled_for_match_making' | 'end_port_range' | 'gpu' | 'gpu_demos_enabled' | 'gpu_info' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'id' | 'label' | 'lan_ip' | 'node_ip' | 'offline_at' | 'pin_build_id' | 'pin_plugin_runtime' | 'pin_plugin_version' | 'public_ip' | 'region' | 'shader_bake_progress' | 'shader_bake_progress_stage' | 'shader_bake_status' | 'shader_bake_status_history' | 'start_port_range' | 'status' | 'supports_cpu_pinning' | 'supports_low_latency' | 'token' | 'update_status' +export type game_server_nodes_update_column = 'build_id' | 'cpu_cores_per_socket' | 'cpu_frequency_info' | 'cpu_governor_info' | 'cpu_sockets' | 'cpu_threads_per_core' | 'cs2_video_settings' | 'csgo_build_id' | 'demo_network_limiter' | 'disk_available_gb' | 'disk_used_percent' | 'enabled' | 'enabled_for_match_making' | 'end_port_range' | 'gpu' | 'gpu_demos_enabled' | 'gpu_info' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'id' | 'label' | 'lan_ip' | 'node_ip' | 'offline_at' | 'pin_build_id' | 'pin_plugin_runtime' | 'pin_plugin_version' | 'public_ip' | 'region' | 'shader_bake_progress' | 'shader_bake_progress_stage' | 'shader_bake_status' | 'shader_bake_status_history' | 'start_port_range' | 'status' | 'supports_cpu_pinning' | 'supports_low_latency' | 'token' | 'update_status' /** aggregate var_pop on columns */ @@ -6240,9 +6236,7 @@ export interface league_seasons { playoff_seats: Scalars['Int'] playoff_stage_type: e_tournament_stage_types_enum playoff_third_place_match: Scalars['Boolean'] - promote_count: Scalars['Int'] regular_season_stage_type: e_tournament_stage_types_enum - relegate_count: Scalars['Int'] relegation_down_count: Scalars['Int'] /** An array relationship */ relegation_playoffs: league_relegation_playoffs[] @@ -6309,8 +6303,6 @@ export interface league_seasons_avg_fields { min_roster_size: (Scalars['Float'] | null) playoff_best_of: (Scalars['Float'] | null) playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) relegation_down_count: (Scalars['Float'] | null) relegation_up_count: (Scalars['Float'] | null) season_number: (Scalars['Float'] | null) @@ -6338,8 +6330,6 @@ export interface league_seasons_max_fields { name: (Scalars['String'] | null) playoff_best_of: (Scalars['Int'] | null) playoff_seats: (Scalars['Int'] | null) - promote_count: (Scalars['Int'] | null) - relegate_count: (Scalars['Int'] | null) relegation_down_count: (Scalars['Int'] | null) relegation_up_count: (Scalars['Int'] | null) roster_lock_at: (Scalars['timestamptz'] | null) @@ -6367,8 +6357,6 @@ export interface league_seasons_min_fields { name: (Scalars['String'] | null) playoff_best_of: (Scalars['Int'] | null) playoff_seats: (Scalars['Int'] | null) - promote_count: (Scalars['Int'] | null) - relegate_count: (Scalars['Int'] | null) relegation_down_count: (Scalars['Int'] | null) relegation_up_count: (Scalars['Int'] | null) roster_lock_at: (Scalars['timestamptz'] | null) @@ -6391,7 +6379,7 @@ export interface league_seasons_mutation_response { /** select columns of table "league_seasons" */ -export type league_seasons_select_column = 'auto_regular_season_format' | 'created_at' | 'created_by_steam_id' | 'default_best_of' | 'direct_promote_count' | 'direct_relegate_count' | 'games_per_week' | 'id' | 'match_options_id' | 'match_weeks_count' | 'max_roster_size' | 'min_roster_size' | 'name' | 'playoff_best_of' | 'playoff_round_best_of' | 'playoff_seats' | 'playoff_stage_type' | 'playoff_third_place_match' | 'promote_count' | 'regular_season_stage_type' | 'relegate_count' | 'relegation_down_count' | 'relegation_up_count' | 'roster_lock_at' | 'season_number' | 'signup_closes_at' | 'signup_opens_at' | 'starts_at' | 'status' | 'week_best_of' +export type league_seasons_select_column = 'auto_regular_season_format' | 'created_at' | 'created_by_steam_id' | 'default_best_of' | 'direct_promote_count' | 'direct_relegate_count' | 'games_per_week' | 'id' | 'match_options_id' | 'match_weeks_count' | 'max_roster_size' | 'min_roster_size' | 'name' | 'playoff_best_of' | 'playoff_round_best_of' | 'playoff_seats' | 'playoff_stage_type' | 'playoff_third_place_match' | 'regular_season_stage_type' | 'relegation_down_count' | 'relegation_up_count' | 'roster_lock_at' | 'season_number' | 'signup_closes_at' | 'signup_opens_at' | 'starts_at' | 'status' | 'week_best_of' /** aggregate stddev on columns */ @@ -6406,8 +6394,6 @@ export interface league_seasons_stddev_fields { min_roster_size: (Scalars['Float'] | null) playoff_best_of: (Scalars['Float'] | null) playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) relegation_down_count: (Scalars['Float'] | null) relegation_up_count: (Scalars['Float'] | null) season_number: (Scalars['Float'] | null) @@ -6427,8 +6413,6 @@ export interface league_seasons_stddev_pop_fields { min_roster_size: (Scalars['Float'] | null) playoff_best_of: (Scalars['Float'] | null) playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) relegation_down_count: (Scalars['Float'] | null) relegation_up_count: (Scalars['Float'] | null) season_number: (Scalars['Float'] | null) @@ -6448,8 +6432,6 @@ export interface league_seasons_stddev_samp_fields { min_roster_size: (Scalars['Float'] | null) playoff_best_of: (Scalars['Float'] | null) playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) relegation_down_count: (Scalars['Float'] | null) relegation_up_count: (Scalars['Float'] | null) season_number: (Scalars['Float'] | null) @@ -6469,8 +6451,6 @@ export interface league_seasons_sum_fields { min_roster_size: (Scalars['Int'] | null) playoff_best_of: (Scalars['Int'] | null) playoff_seats: (Scalars['Int'] | null) - promote_count: (Scalars['Int'] | null) - relegate_count: (Scalars['Int'] | null) relegation_down_count: (Scalars['Int'] | null) relegation_up_count: (Scalars['Int'] | null) season_number: (Scalars['Int'] | null) @@ -6479,7 +6459,7 @@ export interface league_seasons_sum_fields { /** update columns of table "league_seasons" */ -export type league_seasons_update_column = 'auto_regular_season_format' | 'created_at' | 'created_by_steam_id' | 'default_best_of' | 'direct_promote_count' | 'direct_relegate_count' | 'games_per_week' | 'id' | 'match_options_id' | 'match_weeks_count' | 'max_roster_size' | 'min_roster_size' | 'name' | 'playoff_best_of' | 'playoff_round_best_of' | 'playoff_seats' | 'playoff_stage_type' | 'playoff_third_place_match' | 'promote_count' | 'regular_season_stage_type' | 'relegate_count' | 'relegation_down_count' | 'relegation_up_count' | 'roster_lock_at' | 'season_number' | 'signup_closes_at' | 'signup_opens_at' | 'starts_at' | 'status' | 'week_best_of' +export type league_seasons_update_column = 'auto_regular_season_format' | 'created_at' | 'created_by_steam_id' | 'default_best_of' | 'direct_promote_count' | 'direct_relegate_count' | 'games_per_week' | 'id' | 'match_options_id' | 'match_weeks_count' | 'max_roster_size' | 'min_roster_size' | 'name' | 'playoff_best_of' | 'playoff_round_best_of' | 'playoff_seats' | 'playoff_stage_type' | 'playoff_third_place_match' | 'regular_season_stage_type' | 'relegation_down_count' | 'relegation_up_count' | 'roster_lock_at' | 'season_number' | 'signup_closes_at' | 'signup_opens_at' | 'starts_at' | 'status' | 'week_best_of' /** aggregate var_pop on columns */ @@ -6494,8 +6474,6 @@ export interface league_seasons_var_pop_fields { min_roster_size: (Scalars['Float'] | null) playoff_best_of: (Scalars['Float'] | null) playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) relegation_down_count: (Scalars['Float'] | null) relegation_up_count: (Scalars['Float'] | null) season_number: (Scalars['Float'] | null) @@ -6515,8 +6493,6 @@ export interface league_seasons_var_samp_fields { min_roster_size: (Scalars['Float'] | null) playoff_best_of: (Scalars['Float'] | null) playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) relegation_down_count: (Scalars['Float'] | null) relegation_up_count: (Scalars['Float'] | null) season_number: (Scalars['Float'] | null) @@ -6536,8 +6512,6 @@ export interface league_seasons_variance_fields { min_roster_size: (Scalars['Float'] | null) playoff_best_of: (Scalars['Float'] | null) playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) relegation_down_count: (Scalars['Float'] | null) relegation_up_count: (Scalars['Float'] | null) season_number: (Scalars['Float'] | null) @@ -8792,6 +8766,7 @@ export type match_map_veto_picks_update_column = 'created_at' | 'id' | 'map_id' /** columns and relationships of "match_maps" */ export interface match_maps { + anti_wallhack_active: (Scalars['Boolean'] | null) clips_count: Scalars['Int'] created_at: Scalars['timestamptz'] /** An array relationship */ @@ -8986,7 +8961,15 @@ export interface match_maps_mutation_response { /** select columns of table "match_maps" */ -export type match_maps_select_column = 'clips_count' | 'created_at' | 'ended_at' | 'id' | 'latest_clip_at' | 'lineup_1_side' | 'lineup_1_timeouts_available' | 'lineup_2_side' | 'lineup_2_timeouts_available' | 'map_id' | 'match_id' | 'order' | 'public_clips_count' | 'public_latest_clip_at' | 'started_at' | 'status' | 'winning_lineup_id' +export type match_maps_select_column = 'anti_wallhack_active' | 'clips_count' | 'created_at' | 'ended_at' | 'id' | 'latest_clip_at' | 'lineup_1_side' | 'lineup_1_timeouts_available' | 'lineup_2_side' | 'lineup_2_timeouts_available' | 'map_id' | 'match_id' | 'order' | 'public_clips_count' | 'public_latest_clip_at' | 'started_at' | 'status' | 'winning_lineup_id' + + +/** select "match_maps_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_maps" */ +export type match_maps_select_column_match_maps_aggregate_bool_exp_bool_and_arguments_columns = 'anti_wallhack_active' + + +/** select "match_maps_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_maps" */ +export type match_maps_select_column_match_maps_aggregate_bool_exp_bool_or_arguments_columns = 'anti_wallhack_active' /** aggregate stddev on columns */ @@ -9058,7 +9041,7 @@ export interface match_maps_sum_fields { /** update columns of table "match_maps" */ -export type match_maps_update_column = 'clips_count' | 'created_at' | 'ended_at' | 'id' | 'latest_clip_at' | 'lineup_1_side' | 'lineup_1_timeouts_available' | 'lineup_2_side' | 'lineup_2_timeouts_available' | 'map_id' | 'match_id' | 'order' | 'public_clips_count' | 'public_latest_clip_at' | 'started_at' | 'status' | 'winning_lineup_id' +export type match_maps_update_column = 'anti_wallhack_active' | 'clips_count' | 'created_at' | 'ended_at' | 'id' | 'latest_clip_at' | 'lineup_1_side' | 'lineup_1_timeouts_available' | 'lineup_2_side' | 'lineup_2_timeouts_available' | 'map_id' | 'match_id' | 'order' | 'public_clips_count' | 'public_latest_clip_at' | 'started_at' | 'status' | 'winning_lineup_id' /** aggregate var_pop on columns */ @@ -9114,6 +9097,7 @@ export interface match_maps_variance_fields { /** columns and relationships of "match_options" */ export interface match_options { + anti_wallhack: Scalars['Boolean'] auto_cancel_duration: (Scalars['Int'] | null) auto_cancellation: Scalars['Boolean'] best_of: Scalars['Int'] @@ -9240,7 +9224,7 @@ export interface match_options_mutation_response { /** select columns of table "match_options" */ -export type match_options_select_column = 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'check_in_setting' | 'coaches' | 'default_models' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' +export type match_options_select_column = 'anti_wallhack' | 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'check_in_setting' | 'coaches' | 'default_models' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' /** aggregate stddev on columns */ @@ -9292,7 +9276,7 @@ export interface match_options_sum_fields { /** update columns of table "match_options" */ -export type match_options_update_column = 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'check_in_setting' | 'coaches' | 'default_models' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' +export type match_options_update_column = 'anti_wallhack' | 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'check_in_setting' | 'coaches' | 'default_models' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' /** aggregate var_pop on columns */ @@ -12246,6 +12230,7 @@ export interface my_friends { faceit_nickname: (Scalars['String'] | null) faceit_player_id: (Scalars['String'] | null) faceit_skill_level: (Scalars['Int'] | null) + faceit_synced_at: (Scalars['timestamptz'] | null) faceit_updated_at: (Scalars['timestamptz'] | null) faceit_url: (Scalars['String'] | null) friend_steam_id: (Scalars['bigint'] | null) @@ -12327,6 +12312,7 @@ export interface my_friends_max_fields { faceit_nickname: (Scalars['String'] | null) faceit_player_id: (Scalars['String'] | null) faceit_skill_level: (Scalars['Int'] | null) + faceit_synced_at: (Scalars['timestamptz'] | null) faceit_updated_at: (Scalars['timestamptz'] | null) faceit_url: (Scalars['String'] | null) friend_steam_id: (Scalars['bigint'] | null) @@ -12362,6 +12348,7 @@ export interface my_friends_min_fields { faceit_nickname: (Scalars['String'] | null) faceit_player_id: (Scalars['String'] | null) faceit_skill_level: (Scalars['Int'] | null) + faceit_synced_at: (Scalars['timestamptz'] | null) faceit_updated_at: (Scalars['timestamptz'] | null) faceit_url: (Scalars['String'] | null) friend_steam_id: (Scalars['bigint'] | null) @@ -12396,7 +12383,7 @@ export interface my_friends_mutation_response { /** select columns of table "v_my_friends" */ -export type my_friends_select_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'elo' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'friend_steam_id' | 'game_ban_count' | 'invited_by_steam_id' | 'language' | 'last_presence_state' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'presence_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'status' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' +export type my_friends_select_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'elo' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_synced_at' | 'faceit_updated_at' | 'faceit_url' | 'friend_steam_id' | 'game_ban_count' | 'invited_by_steam_id' | 'language' | 'last_presence_state' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'presence_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'status' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' /** select "my_friends_aggregate_bool_exp_bool_and_arguments_columns" columns of table "v_my_friends" */ @@ -14706,7 +14693,7 @@ export interface player_elo_variance_fields { /** columns and relationships of "player_faceit_rank_history" */ export interface player_faceit_rank_history { - elo: (Scalars['Int'] | null) + elo: Scalars['Int'] id: Scalars['uuid'] /** An object relationship */ match: matches @@ -14715,7 +14702,7 @@ export interface player_faceit_rank_history { /** An object relationship */ player: players previous_rank: (Scalars['Int'] | null) - skill_level: Scalars['Int'] + skill_level: (Scalars['Int'] | null) steam_id: Scalars['bigint'] __typename: 'player_faceit_rank_history' } @@ -19647,6 +19634,7 @@ export interface players { /** An aggregate relationship */ faceit_rank_history_aggregate: player_faceit_rank_history_aggregate faceit_skill_level: (Scalars['Int'] | null) + faceit_synced_at: (Scalars['timestamptz'] | null) faceit_updated_at: (Scalars['timestamptz'] | null) faceit_url: (Scalars['String'] | null) /** An array relationship */ @@ -19895,6 +19883,7 @@ export interface players_max_fields { faceit_nickname: (Scalars['String'] | null) faceit_player_id: (Scalars['String'] | null) faceit_skill_level: (Scalars['Int'] | null) + faceit_synced_at: (Scalars['timestamptz'] | null) faceit_updated_at: (Scalars['timestamptz'] | null) faceit_url: (Scalars['String'] | null) game_ban_count: (Scalars['Int'] | null) @@ -19947,6 +19936,7 @@ export interface players_min_fields { faceit_nickname: (Scalars['String'] | null) faceit_player_id: (Scalars['String'] | null) faceit_skill_level: (Scalars['Int'] | null) + faceit_synced_at: (Scalars['timestamptz'] | null) faceit_updated_at: (Scalars['timestamptz'] | null) faceit_url: (Scalars['String'] | null) game_ban_count: (Scalars['Int'] | null) @@ -19996,7 +19986,7 @@ export interface players_mutation_response { /** select columns of table "players" */ -export type players_select_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' +export type players_select_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_synced_at' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' /** aggregate stddev on columns */ @@ -20124,7 +20114,7 @@ export interface players_sum_fields { /** update columns of table "players" */ -export type players_update_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' +export type players_update_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_synced_at' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' /** aggregate var_pop on columns */ @@ -26608,7 +26598,6 @@ export interface tournaments { /** A computed field, executes function "tournament_has_min_teams" */ has_min_teams: (Scalars['Boolean'] | null) id: Scalars['uuid'] - is_league: Scalars['Boolean'] /** A computed field, executes function "is_tournament_organizer" */ is_organizer: (Scalars['Boolean'] | null) /** A computed field, executes function "joined_tournament" */ @@ -26757,15 +26746,15 @@ export interface tournaments_mutation_response { /** select columns of table "tournaments" */ -export type tournaments_select_column = 'auto_start' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'id' | 'is_league' | 'match_options_id' | 'name' | 'organizer_steam_id' | 'scheduling_mode' | 'start' | 'status' | 'trophies_enabled' +export type tournaments_select_column = 'auto_start' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'id' | 'match_options_id' | 'name' | 'organizer_steam_id' | 'scheduling_mode' | 'start' | 'status' | 'trophies_enabled' /** select "tournaments_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournaments" */ -export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns = 'auto_start' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_voice_enabled' | 'is_league' | 'trophies_enabled' +export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns = 'auto_start' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_voice_enabled' | 'trophies_enabled' /** select "tournaments_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournaments" */ -export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns = 'auto_start' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_voice_enabled' | 'is_league' | 'trophies_enabled' +export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns = 'auto_start' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_voice_enabled' | 'trophies_enabled' /** aggregate stddev on columns */ @@ -26813,7 +26802,7 @@ export interface tournaments_sum_fields { /** update columns of table "tournaments" */ -export type tournaments_update_column = 'auto_start' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'id' | 'is_league' | 'match_options_id' | 'name' | 'organizer_steam_id' | 'scheduling_mode' | 'start' | 'status' | 'trophies_enabled' +export type tournaments_update_column = 'auto_start' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'id' | 'match_options_id' | 'name' | 'organizer_steam_id' | 'scheduling_mode' | 'start' | 'status' | 'trophies_enabled' /** aggregate var_pop on columns */ @@ -35114,7 +35103,6 @@ export interface draft_gamesGenqlSelection{ where?: (draft_game_players_bool_exp | null)} }) regions?: boolean | number require_approval?: boolean | number - scheduled_at?: boolean | number status?: boolean | number /** An object relationship */ team_1?: teamsGenqlSelection @@ -35191,7 +35179,7 @@ export interface draft_games_avg_order_by {capacity?: (order_by | null),current_ /** Boolean expression to filter rows from the table "draft_games". All fields are combined with a logical 'AND'. */ -export interface draft_games_bool_exp {_and?: (draft_games_bool_exp[] | null),_not?: (draft_games_bool_exp | null),_or?: (draft_games_bool_exp[] | null),access?: (e_lobby_access_enum_comparison_exp | null),capacity?: (Int_comparison_exp | null),captain_selection?: (e_draft_game_captain_selection_enum_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_pick_lineup?: (Int_comparison_exp | null),draft_order?: (e_draft_game_draft_order_enum_comparison_exp | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_bool_exp | null),e_draft_game_draft_order?: (e_draft_game_draft_order_bool_exp | null),e_draft_game_mode?: (e_draft_game_mode_bool_exp | null),e_draft_game_status?: (e_draft_game_status_bool_exp | null),e_lobby_access?: (e_lobby_access_bool_exp | null),expires_at?: (timestamptz_comparison_exp | null),host?: (players_bool_exp | null),host_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),inner_squad?: (Boolean_comparison_exp | null),invite_code?: (uuid_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),max_elo?: (Int_comparison_exp | null),min_elo?: (Int_comparison_exp | null),mode?: (e_draft_game_mode_enum_comparison_exp | null),options?: (match_options_bool_exp | null),pattern?: (jsonb_comparison_exp | null),pick_deadline?: (timestamptz_comparison_exp | null),picks?: (draft_game_picks_bool_exp | null),picks_aggregate?: (draft_game_picks_aggregate_bool_exp | null),players?: (draft_game_players_bool_exp | null),players_aggregate?: (draft_game_players_aggregate_bool_exp | null),regions?: (String_array_comparison_exp | null),require_approval?: (Boolean_comparison_exp | null),scheduled_at?: (timestamptz_comparison_exp | null),status?: (e_draft_game_status_enum_comparison_exp | null),team_1?: (teams_bool_exp | null),team_1_id?: (uuid_comparison_exp | null),team_2?: (teams_bool_exp | null),team_2_id?: (uuid_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} +export interface draft_games_bool_exp {_and?: (draft_games_bool_exp[] | null),_not?: (draft_games_bool_exp | null),_or?: (draft_games_bool_exp[] | null),access?: (e_lobby_access_enum_comparison_exp | null),capacity?: (Int_comparison_exp | null),captain_selection?: (e_draft_game_captain_selection_enum_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_pick_lineup?: (Int_comparison_exp | null),draft_order?: (e_draft_game_draft_order_enum_comparison_exp | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_bool_exp | null),e_draft_game_draft_order?: (e_draft_game_draft_order_bool_exp | null),e_draft_game_mode?: (e_draft_game_mode_bool_exp | null),e_draft_game_status?: (e_draft_game_status_bool_exp | null),e_lobby_access?: (e_lobby_access_bool_exp | null),expires_at?: (timestamptz_comparison_exp | null),host?: (players_bool_exp | null),host_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),inner_squad?: (Boolean_comparison_exp | null),invite_code?: (uuid_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),max_elo?: (Int_comparison_exp | null),min_elo?: (Int_comparison_exp | null),mode?: (e_draft_game_mode_enum_comparison_exp | null),options?: (match_options_bool_exp | null),pattern?: (jsonb_comparison_exp | null),pick_deadline?: (timestamptz_comparison_exp | null),picks?: (draft_game_picks_bool_exp | null),picks_aggregate?: (draft_game_picks_aggregate_bool_exp | null),players?: (draft_game_players_bool_exp | null),players_aggregate?: (draft_game_players_aggregate_bool_exp | null),regions?: (String_array_comparison_exp | null),require_approval?: (Boolean_comparison_exp | null),status?: (e_draft_game_status_enum_comparison_exp | null),team_1?: (teams_bool_exp | null),team_1_id?: (uuid_comparison_exp | null),team_2?: (teams_bool_exp | null),team_2_id?: (uuid_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} /** input type for incrementing numeric columns in table "draft_games" */ @@ -35199,7 +35187,7 @@ export interface draft_games_inc_input {capacity?: (Scalars['Int'] | null),curre /** input type for inserting data into table "draft_games" */ -export interface draft_games_insert_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_obj_rel_insert_input | null),e_draft_game_draft_order?: (e_draft_game_draft_order_obj_rel_insert_input | null),e_draft_game_mode?: (e_draft_game_mode_obj_rel_insert_input | null),e_draft_game_status?: (e_draft_game_status_obj_rel_insert_input | null),e_lobby_access?: (e_lobby_access_obj_rel_insert_input | null),expires_at?: (Scalars['timestamptz'] | null),host?: (players_obj_rel_insert_input | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),options?: (match_options_obj_rel_insert_input | null),pick_deadline?: (Scalars['timestamptz'] | null),picks?: (draft_game_picks_arr_rel_insert_input | null),players?: (draft_game_players_arr_rel_insert_input | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),scheduled_at?: (Scalars['timestamptz'] | null),status?: (e_draft_game_status_enum | null),team_1?: (teams_obj_rel_insert_input | null),team_1_id?: (Scalars['uuid'] | null),team_2?: (teams_obj_rel_insert_input | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface draft_games_insert_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_obj_rel_insert_input | null),e_draft_game_draft_order?: (e_draft_game_draft_order_obj_rel_insert_input | null),e_draft_game_mode?: (e_draft_game_mode_obj_rel_insert_input | null),e_draft_game_status?: (e_draft_game_status_obj_rel_insert_input | null),e_lobby_access?: (e_lobby_access_obj_rel_insert_input | null),expires_at?: (Scalars['timestamptz'] | null),host?: (players_obj_rel_insert_input | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),options?: (match_options_obj_rel_insert_input | null),pick_deadline?: (Scalars['timestamptz'] | null),picks?: (draft_game_picks_arr_rel_insert_input | null),players?: (draft_game_players_arr_rel_insert_input | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),status?: (e_draft_game_status_enum | null),team_1?: (teams_obj_rel_insert_input | null),team_1_id?: (Scalars['uuid'] | null),team_2?: (teams_obj_rel_insert_input | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate max on columns */ @@ -35218,7 +35206,6 @@ export interface draft_games_max_fieldsGenqlSelection{ min_elo?: boolean | number pick_deadline?: boolean | number regions?: boolean | number - scheduled_at?: boolean | number team_1_id?: boolean | number team_2_id?: boolean | number updated_at?: boolean | number @@ -35228,7 +35215,7 @@ export interface draft_games_max_fieldsGenqlSelection{ /** order by max() on columns of table "draft_games" */ -export interface draft_games_max_order_by {capacity?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),expires_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),map_pool_id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),pick_deadline?: (order_by | null),regions?: (order_by | null),scheduled_at?: (order_by | null),team_1_id?: (order_by | null),team_2_id?: (order_by | null),updated_at?: (order_by | null)} +export interface draft_games_max_order_by {capacity?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),expires_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),map_pool_id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),pick_deadline?: (order_by | null),regions?: (order_by | null),team_1_id?: (order_by | null),team_2_id?: (order_by | null),updated_at?: (order_by | null)} /** aggregate min on columns */ @@ -35247,7 +35234,6 @@ export interface draft_games_min_fieldsGenqlSelection{ min_elo?: boolean | number pick_deadline?: boolean | number regions?: boolean | number - scheduled_at?: boolean | number team_1_id?: boolean | number team_2_id?: boolean | number updated_at?: boolean | number @@ -35257,7 +35243,7 @@ export interface draft_games_min_fieldsGenqlSelection{ /** order by min() on columns of table "draft_games" */ -export interface draft_games_min_order_by {capacity?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),expires_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),map_pool_id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),pick_deadline?: (order_by | null),regions?: (order_by | null),scheduled_at?: (order_by | null),team_1_id?: (order_by | null),team_2_id?: (order_by | null),updated_at?: (order_by | null)} +export interface draft_games_min_order_by {capacity?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),expires_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),map_pool_id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),pick_deadline?: (order_by | null),regions?: (order_by | null),team_1_id?: (order_by | null),team_2_id?: (order_by | null),updated_at?: (order_by | null)} /** response of any mutation on the table "draft_games" */ @@ -35282,7 +35268,7 @@ export interface draft_games_on_conflict {constraint: draft_games_constraint,upd /** Ordering options when selecting data from "draft_games". */ -export interface draft_games_order_by {access?: (order_by | null),capacity?: (order_by | null),captain_selection?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),draft_order?: (order_by | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_order_by | null),e_draft_game_draft_order?: (e_draft_game_draft_order_order_by | null),e_draft_game_mode?: (e_draft_game_mode_order_by | null),e_draft_game_status?: (e_draft_game_status_order_by | null),e_lobby_access?: (e_lobby_access_order_by | null),expires_at?: (order_by | null),host?: (players_order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),inner_squad?: (order_by | null),invite_code?: (order_by | null),is_organizer?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),mode?: (order_by | null),options?: (match_options_order_by | null),pattern?: (order_by | null),pick_deadline?: (order_by | null),picks_aggregate?: (draft_game_picks_aggregate_order_by | null),players_aggregate?: (draft_game_players_aggregate_order_by | null),regions?: (order_by | null),require_approval?: (order_by | null),scheduled_at?: (order_by | null),status?: (order_by | null),team_1?: (teams_order_by | null),team_1_id?: (order_by | null),team_2?: (teams_order_by | null),team_2_id?: (order_by | null),type?: (order_by | null),updated_at?: (order_by | null)} +export interface draft_games_order_by {access?: (order_by | null),capacity?: (order_by | null),captain_selection?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),draft_order?: (order_by | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_order_by | null),e_draft_game_draft_order?: (e_draft_game_draft_order_order_by | null),e_draft_game_mode?: (e_draft_game_mode_order_by | null),e_draft_game_status?: (e_draft_game_status_order_by | null),e_lobby_access?: (e_lobby_access_order_by | null),expires_at?: (order_by | null),host?: (players_order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),inner_squad?: (order_by | null),invite_code?: (order_by | null),is_organizer?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),mode?: (order_by | null),options?: (match_options_order_by | null),pattern?: (order_by | null),pick_deadline?: (order_by | null),picks_aggregate?: (draft_game_picks_aggregate_order_by | null),players_aggregate?: (draft_game_players_aggregate_order_by | null),regions?: (order_by | null),require_approval?: (order_by | null),status?: (order_by | null),team_1?: (teams_order_by | null),team_1_id?: (order_by | null),team_2?: (teams_order_by | null),team_2_id?: (order_by | null),type?: (order_by | null),updated_at?: (order_by | null)} /** primary key columns input for table: draft_games */ @@ -35290,7 +35276,7 @@ export interface draft_games_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "draft_games" */ -export interface draft_games_set_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),expires_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),pick_deadline?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),scheduled_at?: (Scalars['timestamptz'] | null),status?: (e_draft_game_status_enum | null),team_1_id?: (Scalars['uuid'] | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface draft_games_set_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),expires_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),pick_deadline?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),status?: (e_draft_game_status_enum | null),team_1_id?: (Scalars['uuid'] | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate stddev on columns */ @@ -35350,7 +35336,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface draft_games_stream_cursor_value_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),expires_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),pick_deadline?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),scheduled_at?: (Scalars['timestamptz'] | null),status?: (e_draft_game_status_enum | null),team_1_id?: (Scalars['uuid'] | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface draft_games_stream_cursor_value_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),expires_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),pick_deadline?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),status?: (e_draft_game_status_enum | null),team_1_id?: (Scalars['uuid'] | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate sum on columns */ @@ -40128,9 +40114,6 @@ export interface game_server_nodesGenqlSelection{ path?: (Scalars['String'] | null)} } | boolean | number cpu_sockets?: boolean | number cpu_threads_per_core?: boolean | number - cs2_launch_options?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number cs2_video_settings?: { __args: { /** JSON select path */ path?: (Scalars['String'] | null)} } | boolean | number @@ -40251,7 +40234,7 @@ export interface game_server_nodes_aggregate_order_by {avg?: (game_server_nodes_ /** append existing jsonb value of filtered columns with new jsonb value */ -export interface game_server_nodes_append_input {cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),gpu_info?: (Scalars['jsonb'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null)} +export interface game_server_nodes_append_input {cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),gpu_info?: (Scalars['jsonb'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null)} /** input type for inserting array relation for remote table "game_server_nodes" */ @@ -40288,19 +40271,19 @@ export interface game_server_nodes_avg_order_by {build_id?: (order_by | null),cp /** Boolean expression to filter rows from the table "game_server_nodes". All fields are combined with a logical 'AND'. */ -export interface game_server_nodes_bool_exp {_and?: (game_server_nodes_bool_exp[] | null),_not?: (game_server_nodes_bool_exp | null),_or?: (game_server_nodes_bool_exp[] | null),available_server_count?: (Int_comparison_exp | null),build_id?: (Int_comparison_exp | null),cpu_cores_per_socket?: (Int_comparison_exp | null),cpu_frequency_info?: (jsonb_comparison_exp | null),cpu_governor_info?: (jsonb_comparison_exp | null),cpu_sockets?: (Int_comparison_exp | null),cpu_threads_per_core?: (Int_comparison_exp | null),cs2_launch_options?: (jsonb_comparison_exp | null),cs2_video_settings?: (jsonb_comparison_exp | null),csgo_build_id?: (Int_comparison_exp | null),demo_network_limiter?: (Int_comparison_exp | null),disk_available_gb?: (Int_comparison_exp | null),disk_used_percent?: (Int_comparison_exp | null),e_region?: (server_regions_bool_exp | null),e_status?: (e_game_server_node_statuses_bool_exp | null),enabled?: (Boolean_comparison_exp | null),enabled_for_match_making?: (Boolean_comparison_exp | null),end_port_range?: (Int_comparison_exp | null),gpu?: (Boolean_comparison_exp | null),gpu_demos_enabled?: (Boolean_comparison_exp | null),gpu_info?: (jsonb_comparison_exp | null),gpu_rendering_enabled?: (Boolean_comparison_exp | null),gpu_streaming_enabled?: (Boolean_comparison_exp | null),id?: (String_comparison_exp | null),label?: (String_comparison_exp | null),lan_ip?: (inet_comparison_exp | null),node_ip?: (inet_comparison_exp | null),offline_at?: (timestamptz_comparison_exp | null),pin_build_id?: (Int_comparison_exp | null),pin_plugin_runtime?: (String_comparison_exp | null),pin_plugin_version?: (String_comparison_exp | null),pinned_version?: (game_versions_bool_exp | null),plugin_supported?: (Boolean_comparison_exp | null),public_ip?: (inet_comparison_exp | null),region?: (String_comparison_exp | null),servers?: (servers_bool_exp | null),servers_aggregate?: (servers_aggregate_bool_exp | null),shader_bake_progress?: (numeric_comparison_exp | null),shader_bake_progress_stage?: (String_comparison_exp | null),shader_bake_status?: (String_comparison_exp | null),shader_bake_status_history?: (jsonb_comparison_exp | null),start_port_range?: (Int_comparison_exp | null),status?: (e_game_server_node_statuses_enum_comparison_exp | null),supports_cpu_pinning?: (Boolean_comparison_exp | null),supports_low_latency?: (Boolean_comparison_exp | null),token?: (String_comparison_exp | null),total_server_count?: (Int_comparison_exp | null),update_status?: (String_comparison_exp | null),version?: (game_versions_bool_exp | null)} +export interface game_server_nodes_bool_exp {_and?: (game_server_nodes_bool_exp[] | null),_not?: (game_server_nodes_bool_exp | null),_or?: (game_server_nodes_bool_exp[] | null),available_server_count?: (Int_comparison_exp | null),build_id?: (Int_comparison_exp | null),cpu_cores_per_socket?: (Int_comparison_exp | null),cpu_frequency_info?: (jsonb_comparison_exp | null),cpu_governor_info?: (jsonb_comparison_exp | null),cpu_sockets?: (Int_comparison_exp | null),cpu_threads_per_core?: (Int_comparison_exp | null),cs2_video_settings?: (jsonb_comparison_exp | null),csgo_build_id?: (Int_comparison_exp | null),demo_network_limiter?: (Int_comparison_exp | null),disk_available_gb?: (Int_comparison_exp | null),disk_used_percent?: (Int_comparison_exp | null),e_region?: (server_regions_bool_exp | null),e_status?: (e_game_server_node_statuses_bool_exp | null),enabled?: (Boolean_comparison_exp | null),enabled_for_match_making?: (Boolean_comparison_exp | null),end_port_range?: (Int_comparison_exp | null),gpu?: (Boolean_comparison_exp | null),gpu_demos_enabled?: (Boolean_comparison_exp | null),gpu_info?: (jsonb_comparison_exp | null),gpu_rendering_enabled?: (Boolean_comparison_exp | null),gpu_streaming_enabled?: (Boolean_comparison_exp | null),id?: (String_comparison_exp | null),label?: (String_comparison_exp | null),lan_ip?: (inet_comparison_exp | null),node_ip?: (inet_comparison_exp | null),offline_at?: (timestamptz_comparison_exp | null),pin_build_id?: (Int_comparison_exp | null),pin_plugin_runtime?: (String_comparison_exp | null),pin_plugin_version?: (String_comparison_exp | null),pinned_version?: (game_versions_bool_exp | null),plugin_supported?: (Boolean_comparison_exp | null),public_ip?: (inet_comparison_exp | null),region?: (String_comparison_exp | null),servers?: (servers_bool_exp | null),servers_aggregate?: (servers_aggregate_bool_exp | null),shader_bake_progress?: (numeric_comparison_exp | null),shader_bake_progress_stage?: (String_comparison_exp | null),shader_bake_status?: (String_comparison_exp | null),shader_bake_status_history?: (jsonb_comparison_exp | null),start_port_range?: (Int_comparison_exp | null),status?: (e_game_server_node_statuses_enum_comparison_exp | null),supports_cpu_pinning?: (Boolean_comparison_exp | null),supports_low_latency?: (Boolean_comparison_exp | null),token?: (String_comparison_exp | null),total_server_count?: (Int_comparison_exp | null),update_status?: (String_comparison_exp | null),version?: (game_versions_bool_exp | null)} /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface game_server_nodes_delete_at_path_input {cpu_frequency_info?: (Scalars['String'][] | null),cpu_governor_info?: (Scalars['String'][] | null),cs2_launch_options?: (Scalars['String'][] | null),cs2_video_settings?: (Scalars['String'][] | null),gpu_info?: (Scalars['String'][] | null),shader_bake_status_history?: (Scalars['String'][] | null)} +export interface game_server_nodes_delete_at_path_input {cpu_frequency_info?: (Scalars['String'][] | null),cpu_governor_info?: (Scalars['String'][] | null),cs2_video_settings?: (Scalars['String'][] | null),gpu_info?: (Scalars['String'][] | null),shader_bake_status_history?: (Scalars['String'][] | null)} /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ -export interface game_server_nodes_delete_elem_input {cpu_frequency_info?: (Scalars['Int'] | null),cpu_governor_info?: (Scalars['Int'] | null),cs2_launch_options?: (Scalars['Int'] | null),cs2_video_settings?: (Scalars['Int'] | null),gpu_info?: (Scalars['Int'] | null),shader_bake_status_history?: (Scalars['Int'] | null)} +export interface game_server_nodes_delete_elem_input {cpu_frequency_info?: (Scalars['Int'] | null),cpu_governor_info?: (Scalars['Int'] | null),cs2_video_settings?: (Scalars['Int'] | null),gpu_info?: (Scalars['Int'] | null),shader_bake_status_history?: (Scalars['Int'] | null)} /** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface game_server_nodes_delete_key_input {cpu_frequency_info?: (Scalars['String'] | null),cpu_governor_info?: (Scalars['String'] | null),cs2_launch_options?: (Scalars['String'] | null),cs2_video_settings?: (Scalars['String'] | null),gpu_info?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['String'] | null)} +export interface game_server_nodes_delete_key_input {cpu_frequency_info?: (Scalars['String'] | null),cpu_governor_info?: (Scalars['String'] | null),cs2_video_settings?: (Scalars['String'] | null),gpu_info?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['String'] | null)} /** input type for incrementing numeric columns in table "game_server_nodes" */ @@ -40308,7 +40291,7 @@ export interface game_server_nodes_inc_input {build_id?: (Scalars['Int'] | null) /** input type for inserting data into table "game_server_nodes" */ -export interface game_server_nodes_insert_input {build_id?: (Scalars['Int'] | null),cpu_cores_per_socket?: (Scalars['Int'] | null),cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_sockets?: (Scalars['Int'] | null),cpu_threads_per_core?: (Scalars['Int'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),csgo_build_id?: (Scalars['Int'] | null),demo_network_limiter?: (Scalars['Int'] | null),disk_available_gb?: (Scalars['Int'] | null),disk_used_percent?: (Scalars['Int'] | null),e_region?: (server_regions_obj_rel_insert_input | null),e_status?: (e_game_server_node_statuses_obj_rel_insert_input | null),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),label?: (Scalars['String'] | null),lan_ip?: (Scalars['inet'] | null),node_ip?: (Scalars['inet'] | null),offline_at?: (Scalars['timestamptz'] | null),pin_build_id?: (Scalars['Int'] | null),pin_plugin_runtime?: (Scalars['String'] | null),pin_plugin_version?: (Scalars['String'] | null),pinned_version?: (game_versions_obj_rel_insert_input | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),servers?: (servers_arr_rel_insert_input | null),shader_bake_progress?: (Scalars['numeric'] | null),shader_bake_progress_stage?: (Scalars['String'] | null),shader_bake_status?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null),version?: (game_versions_obj_rel_insert_input | null)} +export interface game_server_nodes_insert_input {build_id?: (Scalars['Int'] | null),cpu_cores_per_socket?: (Scalars['Int'] | null),cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_sockets?: (Scalars['Int'] | null),cpu_threads_per_core?: (Scalars['Int'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),csgo_build_id?: (Scalars['Int'] | null),demo_network_limiter?: (Scalars['Int'] | null),disk_available_gb?: (Scalars['Int'] | null),disk_used_percent?: (Scalars['Int'] | null),e_region?: (server_regions_obj_rel_insert_input | null),e_status?: (e_game_server_node_statuses_obj_rel_insert_input | null),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),label?: (Scalars['String'] | null),lan_ip?: (Scalars['inet'] | null),node_ip?: (Scalars['inet'] | null),offline_at?: (Scalars['timestamptz'] | null),pin_build_id?: (Scalars['Int'] | null),pin_plugin_runtime?: (Scalars['String'] | null),pin_plugin_version?: (Scalars['String'] | null),pinned_version?: (game_versions_obj_rel_insert_input | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),servers?: (servers_arr_rel_insert_input | null),shader_bake_progress?: (Scalars['numeric'] | null),shader_bake_progress_stage?: (Scalars['String'] | null),shader_bake_status?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null),version?: (game_versions_obj_rel_insert_input | null)} /** aggregate max on columns */ @@ -40407,7 +40390,7 @@ export interface game_server_nodes_on_conflict {constraint: game_server_nodes_co /** Ordering options when selecting data from "game_server_nodes". */ -export interface game_server_nodes_order_by {available_server_count?: (order_by | null),build_id?: (order_by | null),cpu_cores_per_socket?: (order_by | null),cpu_frequency_info?: (order_by | null),cpu_governor_info?: (order_by | null),cpu_sockets?: (order_by | null),cpu_threads_per_core?: (order_by | null),cs2_launch_options?: (order_by | null),cs2_video_settings?: (order_by | null),csgo_build_id?: (order_by | null),demo_network_limiter?: (order_by | null),disk_available_gb?: (order_by | null),disk_used_percent?: (order_by | null),e_region?: (server_regions_order_by | null),e_status?: (e_game_server_node_statuses_order_by | null),enabled?: (order_by | null),enabled_for_match_making?: (order_by | null),end_port_range?: (order_by | null),gpu?: (order_by | null),gpu_demos_enabled?: (order_by | null),gpu_info?: (order_by | null),gpu_rendering_enabled?: (order_by | null),gpu_streaming_enabled?: (order_by | null),id?: (order_by | null),label?: (order_by | null),lan_ip?: (order_by | null),node_ip?: (order_by | null),offline_at?: (order_by | null),pin_build_id?: (order_by | null),pin_plugin_runtime?: (order_by | null),pin_plugin_version?: (order_by | null),pinned_version?: (game_versions_order_by | null),plugin_supported?: (order_by | null),public_ip?: (order_by | null),region?: (order_by | null),servers_aggregate?: (servers_aggregate_order_by | null),shader_bake_progress?: (order_by | null),shader_bake_progress_stage?: (order_by | null),shader_bake_status?: (order_by | null),shader_bake_status_history?: (order_by | null),start_port_range?: (order_by | null),status?: (order_by | null),supports_cpu_pinning?: (order_by | null),supports_low_latency?: (order_by | null),token?: (order_by | null),total_server_count?: (order_by | null),update_status?: (order_by | null),version?: (game_versions_order_by | null)} +export interface game_server_nodes_order_by {available_server_count?: (order_by | null),build_id?: (order_by | null),cpu_cores_per_socket?: (order_by | null),cpu_frequency_info?: (order_by | null),cpu_governor_info?: (order_by | null),cpu_sockets?: (order_by | null),cpu_threads_per_core?: (order_by | null),cs2_video_settings?: (order_by | null),csgo_build_id?: (order_by | null),demo_network_limiter?: (order_by | null),disk_available_gb?: (order_by | null),disk_used_percent?: (order_by | null),e_region?: (server_regions_order_by | null),e_status?: (e_game_server_node_statuses_order_by | null),enabled?: (order_by | null),enabled_for_match_making?: (order_by | null),end_port_range?: (order_by | null),gpu?: (order_by | null),gpu_demos_enabled?: (order_by | null),gpu_info?: (order_by | null),gpu_rendering_enabled?: (order_by | null),gpu_streaming_enabled?: (order_by | null),id?: (order_by | null),label?: (order_by | null),lan_ip?: (order_by | null),node_ip?: (order_by | null),offline_at?: (order_by | null),pin_build_id?: (order_by | null),pin_plugin_runtime?: (order_by | null),pin_plugin_version?: (order_by | null),pinned_version?: (game_versions_order_by | null),plugin_supported?: (order_by | null),public_ip?: (order_by | null),region?: (order_by | null),servers_aggregate?: (servers_aggregate_order_by | null),shader_bake_progress?: (order_by | null),shader_bake_progress_stage?: (order_by | null),shader_bake_status?: (order_by | null),shader_bake_status_history?: (order_by | null),start_port_range?: (order_by | null),status?: (order_by | null),supports_cpu_pinning?: (order_by | null),supports_low_latency?: (order_by | null),token?: (order_by | null),total_server_count?: (order_by | null),update_status?: (order_by | null),version?: (game_versions_order_by | null)} /** primary key columns input for table: game_server_nodes */ @@ -40415,11 +40398,11 @@ export interface game_server_nodes_pk_columns_input {id: Scalars['String']} /** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface game_server_nodes_prepend_input {cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),gpu_info?: (Scalars['jsonb'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null)} +export interface game_server_nodes_prepend_input {cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),gpu_info?: (Scalars['jsonb'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null)} /** input type for updating data in table "game_server_nodes" */ -export interface game_server_nodes_set_input {build_id?: (Scalars['Int'] | null),cpu_cores_per_socket?: (Scalars['Int'] | null),cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_sockets?: (Scalars['Int'] | null),cpu_threads_per_core?: (Scalars['Int'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),csgo_build_id?: (Scalars['Int'] | null),demo_network_limiter?: (Scalars['Int'] | null),disk_available_gb?: (Scalars['Int'] | null),disk_used_percent?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),label?: (Scalars['String'] | null),lan_ip?: (Scalars['inet'] | null),node_ip?: (Scalars['inet'] | null),offline_at?: (Scalars['timestamptz'] | null),pin_build_id?: (Scalars['Int'] | null),pin_plugin_runtime?: (Scalars['String'] | null),pin_plugin_version?: (Scalars['String'] | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),shader_bake_progress?: (Scalars['numeric'] | null),shader_bake_progress_stage?: (Scalars['String'] | null),shader_bake_status?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null)} +export interface game_server_nodes_set_input {build_id?: (Scalars['Int'] | null),cpu_cores_per_socket?: (Scalars['Int'] | null),cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_sockets?: (Scalars['Int'] | null),cpu_threads_per_core?: (Scalars['Int'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),csgo_build_id?: (Scalars['Int'] | null),demo_network_limiter?: (Scalars['Int'] | null),disk_available_gb?: (Scalars['Int'] | null),disk_used_percent?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),label?: (Scalars['String'] | null),lan_ip?: (Scalars['inet'] | null),node_ip?: (Scalars['inet'] | null),offline_at?: (Scalars['timestamptz'] | null),pin_build_id?: (Scalars['Int'] | null),pin_plugin_runtime?: (Scalars['String'] | null),pin_plugin_version?: (Scalars['String'] | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),shader_bake_progress?: (Scalars['numeric'] | null),shader_bake_progress_stage?: (Scalars['String'] | null),shader_bake_status?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null)} /** aggregate stddev on columns */ @@ -40512,7 +40495,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface game_server_nodes_stream_cursor_value_input {build_id?: (Scalars['Int'] | null),cpu_cores_per_socket?: (Scalars['Int'] | null),cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_sockets?: (Scalars['Int'] | null),cpu_threads_per_core?: (Scalars['Int'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),csgo_build_id?: (Scalars['Int'] | null),demo_network_limiter?: (Scalars['Int'] | null),disk_available_gb?: (Scalars['Int'] | null),disk_used_percent?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),label?: (Scalars['String'] | null),lan_ip?: (Scalars['inet'] | null),node_ip?: (Scalars['inet'] | null),offline_at?: (Scalars['timestamptz'] | null),pin_build_id?: (Scalars['Int'] | null),pin_plugin_runtime?: (Scalars['String'] | null),pin_plugin_version?: (Scalars['String'] | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),shader_bake_progress?: (Scalars['numeric'] | null),shader_bake_progress_stage?: (Scalars['String'] | null),shader_bake_status?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null)} +export interface game_server_nodes_stream_cursor_value_input {build_id?: (Scalars['Int'] | null),cpu_cores_per_socket?: (Scalars['Int'] | null),cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_sockets?: (Scalars['Int'] | null),cpu_threads_per_core?: (Scalars['Int'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),csgo_build_id?: (Scalars['Int'] | null),demo_network_limiter?: (Scalars['Int'] | null),disk_available_gb?: (Scalars['Int'] | null),disk_used_percent?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),label?: (Scalars['String'] | null),lan_ip?: (Scalars['inet'] | null),node_ip?: (Scalars['inet'] | null),offline_at?: (Scalars['timestamptz'] | null),pin_build_id?: (Scalars['Int'] | null),pin_plugin_runtime?: (Scalars['String'] | null),pin_plugin_version?: (Scalars['String'] | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),shader_bake_progress?: (Scalars['numeric'] | null),shader_bake_progress_stage?: (Scalars['String'] | null),shader_bake_status?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null)} /** aggregate sum on columns */ @@ -42595,9 +42578,7 @@ export interface league_seasonsGenqlSelection{ playoff_seats?: boolean | number playoff_stage_type?: boolean | number playoff_third_place_match?: boolean | number - promote_count?: boolean | number regular_season_stage_type?: boolean | number - relegate_count?: boolean | number relegation_down_count?: boolean | number /** An array relationship */ relegation_playoffs?: (league_relegation_playoffsGenqlSelection & { __args?: { @@ -42753,8 +42734,6 @@ export interface league_seasons_avg_fieldsGenqlSelection{ min_roster_size?: boolean | number playoff_best_of?: boolean | number playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number relegation_down_count?: boolean | number relegation_up_count?: boolean | number season_number?: boolean | number @@ -42764,7 +42743,7 @@ export interface league_seasons_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "league_seasons". All fields are combined with a logical 'AND'. */ -export interface league_seasons_bool_exp {_and?: (league_seasons_bool_exp[] | null),_not?: (league_seasons_bool_exp | null),_or?: (league_seasons_bool_exp[] | null),auto_regular_season_format?: (Boolean_comparison_exp | null),can_register?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),created_by_steam_id?: (bigint_comparison_exp | null),default_best_of?: (Int_comparison_exp | null),direct_promote_count?: (Int_comparison_exp | null),direct_relegate_count?: (Int_comparison_exp | null),e_league_season_status?: (e_league_season_statuses_bool_exp | null),games_per_week?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),is_league_admin?: (Boolean_comparison_exp | null),is_roster_locked?: (Boolean_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),match_weeks?: (league_match_weeks_bool_exp | null),match_weeks_aggregate?: (league_match_weeks_aggregate_bool_exp | null),match_weeks_count?: (Int_comparison_exp | null),max_roster_size?: (Int_comparison_exp | null),min_roster_size?: (Int_comparison_exp | null),movements?: (league_team_movements_bool_exp | null),movements_aggregate?: (league_team_movements_aggregate_bool_exp | null),my_registration?: (league_team_seasons_bool_exp | null),name?: (String_comparison_exp | null),options?: (match_options_bool_exp | null),player_stats?: (v_league_season_player_stats_bool_exp | null),player_stats_aggregate?: (v_league_season_player_stats_aggregate_bool_exp | null),playoff_best_of?: (Int_comparison_exp | null),playoff_round_best_of?: (jsonb_comparison_exp | null),playoff_seats?: (Int_comparison_exp | null),playoff_stage_type?: (e_tournament_stage_types_enum_comparison_exp | null),playoff_third_place_match?: (Boolean_comparison_exp | null),promote_count?: (Int_comparison_exp | null),regular_season_stage_type?: (e_tournament_stage_types_enum_comparison_exp | null),relegate_count?: (Int_comparison_exp | null),relegation_down_count?: (Int_comparison_exp | null),relegation_playoffs?: (league_relegation_playoffs_bool_exp | null),relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregate_bool_exp | null),relegation_up_count?: (Int_comparison_exp | null),roster_lock_at?: (timestamptz_comparison_exp | null),season_divisions?: (league_season_divisions_bool_exp | null),season_divisions_aggregate?: (league_season_divisions_aggregate_bool_exp | null),season_number?: (Int_comparison_exp | null),signup_closes_at?: (timestamptz_comparison_exp | null),signup_opens_at?: (timestamptz_comparison_exp | null),standings?: (v_league_division_standings_bool_exp | null),standings_aggregate?: (v_league_division_standings_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null),status?: (e_league_season_statuses_enum_comparison_exp | null),team_seasons?: (league_team_seasons_bool_exp | null),team_seasons_aggregate?: (league_team_seasons_aggregate_bool_exp | null),week_best_of?: (jsonb_comparison_exp | null)} +export interface league_seasons_bool_exp {_and?: (league_seasons_bool_exp[] | null),_not?: (league_seasons_bool_exp | null),_or?: (league_seasons_bool_exp[] | null),auto_regular_season_format?: (Boolean_comparison_exp | null),can_register?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),created_by_steam_id?: (bigint_comparison_exp | null),default_best_of?: (Int_comparison_exp | null),direct_promote_count?: (Int_comparison_exp | null),direct_relegate_count?: (Int_comparison_exp | null),e_league_season_status?: (e_league_season_statuses_bool_exp | null),games_per_week?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),is_league_admin?: (Boolean_comparison_exp | null),is_roster_locked?: (Boolean_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),match_weeks?: (league_match_weeks_bool_exp | null),match_weeks_aggregate?: (league_match_weeks_aggregate_bool_exp | null),match_weeks_count?: (Int_comparison_exp | null),max_roster_size?: (Int_comparison_exp | null),min_roster_size?: (Int_comparison_exp | null),movements?: (league_team_movements_bool_exp | null),movements_aggregate?: (league_team_movements_aggregate_bool_exp | null),my_registration?: (league_team_seasons_bool_exp | null),name?: (String_comparison_exp | null),options?: (match_options_bool_exp | null),player_stats?: (v_league_season_player_stats_bool_exp | null),player_stats_aggregate?: (v_league_season_player_stats_aggregate_bool_exp | null),playoff_best_of?: (Int_comparison_exp | null),playoff_round_best_of?: (jsonb_comparison_exp | null),playoff_seats?: (Int_comparison_exp | null),playoff_stage_type?: (e_tournament_stage_types_enum_comparison_exp | null),playoff_third_place_match?: (Boolean_comparison_exp | null),regular_season_stage_type?: (e_tournament_stage_types_enum_comparison_exp | null),relegation_down_count?: (Int_comparison_exp | null),relegation_playoffs?: (league_relegation_playoffs_bool_exp | null),relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregate_bool_exp | null),relegation_up_count?: (Int_comparison_exp | null),roster_lock_at?: (timestamptz_comparison_exp | null),season_divisions?: (league_season_divisions_bool_exp | null),season_divisions_aggregate?: (league_season_divisions_aggregate_bool_exp | null),season_number?: (Int_comparison_exp | null),signup_closes_at?: (timestamptz_comparison_exp | null),signup_opens_at?: (timestamptz_comparison_exp | null),standings?: (v_league_division_standings_bool_exp | null),standings_aggregate?: (v_league_division_standings_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null),status?: (e_league_season_statuses_enum_comparison_exp | null),team_seasons?: (league_team_seasons_bool_exp | null),team_seasons_aggregate?: (league_team_seasons_aggregate_bool_exp | null),week_best_of?: (jsonb_comparison_exp | null)} /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ @@ -42780,11 +42759,11 @@ export interface league_seasons_delete_key_input {playoff_round_best_of?: (Scala /** input type for incrementing numeric columns in table "league_seasons" */ -export interface league_seasons_inc_input {created_by_steam_id?: (Scalars['bigint'] | null),default_best_of?: (Scalars['Int'] | null),direct_promote_count?: (Scalars['Int'] | null),direct_relegate_count?: (Scalars['Int'] | null),games_per_week?: (Scalars['Int'] | null),match_weeks_count?: (Scalars['Int'] | null),max_roster_size?: (Scalars['Int'] | null),min_roster_size?: (Scalars['Int'] | null),playoff_best_of?: (Scalars['Int'] | null),playoff_seats?: (Scalars['Int'] | null),promote_count?: (Scalars['Int'] | null),relegate_count?: (Scalars['Int'] | null),relegation_down_count?: (Scalars['Int'] | null),relegation_up_count?: (Scalars['Int'] | null),season_number?: (Scalars['Int'] | null)} +export interface league_seasons_inc_input {created_by_steam_id?: (Scalars['bigint'] | null),default_best_of?: (Scalars['Int'] | null),direct_promote_count?: (Scalars['Int'] | null),direct_relegate_count?: (Scalars['Int'] | null),games_per_week?: (Scalars['Int'] | null),match_weeks_count?: (Scalars['Int'] | null),max_roster_size?: (Scalars['Int'] | null),min_roster_size?: (Scalars['Int'] | null),playoff_best_of?: (Scalars['Int'] | null),playoff_seats?: (Scalars['Int'] | null),relegation_down_count?: (Scalars['Int'] | null),relegation_up_count?: (Scalars['Int'] | null),season_number?: (Scalars['Int'] | null)} /** input type for inserting data into table "league_seasons" */ -export interface league_seasons_insert_input {auto_regular_season_format?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),default_best_of?: (Scalars['Int'] | null),direct_promote_count?: (Scalars['Int'] | null),direct_relegate_count?: (Scalars['Int'] | null),e_league_season_status?: (e_league_season_statuses_obj_rel_insert_input | null),games_per_week?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),match_weeks?: (league_match_weeks_arr_rel_insert_input | null),match_weeks_count?: (Scalars['Int'] | null),max_roster_size?: (Scalars['Int'] | null),min_roster_size?: (Scalars['Int'] | null),movements?: (league_team_movements_arr_rel_insert_input | null),name?: (Scalars['String'] | null),options?: (match_options_obj_rel_insert_input | null),player_stats?: (v_league_season_player_stats_arr_rel_insert_input | null),playoff_best_of?: (Scalars['Int'] | null),playoff_round_best_of?: (Scalars['jsonb'] | null),playoff_seats?: (Scalars['Int'] | null),playoff_stage_type?: (e_tournament_stage_types_enum | null),playoff_third_place_match?: (Scalars['Boolean'] | null),promote_count?: (Scalars['Int'] | null),regular_season_stage_type?: (e_tournament_stage_types_enum | null),relegate_count?: (Scalars['Int'] | null),relegation_down_count?: (Scalars['Int'] | null),relegation_playoffs?: (league_relegation_playoffs_arr_rel_insert_input | null),relegation_up_count?: (Scalars['Int'] | null),roster_lock_at?: (Scalars['timestamptz'] | null),season_divisions?: (league_season_divisions_arr_rel_insert_input | null),season_number?: (Scalars['Int'] | null),signup_closes_at?: (Scalars['timestamptz'] | null),signup_opens_at?: (Scalars['timestamptz'] | null),standings?: (v_league_division_standings_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_league_season_statuses_enum | null),team_seasons?: (league_team_seasons_arr_rel_insert_input | null),week_best_of?: (Scalars['jsonb'] | null)} +export interface league_seasons_insert_input {auto_regular_season_format?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),default_best_of?: (Scalars['Int'] | null),direct_promote_count?: (Scalars['Int'] | null),direct_relegate_count?: (Scalars['Int'] | null),e_league_season_status?: (e_league_season_statuses_obj_rel_insert_input | null),games_per_week?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),match_weeks?: (league_match_weeks_arr_rel_insert_input | null),match_weeks_count?: (Scalars['Int'] | null),max_roster_size?: (Scalars['Int'] | null),min_roster_size?: (Scalars['Int'] | null),movements?: (league_team_movements_arr_rel_insert_input | null),name?: (Scalars['String'] | null),options?: (match_options_obj_rel_insert_input | null),player_stats?: (v_league_season_player_stats_arr_rel_insert_input | null),playoff_best_of?: (Scalars['Int'] | null),playoff_round_best_of?: (Scalars['jsonb'] | null),playoff_seats?: (Scalars['Int'] | null),playoff_stage_type?: (e_tournament_stage_types_enum | null),playoff_third_place_match?: (Scalars['Boolean'] | null),regular_season_stage_type?: (e_tournament_stage_types_enum | null),relegation_down_count?: (Scalars['Int'] | null),relegation_playoffs?: (league_relegation_playoffs_arr_rel_insert_input | null),relegation_up_count?: (Scalars['Int'] | null),roster_lock_at?: (Scalars['timestamptz'] | null),season_divisions?: (league_season_divisions_arr_rel_insert_input | null),season_number?: (Scalars['Int'] | null),signup_closes_at?: (Scalars['timestamptz'] | null),signup_opens_at?: (Scalars['timestamptz'] | null),standings?: (v_league_division_standings_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_league_season_statuses_enum | null),team_seasons?: (league_team_seasons_arr_rel_insert_input | null),week_best_of?: (Scalars['jsonb'] | null)} /** aggregate max on columns */ @@ -42803,8 +42782,6 @@ export interface league_seasons_max_fieldsGenqlSelection{ name?: boolean | number playoff_best_of?: boolean | number playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number relegation_down_count?: boolean | number relegation_up_count?: boolean | number roster_lock_at?: boolean | number @@ -42833,8 +42810,6 @@ export interface league_seasons_min_fieldsGenqlSelection{ name?: boolean | number playoff_best_of?: boolean | number playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number relegation_down_count?: boolean | number relegation_up_count?: boolean | number roster_lock_at?: boolean | number @@ -42869,7 +42844,7 @@ export interface league_seasons_on_conflict {constraint: league_seasons_constrai /** Ordering options when selecting data from "league_seasons". */ -export interface league_seasons_order_by {auto_regular_season_format?: (order_by | null),can_register?: (order_by | null),created_at?: (order_by | null),created_by_steam_id?: (order_by | null),default_best_of?: (order_by | null),direct_promote_count?: (order_by | null),direct_relegate_count?: (order_by | null),e_league_season_status?: (e_league_season_statuses_order_by | null),games_per_week?: (order_by | null),id?: (order_by | null),is_league_admin?: (order_by | null),is_roster_locked?: (order_by | null),match_options_id?: (order_by | null),match_weeks_aggregate?: (league_match_weeks_aggregate_order_by | null),match_weeks_count?: (order_by | null),max_roster_size?: (order_by | null),min_roster_size?: (order_by | null),movements_aggregate?: (league_team_movements_aggregate_order_by | null),my_registration_aggregate?: (league_team_seasons_aggregate_order_by | null),name?: (order_by | null),options?: (match_options_order_by | null),player_stats_aggregate?: (v_league_season_player_stats_aggregate_order_by | null),playoff_best_of?: (order_by | null),playoff_round_best_of?: (order_by | null),playoff_seats?: (order_by | null),playoff_stage_type?: (order_by | null),playoff_third_place_match?: (order_by | null),promote_count?: (order_by | null),regular_season_stage_type?: (order_by | null),relegate_count?: (order_by | null),relegation_down_count?: (order_by | null),relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregate_order_by | null),relegation_up_count?: (order_by | null),roster_lock_at?: (order_by | null),season_divisions_aggregate?: (league_season_divisions_aggregate_order_by | null),season_number?: (order_by | null),signup_closes_at?: (order_by | null),signup_opens_at?: (order_by | null),standings_aggregate?: (v_league_division_standings_aggregate_order_by | null),starts_at?: (order_by | null),status?: (order_by | null),team_seasons_aggregate?: (league_team_seasons_aggregate_order_by | null),week_best_of?: (order_by | null)} +export interface league_seasons_order_by {auto_regular_season_format?: (order_by | null),can_register?: (order_by | null),created_at?: (order_by | null),created_by_steam_id?: (order_by | null),default_best_of?: (order_by | null),direct_promote_count?: (order_by | null),direct_relegate_count?: (order_by | null),e_league_season_status?: (e_league_season_statuses_order_by | null),games_per_week?: (order_by | null),id?: (order_by | null),is_league_admin?: (order_by | null),is_roster_locked?: (order_by | null),match_options_id?: (order_by | null),match_weeks_aggregate?: (league_match_weeks_aggregate_order_by | null),match_weeks_count?: (order_by | null),max_roster_size?: (order_by | null),min_roster_size?: (order_by | null),movements_aggregate?: (league_team_movements_aggregate_order_by | null),my_registration_aggregate?: (league_team_seasons_aggregate_order_by | null),name?: (order_by | null),options?: (match_options_order_by | null),player_stats_aggregate?: (v_league_season_player_stats_aggregate_order_by | null),playoff_best_of?: (order_by | null),playoff_round_best_of?: (order_by | null),playoff_seats?: (order_by | null),playoff_stage_type?: (order_by | null),playoff_third_place_match?: (order_by | null),regular_season_stage_type?: (order_by | null),relegation_down_count?: (order_by | null),relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregate_order_by | null),relegation_up_count?: (order_by | null),roster_lock_at?: (order_by | null),season_divisions_aggregate?: (league_season_divisions_aggregate_order_by | null),season_number?: (order_by | null),signup_closes_at?: (order_by | null),signup_opens_at?: (order_by | null),standings_aggregate?: (v_league_division_standings_aggregate_order_by | null),starts_at?: (order_by | null),status?: (order_by | null),team_seasons_aggregate?: (league_team_seasons_aggregate_order_by | null),week_best_of?: (order_by | null)} /** primary key columns input for table: league_seasons */ @@ -42881,7 +42856,7 @@ export interface league_seasons_prepend_input {playoff_round_best_of?: (Scalars[ /** input type for updating data in table "league_seasons" */ -export interface league_seasons_set_input {auto_regular_season_format?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),default_best_of?: (Scalars['Int'] | null),direct_promote_count?: (Scalars['Int'] | null),direct_relegate_count?: (Scalars['Int'] | null),games_per_week?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),match_weeks_count?: (Scalars['Int'] | null),max_roster_size?: (Scalars['Int'] | null),min_roster_size?: (Scalars['Int'] | null),name?: (Scalars['String'] | null),playoff_best_of?: (Scalars['Int'] | null),playoff_round_best_of?: (Scalars['jsonb'] | null),playoff_seats?: (Scalars['Int'] | null),playoff_stage_type?: (e_tournament_stage_types_enum | null),playoff_third_place_match?: (Scalars['Boolean'] | null),promote_count?: (Scalars['Int'] | null),regular_season_stage_type?: (e_tournament_stage_types_enum | null),relegate_count?: (Scalars['Int'] | null),relegation_down_count?: (Scalars['Int'] | null),relegation_up_count?: (Scalars['Int'] | null),roster_lock_at?: (Scalars['timestamptz'] | null),season_number?: (Scalars['Int'] | null),signup_closes_at?: (Scalars['timestamptz'] | null),signup_opens_at?: (Scalars['timestamptz'] | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_league_season_statuses_enum | null),week_best_of?: (Scalars['jsonb'] | null)} +export interface league_seasons_set_input {auto_regular_season_format?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),default_best_of?: (Scalars['Int'] | null),direct_promote_count?: (Scalars['Int'] | null),direct_relegate_count?: (Scalars['Int'] | null),games_per_week?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),match_weeks_count?: (Scalars['Int'] | null),max_roster_size?: (Scalars['Int'] | null),min_roster_size?: (Scalars['Int'] | null),name?: (Scalars['String'] | null),playoff_best_of?: (Scalars['Int'] | null),playoff_round_best_of?: (Scalars['jsonb'] | null),playoff_seats?: (Scalars['Int'] | null),playoff_stage_type?: (e_tournament_stage_types_enum | null),playoff_third_place_match?: (Scalars['Boolean'] | null),regular_season_stage_type?: (e_tournament_stage_types_enum | null),relegation_down_count?: (Scalars['Int'] | null),relegation_up_count?: (Scalars['Int'] | null),roster_lock_at?: (Scalars['timestamptz'] | null),season_number?: (Scalars['Int'] | null),signup_closes_at?: (Scalars['timestamptz'] | null),signup_opens_at?: (Scalars['timestamptz'] | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_league_season_statuses_enum | null),week_best_of?: (Scalars['jsonb'] | null)} /** aggregate stddev on columns */ @@ -42896,8 +42871,6 @@ export interface league_seasons_stddev_fieldsGenqlSelection{ min_roster_size?: boolean | number playoff_best_of?: boolean | number playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number relegation_down_count?: boolean | number relegation_up_count?: boolean | number season_number?: boolean | number @@ -42918,8 +42891,6 @@ export interface league_seasons_stddev_pop_fieldsGenqlSelection{ min_roster_size?: boolean | number playoff_best_of?: boolean | number playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number relegation_down_count?: boolean | number relegation_up_count?: boolean | number season_number?: boolean | number @@ -42940,8 +42911,6 @@ export interface league_seasons_stddev_samp_fieldsGenqlSelection{ min_roster_size?: boolean | number playoff_best_of?: boolean | number playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number relegation_down_count?: boolean | number relegation_up_count?: boolean | number season_number?: boolean | number @@ -42959,7 +42928,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface league_seasons_stream_cursor_value_input {auto_regular_season_format?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),default_best_of?: (Scalars['Int'] | null),direct_promote_count?: (Scalars['Int'] | null),direct_relegate_count?: (Scalars['Int'] | null),games_per_week?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),match_weeks_count?: (Scalars['Int'] | null),max_roster_size?: (Scalars['Int'] | null),min_roster_size?: (Scalars['Int'] | null),name?: (Scalars['String'] | null),playoff_best_of?: (Scalars['Int'] | null),playoff_round_best_of?: (Scalars['jsonb'] | null),playoff_seats?: (Scalars['Int'] | null),playoff_stage_type?: (e_tournament_stage_types_enum | null),playoff_third_place_match?: (Scalars['Boolean'] | null),promote_count?: (Scalars['Int'] | null),regular_season_stage_type?: (e_tournament_stage_types_enum | null),relegate_count?: (Scalars['Int'] | null),relegation_down_count?: (Scalars['Int'] | null),relegation_up_count?: (Scalars['Int'] | null),roster_lock_at?: (Scalars['timestamptz'] | null),season_number?: (Scalars['Int'] | null),signup_closes_at?: (Scalars['timestamptz'] | null),signup_opens_at?: (Scalars['timestamptz'] | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_league_season_statuses_enum | null),week_best_of?: (Scalars['jsonb'] | null)} +export interface league_seasons_stream_cursor_value_input {auto_regular_season_format?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),default_best_of?: (Scalars['Int'] | null),direct_promote_count?: (Scalars['Int'] | null),direct_relegate_count?: (Scalars['Int'] | null),games_per_week?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),match_weeks_count?: (Scalars['Int'] | null),max_roster_size?: (Scalars['Int'] | null),min_roster_size?: (Scalars['Int'] | null),name?: (Scalars['String'] | null),playoff_best_of?: (Scalars['Int'] | null),playoff_round_best_of?: (Scalars['jsonb'] | null),playoff_seats?: (Scalars['Int'] | null),playoff_stage_type?: (e_tournament_stage_types_enum | null),playoff_third_place_match?: (Scalars['Boolean'] | null),regular_season_stage_type?: (e_tournament_stage_types_enum | null),relegation_down_count?: (Scalars['Int'] | null),relegation_up_count?: (Scalars['Int'] | null),roster_lock_at?: (Scalars['timestamptz'] | null),season_number?: (Scalars['Int'] | null),signup_closes_at?: (Scalars['timestamptz'] | null),signup_opens_at?: (Scalars['timestamptz'] | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_league_season_statuses_enum | null),week_best_of?: (Scalars['jsonb'] | null)} /** aggregate sum on columns */ @@ -42974,8 +42943,6 @@ export interface league_seasons_sum_fieldsGenqlSelection{ min_roster_size?: boolean | number playoff_best_of?: boolean | number playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number relegation_down_count?: boolean | number relegation_up_count?: boolean | number season_number?: boolean | number @@ -43014,8 +42981,6 @@ export interface league_seasons_var_pop_fieldsGenqlSelection{ min_roster_size?: boolean | number playoff_best_of?: boolean | number playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number relegation_down_count?: boolean | number relegation_up_count?: boolean | number season_number?: boolean | number @@ -43036,8 +43001,6 @@ export interface league_seasons_var_samp_fieldsGenqlSelection{ min_roster_size?: boolean | number playoff_best_of?: boolean | number playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number relegation_down_count?: boolean | number relegation_up_count?: boolean | number season_number?: boolean | number @@ -43058,8 +43021,6 @@ export interface league_seasons_variance_fieldsGenqlSelection{ min_roster_size?: boolean | number playoff_best_of?: boolean | number playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number relegation_down_count?: boolean | number relegation_up_count?: boolean | number season_number?: boolean | number @@ -46981,6 +46942,7 @@ where: match_map_veto_picks_bool_exp} /** columns and relationships of "match_maps" */ export interface match_mapsGenqlSelection{ + anti_wallhack_active?: boolean | number clips_count?: boolean | number created_at?: boolean | number /** An array relationship */ @@ -47291,7 +47253,11 @@ export interface match_maps_aggregateGenqlSelection{ __scalar?: boolean | number } -export interface match_maps_aggregate_bool_exp {count?: (match_maps_aggregate_bool_exp_count | null)} +export interface match_maps_aggregate_bool_exp {bool_and?: (match_maps_aggregate_bool_exp_bool_and | null),bool_or?: (match_maps_aggregate_bool_exp_bool_or | null),count?: (match_maps_aggregate_bool_exp_count | null)} + +export interface match_maps_aggregate_bool_exp_bool_and {arguments: match_maps_select_column_match_maps_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_maps_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface match_maps_aggregate_bool_exp_bool_or {arguments: match_maps_select_column_match_maps_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_maps_bool_exp | null),predicate: Boolean_comparison_exp} export interface match_maps_aggregate_bool_exp_count {arguments?: (match_maps_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_maps_bool_exp | null),predicate: Int_comparison_exp} @@ -47347,7 +47313,7 @@ export interface match_maps_avg_order_by {clips_count?: (order_by | null),lineup /** Boolean expression to filter rows from the table "match_maps". All fields are combined with a logical 'AND'. */ -export interface match_maps_bool_exp {_and?: (match_maps_bool_exp[] | null),_not?: (match_maps_bool_exp | null),_or?: (match_maps_bool_exp[] | null),clips_count?: (Int_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),demos?: (match_map_demos_bool_exp | null),demos_aggregate?: (match_map_demos_aggregate_bool_exp | null),demos_download_url?: (String_comparison_exp | null),demos_total_size?: (Int_comparison_exp | null),e_match_map_status?: (e_match_map_status_bool_exp | null),ended_at?: (timestamptz_comparison_exp | null),flashes?: (player_flashes_bool_exp | null),flashes_aggregate?: (player_flashes_aggregate_bool_exp | null),id?: (uuid_comparison_exp | null),is_current_map?: (Boolean_comparison_exp | null),latest_clip_at?: (timestamptz_comparison_exp | null),lineup_1_score?: (Int_comparison_exp | null),lineup_1_side?: (e_sides_enum_comparison_exp | null),lineup_1_timeouts_available?: (Int_comparison_exp | null),lineup_2_score?: (Int_comparison_exp | null),lineup_2_side?: (e_sides_enum_comparison_exp | null),lineup_2_timeouts_available?: (Int_comparison_exp | null),map?: (maps_bool_exp | null),map_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_clips?: (match_clips_bool_exp | null),match_clips_aggregate?: (match_clips_aggregate_bool_exp | null),match_id?: (uuid_comparison_exp | null),objectives?: (player_objectives_bool_exp | null),objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),order?: (Int_comparison_exp | null),player_assists?: (player_assists_bool_exp | null),player_assists_aggregate?: (player_assists_aggregate_bool_exp | null),player_damages?: (player_damages_bool_exp | null),player_damages_aggregate?: (player_damages_aggregate_bool_exp | null),player_kills?: (player_kills_bool_exp | null),player_kills_aggregate?: (player_kills_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),public_clips_count?: (Int_comparison_exp | null),public_latest_clip_at?: (timestamptz_comparison_exp | null),rounds?: (match_map_rounds_bool_exp | null),rounds_aggregate?: (match_map_rounds_aggregate_bool_exp | null),started_at?: (timestamptz_comparison_exp | null),status?: (e_match_map_status_enum_comparison_exp | null),utility?: (player_utility_bool_exp | null),utility_aggregate?: (player_utility_aggregate_bool_exp | null),vetos?: (match_map_veto_picks_bool_exp | null),vetos_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),winning_lineup_id?: (uuid_comparison_exp | null)} +export interface match_maps_bool_exp {_and?: (match_maps_bool_exp[] | null),_not?: (match_maps_bool_exp | null),_or?: (match_maps_bool_exp[] | null),anti_wallhack_active?: (Boolean_comparison_exp | null),clips_count?: (Int_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),demos?: (match_map_demos_bool_exp | null),demos_aggregate?: (match_map_demos_aggregate_bool_exp | null),demos_download_url?: (String_comparison_exp | null),demos_total_size?: (Int_comparison_exp | null),e_match_map_status?: (e_match_map_status_bool_exp | null),ended_at?: (timestamptz_comparison_exp | null),flashes?: (player_flashes_bool_exp | null),flashes_aggregate?: (player_flashes_aggregate_bool_exp | null),id?: (uuid_comparison_exp | null),is_current_map?: (Boolean_comparison_exp | null),latest_clip_at?: (timestamptz_comparison_exp | null),lineup_1_score?: (Int_comparison_exp | null),lineup_1_side?: (e_sides_enum_comparison_exp | null),lineup_1_timeouts_available?: (Int_comparison_exp | null),lineup_2_score?: (Int_comparison_exp | null),lineup_2_side?: (e_sides_enum_comparison_exp | null),lineup_2_timeouts_available?: (Int_comparison_exp | null),map?: (maps_bool_exp | null),map_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_clips?: (match_clips_bool_exp | null),match_clips_aggregate?: (match_clips_aggregate_bool_exp | null),match_id?: (uuid_comparison_exp | null),objectives?: (player_objectives_bool_exp | null),objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),order?: (Int_comparison_exp | null),player_assists?: (player_assists_bool_exp | null),player_assists_aggregate?: (player_assists_aggregate_bool_exp | null),player_damages?: (player_damages_bool_exp | null),player_damages_aggregate?: (player_damages_aggregate_bool_exp | null),player_kills?: (player_kills_bool_exp | null),player_kills_aggregate?: (player_kills_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),public_clips_count?: (Int_comparison_exp | null),public_latest_clip_at?: (timestamptz_comparison_exp | null),rounds?: (match_map_rounds_bool_exp | null),rounds_aggregate?: (match_map_rounds_aggregate_bool_exp | null),started_at?: (timestamptz_comparison_exp | null),status?: (e_match_map_status_enum_comparison_exp | null),utility?: (player_utility_bool_exp | null),utility_aggregate?: (player_utility_aggregate_bool_exp | null),vetos?: (match_map_veto_picks_bool_exp | null),vetos_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),winning_lineup_id?: (uuid_comparison_exp | null)} /** input type for incrementing numeric columns in table "match_maps" */ @@ -47355,7 +47321,7 @@ export interface match_maps_inc_input {clips_count?: (Scalars['Int'] | null),lin /** input type for inserting data into table "match_maps" */ -export interface match_maps_insert_input {clips_count?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),demos?: (match_map_demos_arr_rel_insert_input | null),e_match_map_status?: (e_match_map_status_obj_rel_insert_input | null),ended_at?: (Scalars['timestamptz'] | null),flashes?: (player_flashes_arr_rel_insert_input | null),id?: (Scalars['uuid'] | null),latest_clip_at?: (Scalars['timestamptz'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),map?: (maps_obj_rel_insert_input | null),map_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_clips?: (match_clips_arr_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),objectives?: (player_objectives_arr_rel_insert_input | null),order?: (Scalars['Int'] | null),player_assists?: (player_assists_arr_rel_insert_input | null),player_damages?: (player_damages_arr_rel_insert_input | null),player_kills?: (player_kills_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),public_clips_count?: (Scalars['Int'] | null),public_latest_clip_at?: (Scalars['timestamptz'] | null),rounds?: (match_map_rounds_arr_rel_insert_input | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_map_status_enum | null),utility?: (player_utility_arr_rel_insert_input | null),vetos?: (match_map_veto_picks_arr_rel_insert_input | null),winning_lineup_id?: (Scalars['uuid'] | null)} +export interface match_maps_insert_input {anti_wallhack_active?: (Scalars['Boolean'] | null),clips_count?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),demos?: (match_map_demos_arr_rel_insert_input | null),e_match_map_status?: (e_match_map_status_obj_rel_insert_input | null),ended_at?: (Scalars['timestamptz'] | null),flashes?: (player_flashes_arr_rel_insert_input | null),id?: (Scalars['uuid'] | null),latest_clip_at?: (Scalars['timestamptz'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),map?: (maps_obj_rel_insert_input | null),map_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_clips?: (match_clips_arr_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),objectives?: (player_objectives_arr_rel_insert_input | null),order?: (Scalars['Int'] | null),player_assists?: (player_assists_arr_rel_insert_input | null),player_damages?: (player_damages_arr_rel_insert_input | null),player_kills?: (player_kills_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),public_clips_count?: (Scalars['Int'] | null),public_latest_clip_at?: (Scalars['timestamptz'] | null),rounds?: (match_map_rounds_arr_rel_insert_input | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_map_status_enum | null),utility?: (player_utility_arr_rel_insert_input | null),vetos?: (match_map_veto_picks_arr_rel_insert_input | null),winning_lineup_id?: (Scalars['uuid'] | null)} /** aggregate max on columns */ @@ -47446,7 +47412,7 @@ export interface match_maps_on_conflict {constraint: match_maps_constraint,updat /** Ordering options when selecting data from "match_maps". */ -export interface match_maps_order_by {clips_count?: (order_by | null),created_at?: (order_by | null),demos_aggregate?: (match_map_demos_aggregate_order_by | null),demos_download_url?: (order_by | null),demos_total_size?: (order_by | null),e_match_map_status?: (e_match_map_status_order_by | null),ended_at?: (order_by | null),flashes_aggregate?: (player_flashes_aggregate_order_by | null),id?: (order_by | null),is_current_map?: (order_by | null),latest_clip_at?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_side?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_side?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),map?: (maps_order_by | null),map_id?: (order_by | null),match?: (matches_order_by | null),match_clips_aggregate?: (match_clips_aggregate_order_by | null),match_id?: (order_by | null),objectives_aggregate?: (player_objectives_aggregate_order_by | null),order?: (order_by | null),player_assists_aggregate?: (player_assists_aggregate_order_by | null),player_damages_aggregate?: (player_damages_aggregate_order_by | null),player_kills_aggregate?: (player_kills_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),public_clips_count?: (order_by | null),public_latest_clip_at?: (order_by | null),rounds_aggregate?: (match_map_rounds_aggregate_order_by | null),started_at?: (order_by | null),status?: (order_by | null),utility_aggregate?: (player_utility_aggregate_order_by | null),vetos_aggregate?: (match_map_veto_picks_aggregate_order_by | null),winning_lineup_id?: (order_by | null)} +export interface match_maps_order_by {anti_wallhack_active?: (order_by | null),clips_count?: (order_by | null),created_at?: (order_by | null),demos_aggregate?: (match_map_demos_aggregate_order_by | null),demos_download_url?: (order_by | null),demos_total_size?: (order_by | null),e_match_map_status?: (e_match_map_status_order_by | null),ended_at?: (order_by | null),flashes_aggregate?: (player_flashes_aggregate_order_by | null),id?: (order_by | null),is_current_map?: (order_by | null),latest_clip_at?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_side?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_side?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),map?: (maps_order_by | null),map_id?: (order_by | null),match?: (matches_order_by | null),match_clips_aggregate?: (match_clips_aggregate_order_by | null),match_id?: (order_by | null),objectives_aggregate?: (player_objectives_aggregate_order_by | null),order?: (order_by | null),player_assists_aggregate?: (player_assists_aggregate_order_by | null),player_damages_aggregate?: (player_damages_aggregate_order_by | null),player_kills_aggregate?: (player_kills_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),public_clips_count?: (order_by | null),public_latest_clip_at?: (order_by | null),rounds_aggregate?: (match_map_rounds_aggregate_order_by | null),started_at?: (order_by | null),status?: (order_by | null),utility_aggregate?: (player_utility_aggregate_order_by | null),vetos_aggregate?: (match_map_veto_picks_aggregate_order_by | null),winning_lineup_id?: (order_by | null)} /** primary key columns input for table: match_maps */ @@ -47454,7 +47420,7 @@ export interface match_maps_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "match_maps" */ -export interface match_maps_set_input {clips_count?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),ended_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),latest_clip_at?: (Scalars['timestamptz'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),order?: (Scalars['Int'] | null),public_clips_count?: (Scalars['Int'] | null),public_latest_clip_at?: (Scalars['timestamptz'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_map_status_enum | null),winning_lineup_id?: (Scalars['uuid'] | null)} +export interface match_maps_set_input {anti_wallhack_active?: (Scalars['Boolean'] | null),clips_count?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),ended_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),latest_clip_at?: (Scalars['timestamptz'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),order?: (Scalars['Int'] | null),public_clips_count?: (Scalars['Int'] | null),public_latest_clip_at?: (Scalars['timestamptz'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_map_status_enum | null),winning_lineup_id?: (Scalars['uuid'] | null)} /** aggregate stddev on columns */ @@ -47532,7 +47498,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface match_maps_stream_cursor_value_input {clips_count?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),ended_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),latest_clip_at?: (Scalars['timestamptz'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),order?: (Scalars['Int'] | null),public_clips_count?: (Scalars['Int'] | null),public_latest_clip_at?: (Scalars['timestamptz'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_map_status_enum | null),winning_lineup_id?: (Scalars['uuid'] | null)} +export interface match_maps_stream_cursor_value_input {anti_wallhack_active?: (Scalars['Boolean'] | null),clips_count?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),ended_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),latest_clip_at?: (Scalars['timestamptz'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),order?: (Scalars['Int'] | null),public_clips_count?: (Scalars['Int'] | null),public_latest_clip_at?: (Scalars['timestamptz'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_map_status_enum | null),winning_lineup_id?: (Scalars['uuid'] | null)} /** aggregate sum on columns */ @@ -47633,6 +47599,7 @@ export interface match_maps_variance_order_by {clips_count?: (order_by | null),l /** columns and relationships of "match_options" */ export interface match_optionsGenqlSelection{ + anti_wallhack?: boolean | number auto_cancel_duration?: boolean | number auto_cancellation?: boolean | number best_of?: boolean | number @@ -47737,7 +47704,7 @@ export interface match_options_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "match_options". All fields are combined with a logical 'AND'. */ -export interface match_options_bool_exp {_and?: (match_options_bool_exp[] | null),_not?: (match_options_bool_exp | null),_or?: (match_options_bool_exp[] | null),auto_cancel_duration?: (Int_comparison_exp | null),auto_cancellation?: (Boolean_comparison_exp | null),best_of?: (Int_comparison_exp | null),check_in_setting?: (e_check_in_settings_enum_comparison_exp | null),coaches?: (Boolean_comparison_exp | null),default_models?: (Boolean_comparison_exp | null),has_active_matches?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),knife_round?: (Boolean_comparison_exp | null),live_match_timeout?: (Int_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),map_veto?: (Boolean_comparison_exp | null),match_mode?: (e_match_mode_enum_comparison_exp | null),matches?: (matches_bool_exp | null),matches_aggregate?: (matches_aggregate_bool_exp | null),mr?: (Int_comparison_exp | null),number_of_substitutes?: (Int_comparison_exp | null),overtime?: (Boolean_comparison_exp | null),prefer_dedicated_server?: (Boolean_comparison_exp | null),ready_setting?: (e_ready_settings_enum_comparison_exp | null),region_veto?: (Boolean_comparison_exp | null),regions?: (String_array_comparison_exp | null),tech_timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_bracket?: (tournament_brackets_bool_exp | null),tournament_stage?: (tournament_stages_bool_exp | null),tv_delay?: (Int_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null)} +export interface match_options_bool_exp {_and?: (match_options_bool_exp[] | null),_not?: (match_options_bool_exp | null),_or?: (match_options_bool_exp[] | null),anti_wallhack?: (Boolean_comparison_exp | null),auto_cancel_duration?: (Int_comparison_exp | null),auto_cancellation?: (Boolean_comparison_exp | null),best_of?: (Int_comparison_exp | null),check_in_setting?: (e_check_in_settings_enum_comparison_exp | null),coaches?: (Boolean_comparison_exp | null),default_models?: (Boolean_comparison_exp | null),has_active_matches?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),knife_round?: (Boolean_comparison_exp | null),live_match_timeout?: (Int_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),map_veto?: (Boolean_comparison_exp | null),match_mode?: (e_match_mode_enum_comparison_exp | null),matches?: (matches_bool_exp | null),matches_aggregate?: (matches_aggregate_bool_exp | null),mr?: (Int_comparison_exp | null),number_of_substitutes?: (Int_comparison_exp | null),overtime?: (Boolean_comparison_exp | null),prefer_dedicated_server?: (Boolean_comparison_exp | null),ready_setting?: (e_ready_settings_enum_comparison_exp | null),region_veto?: (Boolean_comparison_exp | null),regions?: (String_array_comparison_exp | null),tech_timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_bracket?: (tournament_brackets_bool_exp | null),tournament_stage?: (tournament_stages_bool_exp | null),tv_delay?: (Int_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null)} /** input type for incrementing numeric columns in table "match_options" */ @@ -47745,7 +47712,7 @@ export interface match_options_inc_input {auto_cancel_duration?: (Scalars['Int'] /** input type for inserting data into table "match_options" */ -export interface match_options_insert_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),matches?: (matches_arr_rel_insert_input | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_bracket?: (tournament_brackets_obj_rel_insert_input | null),tournament_stage?: (tournament_stages_obj_rel_insert_input | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null)} +export interface match_options_insert_input {anti_wallhack?: (Scalars['Boolean'] | null),auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),matches?: (matches_arr_rel_insert_input | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_bracket?: (tournament_brackets_obj_rel_insert_input | null),tournament_stage?: (tournament_stages_obj_rel_insert_input | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null)} /** aggregate max on columns */ @@ -47804,7 +47771,7 @@ export interface match_options_on_conflict {constraint: match_options_constraint /** Ordering options when selecting data from "match_options". */ -export interface match_options_order_by {auto_cancel_duration?: (order_by | null),auto_cancellation?: (order_by | null),best_of?: (order_by | null),check_in_setting?: (order_by | null),coaches?: (order_by | null),default_models?: (order_by | null),has_active_matches?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),knife_round?: (order_by | null),live_match_timeout?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),map_veto?: (order_by | null),match_mode?: (order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),overtime?: (order_by | null),prefer_dedicated_server?: (order_by | null),ready_setting?: (order_by | null),region_veto?: (order_by | null),regions?: (order_by | null),tech_timeout_setting?: (order_by | null),timeout_setting?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_bracket?: (tournament_brackets_order_by | null),tournament_stage?: (tournament_stages_order_by | null),tv_delay?: (order_by | null),type?: (order_by | null)} +export interface match_options_order_by {anti_wallhack?: (order_by | null),auto_cancel_duration?: (order_by | null),auto_cancellation?: (order_by | null),best_of?: (order_by | null),check_in_setting?: (order_by | null),coaches?: (order_by | null),default_models?: (order_by | null),has_active_matches?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),knife_round?: (order_by | null),live_match_timeout?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),map_veto?: (order_by | null),match_mode?: (order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),overtime?: (order_by | null),prefer_dedicated_server?: (order_by | null),ready_setting?: (order_by | null),region_veto?: (order_by | null),regions?: (order_by | null),tech_timeout_setting?: (order_by | null),timeout_setting?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_bracket?: (tournament_brackets_order_by | null),tournament_stage?: (tournament_stages_order_by | null),tv_delay?: (order_by | null),type?: (order_by | null)} /** primary key columns input for table: match_options */ @@ -47812,7 +47779,7 @@ export interface match_options_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "match_options" */ -export interface match_options_set_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null)} +export interface match_options_set_input {anti_wallhack?: (Scalars['Boolean'] | null),auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null)} /** aggregate stddev on columns */ @@ -47863,7 +47830,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface match_options_stream_cursor_value_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null)} +export interface match_options_stream_cursor_value_input {anti_wallhack?: (Scalars['Boolean'] | null),auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null)} /** aggregate sum on columns */ @@ -54648,6 +54615,7 @@ export interface my_friendsGenqlSelection{ faceit_nickname?: boolean | number faceit_player_id?: boolean | number faceit_skill_level?: boolean | number + faceit_synced_at?: boolean | number faceit_updated_at?: boolean | number faceit_url?: boolean | number friend_steam_id?: boolean | number @@ -54748,7 +54716,7 @@ export interface my_friends_avg_order_by {days_since_last_ban?: (order_by | null /** Boolean expression to filter rows from the table "v_my_friends". All fields are combined with a logical 'AND'. */ -export interface my_friends_bool_exp {_and?: (my_friends_bool_exp[] | null),_not?: (my_friends_bool_exp | null),_or?: (my_friends_bool_exp[] | null),avatar_url?: (String_comparison_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),custom_avatar_url?: (String_comparison_exp | null),days_since_last_ban?: (Int_comparison_exp | null),discord_id?: (String_comparison_exp | null),elo?: (jsonb_comparison_exp | null),faceit_elo?: (Int_comparison_exp | null),faceit_nickname?: (String_comparison_exp | null),faceit_player_id?: (String_comparison_exp | null),faceit_skill_level?: (Int_comparison_exp | null),faceit_updated_at?: (timestamptz_comparison_exp | null),faceit_url?: (String_comparison_exp | null),friend_steam_id?: (bigint_comparison_exp | null),game_ban_count?: (Int_comparison_exp | null),invited_by_steam_id?: (bigint_comparison_exp | null),language?: (String_comparison_exp | null),last_presence_state?: (jsonb_comparison_exp | null),last_read_news_at?: (timestamptz_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),player?: (players_bool_exp | null),premier_rank?: (Int_comparison_exp | null),premier_rank_updated_at?: (timestamptz_comparison_exp | null),presence_updated_at?: (timestamptz_comparison_exp | null),profile_url?: (String_comparison_exp | null),role?: (String_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),show_match_ready_modal?: (Boolean_comparison_exp | null),status?: (String_comparison_exp | null),steam_bans_checked_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),vac_ban_count?: (Int_comparison_exp | null),vac_banned?: (Boolean_comparison_exp | null)} +export interface my_friends_bool_exp {_and?: (my_friends_bool_exp[] | null),_not?: (my_friends_bool_exp | null),_or?: (my_friends_bool_exp[] | null),avatar_url?: (String_comparison_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),custom_avatar_url?: (String_comparison_exp | null),days_since_last_ban?: (Int_comparison_exp | null),discord_id?: (String_comparison_exp | null),elo?: (jsonb_comparison_exp | null),faceit_elo?: (Int_comparison_exp | null),faceit_nickname?: (String_comparison_exp | null),faceit_player_id?: (String_comparison_exp | null),faceit_skill_level?: (Int_comparison_exp | null),faceit_synced_at?: (timestamptz_comparison_exp | null),faceit_updated_at?: (timestamptz_comparison_exp | null),faceit_url?: (String_comparison_exp | null),friend_steam_id?: (bigint_comparison_exp | null),game_ban_count?: (Int_comparison_exp | null),invited_by_steam_id?: (bigint_comparison_exp | null),language?: (String_comparison_exp | null),last_presence_state?: (jsonb_comparison_exp | null),last_read_news_at?: (timestamptz_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),player?: (players_bool_exp | null),premier_rank?: (Int_comparison_exp | null),premier_rank_updated_at?: (timestamptz_comparison_exp | null),presence_updated_at?: (timestamptz_comparison_exp | null),profile_url?: (String_comparison_exp | null),role?: (String_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),show_match_ready_modal?: (Boolean_comparison_exp | null),status?: (String_comparison_exp | null),steam_bans_checked_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),vac_ban_count?: (Int_comparison_exp | null),vac_banned?: (Boolean_comparison_exp | null)} /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ @@ -54768,7 +54736,7 @@ export interface my_friends_inc_input {days_since_last_ban?: (Scalars['Int'] | n /** input type for inserting data into table "v_my_friends" */ -export interface my_friends_insert_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),elo?: (Scalars['jsonb'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_presence_state?: (Scalars['jsonb'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),player?: (players_obj_rel_insert_input | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),presence_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (Scalars['String'] | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),status?: (Scalars['String'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} +export interface my_friends_insert_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),elo?: (Scalars['jsonb'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_synced_at?: (Scalars['timestamptz'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_presence_state?: (Scalars['jsonb'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),player?: (players_obj_rel_insert_input | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),presence_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (Scalars['String'] | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),status?: (Scalars['String'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} /** aggregate max on columns */ @@ -54783,6 +54751,7 @@ export interface my_friends_max_fieldsGenqlSelection{ faceit_nickname?: boolean | number faceit_player_id?: boolean | number faceit_skill_level?: boolean | number + faceit_synced_at?: boolean | number faceit_updated_at?: boolean | number faceit_url?: boolean | number friend_steam_id?: boolean | number @@ -54808,7 +54777,7 @@ export interface my_friends_max_fieldsGenqlSelection{ /** order by max() on columns of table "v_my_friends" */ -export interface my_friends_max_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),custom_avatar_url?: (order_by | null),days_since_last_ban?: (order_by | null),discord_id?: (order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),premier_rank?: (order_by | null),premier_rank_updated_at?: (order_by | null),presence_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),status?: (order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} +export interface my_friends_max_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),custom_avatar_url?: (order_by | null),days_since_last_ban?: (order_by | null),discord_id?: (order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_skill_level?: (order_by | null),faceit_synced_at?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),premier_rank?: (order_by | null),premier_rank_updated_at?: (order_by | null),presence_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),status?: (order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} /** aggregate min on columns */ @@ -54823,6 +54792,7 @@ export interface my_friends_min_fieldsGenqlSelection{ faceit_nickname?: boolean | number faceit_player_id?: boolean | number faceit_skill_level?: boolean | number + faceit_synced_at?: boolean | number faceit_updated_at?: boolean | number faceit_url?: boolean | number friend_steam_id?: boolean | number @@ -54848,7 +54818,7 @@ export interface my_friends_min_fieldsGenqlSelection{ /** order by min() on columns of table "v_my_friends" */ -export interface my_friends_min_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),custom_avatar_url?: (order_by | null),days_since_last_ban?: (order_by | null),discord_id?: (order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),premier_rank?: (order_by | null),premier_rank_updated_at?: (order_by | null),presence_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),status?: (order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} +export interface my_friends_min_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),custom_avatar_url?: (order_by | null),days_since_last_ban?: (order_by | null),discord_id?: (order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_skill_level?: (order_by | null),faceit_synced_at?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),premier_rank?: (order_by | null),premier_rank_updated_at?: (order_by | null),presence_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),status?: (order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} /** response of any mutation on the table "v_my_friends" */ @@ -54863,7 +54833,7 @@ export interface my_friends_mutation_responseGenqlSelection{ /** Ordering options when selecting data from "v_my_friends". */ -export interface my_friends_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),custom_avatar_url?: (order_by | null),days_since_last_ban?: (order_by | null),discord_id?: (order_by | null),elo?: (order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_presence_state?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),name_registered?: (order_by | null),player?: (players_order_by | null),premier_rank?: (order_by | null),premier_rank_updated_at?: (order_by | null),presence_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),show_match_ready_modal?: (order_by | null),status?: (order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null),vac_banned?: (order_by | null)} +export interface my_friends_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),custom_avatar_url?: (order_by | null),days_since_last_ban?: (order_by | null),discord_id?: (order_by | null),elo?: (order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_skill_level?: (order_by | null),faceit_synced_at?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_presence_state?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),name_registered?: (order_by | null),player?: (players_order_by | null),premier_rank?: (order_by | null),premier_rank_updated_at?: (order_by | null),presence_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),show_match_ready_modal?: (order_by | null),status?: (order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null),vac_banned?: (order_by | null)} /** prepend existing jsonb value of filtered columns with new jsonb value */ @@ -54871,7 +54841,7 @@ export interface my_friends_prepend_input {elo?: (Scalars['jsonb'] | null),last_ /** input type for updating data in table "v_my_friends" */ -export interface my_friends_set_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),elo?: (Scalars['jsonb'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_presence_state?: (Scalars['jsonb'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),presence_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (Scalars['String'] | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),status?: (Scalars['String'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} +export interface my_friends_set_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),elo?: (Scalars['jsonb'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_synced_at?: (Scalars['timestamptz'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_presence_state?: (Scalars['jsonb'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),presence_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (Scalars['String'] | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),status?: (Scalars['String'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} /** aggregate stddev on columns */ @@ -54943,7 +54913,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface my_friends_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),elo?: (Scalars['jsonb'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_presence_state?: (Scalars['jsonb'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),presence_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (Scalars['String'] | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),status?: (Scalars['String'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} +export interface my_friends_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),elo?: (Scalars['jsonb'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_synced_at?: (Scalars['timestamptz'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_presence_state?: (Scalars['jsonb'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),presence_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (Scalars['String'] | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),status?: (Scalars['String'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} /** aggregate sum on columns */ @@ -64790,6 +64760,7 @@ export interface playersGenqlSelection{ /** filter the rows returned */ where?: (player_faceit_rank_history_bool_exp | null)} }) faceit_skill_level?: boolean | number + faceit_synced_at?: boolean | number faceit_updated_at?: boolean | number faceit_url?: boolean | number /** An array relationship */ @@ -65607,7 +65578,7 @@ export interface players_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "players". All fields are combined with a logical 'AND'. */ -export interface players_bool_exp {_and?: (players_bool_exp[] | null),_not?: (players_bool_exp | null),_or?: (players_bool_exp[] | null),abandoned_matches?: (abandoned_matches_bool_exp | null),abandoned_matches_aggregate?: (abandoned_matches_aggregate_bool_exp | null),aim_weapon_stats?: (player_aim_weapon_stats_bool_exp | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_bool_exp | null),assists?: (player_assists_bool_exp | null),assists_aggregate?: (player_assists_aggregate_bool_exp | null),assited_by_players?: (player_assists_bool_exp | null),assited_by_players_aggregate?: (player_assists_aggregate_bool_exp | null),avatar_url?: (String_comparison_exp | null),coach_lineups?: (match_lineups_bool_exp | null),coach_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_lobby_id?: (uuid_comparison_exp | null),custom_avatar_url?: (String_comparison_exp | null),damage_dealt?: (player_damages_bool_exp | null),damage_dealt_aggregate?: (player_damages_aggregate_bool_exp | null),damage_taken?: (player_damages_bool_exp | null),damage_taken_aggregate?: (player_damages_aggregate_bool_exp | null),days_since_last_ban?: (Int_comparison_exp | null),deaths?: (player_kills_bool_exp | null),deaths_aggregate?: (player_kills_aggregate_bool_exp | null),discord_id?: (String_comparison_exp | null),draft_game_players?: (draft_game_players_bool_exp | null),draft_game_players_aggregate?: (draft_game_players_aggregate_bool_exp | null),elo?: (jsonb_comparison_exp | null),elo_history?: (v_player_elo_bool_exp | null),elo_history_aggregate?: (v_player_elo_aggregate_bool_exp | null),faceit_elo?: (Int_comparison_exp | null),faceit_nickname?: (String_comparison_exp | null),faceit_player_id?: (String_comparison_exp | null),faceit_rank_history?: (player_faceit_rank_history_bool_exp | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_bool_exp | null),faceit_skill_level?: (Int_comparison_exp | null),faceit_updated_at?: (timestamptz_comparison_exp | null),faceit_url?: (String_comparison_exp | null),flashed_by_players?: (player_flashes_bool_exp | null),flashed_by_players_aggregate?: (player_flashes_aggregate_bool_exp | null),flashed_players?: (player_flashes_bool_exp | null),flashed_players_aggregate?: (player_flashes_aggregate_bool_exp | null),friends?: (my_friends_bool_exp | null),friends_aggregate?: (my_friends_aggregate_bool_exp | null),game_ban_count?: (Int_comparison_exp | null),invited_players?: (team_invites_bool_exp | null),invited_players_aggregate?: (team_invites_aggregate_bool_exp | null),is_banned?: (Boolean_comparison_exp | null),is_gagged?: (Boolean_comparison_exp | null),is_in_another_match?: (Boolean_comparison_exp | null),is_in_draft?: (Boolean_comparison_exp | null),is_in_lobby?: (Boolean_comparison_exp | null),is_muted?: (Boolean_comparison_exp | null),kills?: (player_kills_bool_exp | null),kills_aggregate?: (player_kills_aggregate_bool_exp | null),kills_by_weapons?: (player_kills_by_weapon_bool_exp | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_bool_exp | null),language?: (String_comparison_exp | null),last_read_news_at?: (timestamptz_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),lobby_players?: (lobby_players_bool_exp | null),lobby_players_aggregate?: (lobby_players_aggregate_bool_exp | null),losses?: (Int_comparison_exp | null),losses_competitive?: (Int_comparison_exp | null),losses_duel?: (Int_comparison_exp | null),losses_wingman?: (Int_comparison_exp | null),match_map_hltv?: (v_player_match_map_hltv_bool_exp | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_bool_exp | null),match_map_stats?: (player_match_map_stats_bool_exp | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_bool_exp | null),match_stats?: (player_match_stats_v_bool_exp | null),match_stats_aggregate?: (player_match_stats_v_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),matchmaking_cooldown?: (timestamptz_comparison_exp | null),multi_kills?: (v_player_multi_kills_bool_exp | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_bool_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),notifications?: (notifications_bool_exp | null),notifications_aggregate?: (notifications_aggregate_bool_exp | null),objectives?: (player_objectives_bool_exp | null),objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),owned_teams?: (teams_bool_exp | null),owned_teams_aggregate?: (teams_aggregate_bool_exp | null),peak_elo?: (jsonb_comparison_exp | null),pending_match_imports?: (pending_match_import_players_bool_exp | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_bool_exp | null),player_lineup?: (match_lineup_players_bool_exp | null),player_lineup_aggregate?: (match_lineup_players_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),premier_rank?: (Int_comparison_exp | null),premier_rank_history?: (player_premier_rank_history_bool_exp | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_bool_exp | null),premier_rank_updated_at?: (timestamptz_comparison_exp | null),profile_url?: (String_comparison_exp | null),role?: (e_player_roles_enum_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),sanctions?: (player_sanctions_bool_exp | null),sanctions_aggregate?: (player_sanctions_aggregate_bool_exp | null),season_stats?: (player_season_stats_bool_exp | null),season_stats_aggregate?: (player_season_stats_aggregate_bool_exp | null),show_match_ready_modal?: (Boolean_comparison_exp | null),stats?: (player_stats_bool_exp | null),steam_bans_checked_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_invites?: (team_invites_bool_exp | null),team_invites_aggregate?: (team_invites_aggregate_bool_exp | null),team_members?: (team_roster_bool_exp | null),team_members_aggregate?: (team_roster_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),total_matches?: (Int_comparison_exp | null),tournament_organizers?: (tournament_organizers_bool_exp | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),tournament_rosters?: (tournament_team_roster_bool_exp | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),tournament_trophies?: (tournament_trophies_bool_exp | null),tournament_trophies_aggregate?: (tournament_trophies_aggregate_bool_exp | null),tournaments?: (tournaments_bool_exp | null),tournaments_aggregate?: (tournaments_aggregate_bool_exp | null),utility_thrown?: (player_utility_bool_exp | null),utility_thrown_aggregate?: (player_utility_aggregate_bool_exp | null),vac_ban_count?: (Int_comparison_exp | null),vac_banned?: (Boolean_comparison_exp | null),weapon_stats?: (player_weapon_stats_v_bool_exp | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_bool_exp | null),wins?: (Int_comparison_exp | null),wins_competitive?: (Int_comparison_exp | null),wins_duel?: (Int_comparison_exp | null),wins_wingman?: (Int_comparison_exp | null)} +export interface players_bool_exp {_and?: (players_bool_exp[] | null),_not?: (players_bool_exp | null),_or?: (players_bool_exp[] | null),abandoned_matches?: (abandoned_matches_bool_exp | null),abandoned_matches_aggregate?: (abandoned_matches_aggregate_bool_exp | null),aim_weapon_stats?: (player_aim_weapon_stats_bool_exp | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_bool_exp | null),assists?: (player_assists_bool_exp | null),assists_aggregate?: (player_assists_aggregate_bool_exp | null),assited_by_players?: (player_assists_bool_exp | null),assited_by_players_aggregate?: (player_assists_aggregate_bool_exp | null),avatar_url?: (String_comparison_exp | null),coach_lineups?: (match_lineups_bool_exp | null),coach_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_lobby_id?: (uuid_comparison_exp | null),custom_avatar_url?: (String_comparison_exp | null),damage_dealt?: (player_damages_bool_exp | null),damage_dealt_aggregate?: (player_damages_aggregate_bool_exp | null),damage_taken?: (player_damages_bool_exp | null),damage_taken_aggregate?: (player_damages_aggregate_bool_exp | null),days_since_last_ban?: (Int_comparison_exp | null),deaths?: (player_kills_bool_exp | null),deaths_aggregate?: (player_kills_aggregate_bool_exp | null),discord_id?: (String_comparison_exp | null),draft_game_players?: (draft_game_players_bool_exp | null),draft_game_players_aggregate?: (draft_game_players_aggregate_bool_exp | null),elo?: (jsonb_comparison_exp | null),elo_history?: (v_player_elo_bool_exp | null),elo_history_aggregate?: (v_player_elo_aggregate_bool_exp | null),faceit_elo?: (Int_comparison_exp | null),faceit_nickname?: (String_comparison_exp | null),faceit_player_id?: (String_comparison_exp | null),faceit_rank_history?: (player_faceit_rank_history_bool_exp | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_bool_exp | null),faceit_skill_level?: (Int_comparison_exp | null),faceit_synced_at?: (timestamptz_comparison_exp | null),faceit_updated_at?: (timestamptz_comparison_exp | null),faceit_url?: (String_comparison_exp | null),flashed_by_players?: (player_flashes_bool_exp | null),flashed_by_players_aggregate?: (player_flashes_aggregate_bool_exp | null),flashed_players?: (player_flashes_bool_exp | null),flashed_players_aggregate?: (player_flashes_aggregate_bool_exp | null),friends?: (my_friends_bool_exp | null),friends_aggregate?: (my_friends_aggregate_bool_exp | null),game_ban_count?: (Int_comparison_exp | null),invited_players?: (team_invites_bool_exp | null),invited_players_aggregate?: (team_invites_aggregate_bool_exp | null),is_banned?: (Boolean_comparison_exp | null),is_gagged?: (Boolean_comparison_exp | null),is_in_another_match?: (Boolean_comparison_exp | null),is_in_draft?: (Boolean_comparison_exp | null),is_in_lobby?: (Boolean_comparison_exp | null),is_muted?: (Boolean_comparison_exp | null),kills?: (player_kills_bool_exp | null),kills_aggregate?: (player_kills_aggregate_bool_exp | null),kills_by_weapons?: (player_kills_by_weapon_bool_exp | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_bool_exp | null),language?: (String_comparison_exp | null),last_read_news_at?: (timestamptz_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),lobby_players?: (lobby_players_bool_exp | null),lobby_players_aggregate?: (lobby_players_aggregate_bool_exp | null),losses?: (Int_comparison_exp | null),losses_competitive?: (Int_comparison_exp | null),losses_duel?: (Int_comparison_exp | null),losses_wingman?: (Int_comparison_exp | null),match_map_hltv?: (v_player_match_map_hltv_bool_exp | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_bool_exp | null),match_map_stats?: (player_match_map_stats_bool_exp | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_bool_exp | null),match_stats?: (player_match_stats_v_bool_exp | null),match_stats_aggregate?: (player_match_stats_v_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),matchmaking_cooldown?: (timestamptz_comparison_exp | null),multi_kills?: (v_player_multi_kills_bool_exp | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_bool_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),notifications?: (notifications_bool_exp | null),notifications_aggregate?: (notifications_aggregate_bool_exp | null),objectives?: (player_objectives_bool_exp | null),objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),owned_teams?: (teams_bool_exp | null),owned_teams_aggregate?: (teams_aggregate_bool_exp | null),peak_elo?: (jsonb_comparison_exp | null),pending_match_imports?: (pending_match_import_players_bool_exp | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_bool_exp | null),player_lineup?: (match_lineup_players_bool_exp | null),player_lineup_aggregate?: (match_lineup_players_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),premier_rank?: (Int_comparison_exp | null),premier_rank_history?: (player_premier_rank_history_bool_exp | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_bool_exp | null),premier_rank_updated_at?: (timestamptz_comparison_exp | null),profile_url?: (String_comparison_exp | null),role?: (e_player_roles_enum_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),sanctions?: (player_sanctions_bool_exp | null),sanctions_aggregate?: (player_sanctions_aggregate_bool_exp | null),season_stats?: (player_season_stats_bool_exp | null),season_stats_aggregate?: (player_season_stats_aggregate_bool_exp | null),show_match_ready_modal?: (Boolean_comparison_exp | null),stats?: (player_stats_bool_exp | null),steam_bans_checked_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_invites?: (team_invites_bool_exp | null),team_invites_aggregate?: (team_invites_aggregate_bool_exp | null),team_members?: (team_roster_bool_exp | null),team_members_aggregate?: (team_roster_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),total_matches?: (Int_comparison_exp | null),tournament_organizers?: (tournament_organizers_bool_exp | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),tournament_rosters?: (tournament_team_roster_bool_exp | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),tournament_trophies?: (tournament_trophies_bool_exp | null),tournament_trophies_aggregate?: (tournament_trophies_aggregate_bool_exp | null),tournaments?: (tournaments_bool_exp | null),tournaments_aggregate?: (tournaments_aggregate_bool_exp | null),utility_thrown?: (player_utility_bool_exp | null),utility_thrown_aggregate?: (player_utility_aggregate_bool_exp | null),vac_ban_count?: (Int_comparison_exp | null),vac_banned?: (Boolean_comparison_exp | null),weapon_stats?: (player_weapon_stats_v_bool_exp | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_bool_exp | null),wins?: (Int_comparison_exp | null),wins_competitive?: (Int_comparison_exp | null),wins_duel?: (Int_comparison_exp | null),wins_wingman?: (Int_comparison_exp | null)} /** input type for incrementing numeric columns in table "players" */ @@ -65615,7 +65586,7 @@ export interface players_inc_input {days_since_last_ban?: (Scalars['Int'] | null /** input type for inserting data into table "players" */ -export interface players_insert_input {abandoned_matches?: (abandoned_matches_arr_rel_insert_input | null),aim_weapon_stats?: (player_aim_weapon_stats_arr_rel_insert_input | null),assists?: (player_assists_arr_rel_insert_input | null),assited_by_players?: (player_assists_arr_rel_insert_input | null),avatar_url?: (Scalars['String'] | null),coach_lineups?: (match_lineups_arr_rel_insert_input | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),damage_dealt?: (player_damages_arr_rel_insert_input | null),damage_taken?: (player_damages_arr_rel_insert_input | null),days_since_last_ban?: (Scalars['Int'] | null),deaths?: (player_kills_arr_rel_insert_input | null),discord_id?: (Scalars['String'] | null),draft_game_players?: (draft_game_players_arr_rel_insert_input | null),elo_history?: (v_player_elo_arr_rel_insert_input | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_rank_history?: (player_faceit_rank_history_arr_rel_insert_input | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),flashed_by_players?: (player_flashes_arr_rel_insert_input | null),flashed_players?: (player_flashes_arr_rel_insert_input | null),friends?: (my_friends_arr_rel_insert_input | null),game_ban_count?: (Scalars['Int'] | null),invited_players?: (team_invites_arr_rel_insert_input | null),kills?: (player_kills_arr_rel_insert_input | null),kills_by_weapons?: (player_kills_by_weapon_arr_rel_insert_input | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),lobby_players?: (lobby_players_arr_rel_insert_input | null),match_map_hltv?: (v_player_match_map_hltv_arr_rel_insert_input | null),match_map_stats?: (player_match_map_stats_arr_rel_insert_input | null),match_stats?: (player_match_stats_v_arr_rel_insert_input | null),multi_kills?: (v_player_multi_kills_arr_rel_insert_input | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notifications?: (notifications_arr_rel_insert_input | null),objectives?: (player_objectives_arr_rel_insert_input | null),owned_teams?: (teams_arr_rel_insert_input | null),pending_match_imports?: (pending_match_import_players_arr_rel_insert_input | null),player_lineup?: (match_lineup_players_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),premier_rank?: (Scalars['Int'] | null),premier_rank_history?: (player_premier_rank_history_arr_rel_insert_input | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),sanctions?: (player_sanctions_arr_rel_insert_input | null),season_stats?: (player_season_stats_arr_rel_insert_input | null),show_match_ready_modal?: (Scalars['Boolean'] | null),stats?: (player_stats_obj_rel_insert_input | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),team_invites?: (team_invites_arr_rel_insert_input | null),team_members?: (team_roster_arr_rel_insert_input | null),tournament_organizers?: (tournament_organizers_arr_rel_insert_input | null),tournament_rosters?: (tournament_team_roster_arr_rel_insert_input | null),tournament_trophies?: (tournament_trophies_arr_rel_insert_input | null),tournaments?: (tournaments_arr_rel_insert_input | null),utility_thrown?: (player_utility_arr_rel_insert_input | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null),weapon_stats?: (player_weapon_stats_v_arr_rel_insert_input | null)} +export interface players_insert_input {abandoned_matches?: (abandoned_matches_arr_rel_insert_input | null),aim_weapon_stats?: (player_aim_weapon_stats_arr_rel_insert_input | null),assists?: (player_assists_arr_rel_insert_input | null),assited_by_players?: (player_assists_arr_rel_insert_input | null),avatar_url?: (Scalars['String'] | null),coach_lineups?: (match_lineups_arr_rel_insert_input | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),damage_dealt?: (player_damages_arr_rel_insert_input | null),damage_taken?: (player_damages_arr_rel_insert_input | null),days_since_last_ban?: (Scalars['Int'] | null),deaths?: (player_kills_arr_rel_insert_input | null),discord_id?: (Scalars['String'] | null),draft_game_players?: (draft_game_players_arr_rel_insert_input | null),elo_history?: (v_player_elo_arr_rel_insert_input | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_rank_history?: (player_faceit_rank_history_arr_rel_insert_input | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_synced_at?: (Scalars['timestamptz'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),flashed_by_players?: (player_flashes_arr_rel_insert_input | null),flashed_players?: (player_flashes_arr_rel_insert_input | null),friends?: (my_friends_arr_rel_insert_input | null),game_ban_count?: (Scalars['Int'] | null),invited_players?: (team_invites_arr_rel_insert_input | null),kills?: (player_kills_arr_rel_insert_input | null),kills_by_weapons?: (player_kills_by_weapon_arr_rel_insert_input | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),lobby_players?: (lobby_players_arr_rel_insert_input | null),match_map_hltv?: (v_player_match_map_hltv_arr_rel_insert_input | null),match_map_stats?: (player_match_map_stats_arr_rel_insert_input | null),match_stats?: (player_match_stats_v_arr_rel_insert_input | null),multi_kills?: (v_player_multi_kills_arr_rel_insert_input | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notifications?: (notifications_arr_rel_insert_input | null),objectives?: (player_objectives_arr_rel_insert_input | null),owned_teams?: (teams_arr_rel_insert_input | null),pending_match_imports?: (pending_match_import_players_arr_rel_insert_input | null),player_lineup?: (match_lineup_players_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),premier_rank?: (Scalars['Int'] | null),premier_rank_history?: (player_premier_rank_history_arr_rel_insert_input | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),sanctions?: (player_sanctions_arr_rel_insert_input | null),season_stats?: (player_season_stats_arr_rel_insert_input | null),show_match_ready_modal?: (Scalars['Boolean'] | null),stats?: (player_stats_obj_rel_insert_input | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),team_invites?: (team_invites_arr_rel_insert_input | null),team_members?: (team_roster_arr_rel_insert_input | null),tournament_organizers?: (tournament_organizers_arr_rel_insert_input | null),tournament_rosters?: (tournament_team_roster_arr_rel_insert_input | null),tournament_trophies?: (tournament_trophies_arr_rel_insert_input | null),tournaments?: (tournaments_arr_rel_insert_input | null),utility_thrown?: (player_utility_arr_rel_insert_input | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null),weapon_stats?: (player_weapon_stats_v_arr_rel_insert_input | null)} /** aggregate max on columns */ @@ -65632,6 +65603,7 @@ export interface players_max_fieldsGenqlSelection{ faceit_nickname?: boolean | number faceit_player_id?: boolean | number faceit_skill_level?: boolean | number + faceit_synced_at?: boolean | number faceit_updated_at?: boolean | number faceit_url?: boolean | number game_ban_count?: boolean | number @@ -65685,6 +65657,7 @@ export interface players_min_fieldsGenqlSelection{ faceit_nickname?: boolean | number faceit_player_id?: boolean | number faceit_skill_level?: boolean | number + faceit_synced_at?: boolean | number faceit_updated_at?: boolean | number faceit_url?: boolean | number game_ban_count?: boolean | number @@ -65746,7 +65719,7 @@ export interface players_on_conflict {constraint: players_constraint,update_colu /** Ordering options when selecting data from "players". */ -export interface players_order_by {abandoned_matches_aggregate?: (abandoned_matches_aggregate_order_by | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_order_by | null),assists_aggregate?: (player_assists_aggregate_order_by | null),assited_by_players_aggregate?: (player_assists_aggregate_order_by | null),avatar_url?: (order_by | null),coach_lineups_aggregate?: (match_lineups_aggregate_order_by | null),country?: (order_by | null),created_at?: (order_by | null),current_lobby_id?: (order_by | null),custom_avatar_url?: (order_by | null),damage_dealt_aggregate?: (player_damages_aggregate_order_by | null),damage_taken_aggregate?: (player_damages_aggregate_order_by | null),days_since_last_ban?: (order_by | null),deaths_aggregate?: (player_kills_aggregate_order_by | null),discord_id?: (order_by | null),draft_game_players_aggregate?: (draft_game_players_aggregate_order_by | null),elo?: (order_by | null),elo_history_aggregate?: (v_player_elo_aggregate_order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),flashed_by_players_aggregate?: (player_flashes_aggregate_order_by | null),flashed_players_aggregate?: (player_flashes_aggregate_order_by | null),friends_aggregate?: (my_friends_aggregate_order_by | null),game_ban_count?: (order_by | null),invited_players_aggregate?: (team_invites_aggregate_order_by | null),is_banned?: (order_by | null),is_gagged?: (order_by | null),is_in_another_match?: (order_by | null),is_in_draft?: (order_by | null),is_in_lobby?: (order_by | null),is_muted?: (order_by | null),kills_aggregate?: (player_kills_aggregate_order_by | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),lobby_players_aggregate?: (lobby_players_aggregate_order_by | null),losses?: (order_by | null),losses_competitive?: (order_by | null),losses_duel?: (order_by | null),losses_wingman?: (order_by | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_order_by | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_order_by | null),match_stats_aggregate?: (player_match_stats_v_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),matchmaking_cooldown?: (order_by | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_order_by | null),name?: (order_by | null),name_registered?: (order_by | null),notifications_aggregate?: (notifications_aggregate_order_by | null),objectives_aggregate?: (player_objectives_aggregate_order_by | null),owned_teams_aggregate?: (teams_aggregate_order_by | null),peak_elo?: (order_by | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_order_by | null),player_lineup_aggregate?: (match_lineup_players_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),premier_rank?: (order_by | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_order_by | null),premier_rank_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),sanctions_aggregate?: (player_sanctions_aggregate_order_by | null),season_stats_aggregate?: (player_season_stats_aggregate_order_by | null),show_match_ready_modal?: (order_by | null),stats?: (player_stats_order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),team_invites_aggregate?: (team_invites_aggregate_order_by | null),team_members_aggregate?: (team_roster_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),total_matches?: (order_by | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),tournament_trophies_aggregate?: (tournament_trophies_aggregate_order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),utility_thrown_aggregate?: (player_utility_aggregate_order_by | null),vac_ban_count?: (order_by | null),vac_banned?: (order_by | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_order_by | null),wins?: (order_by | null),wins_competitive?: (order_by | null),wins_duel?: (order_by | null),wins_wingman?: (order_by | null)} +export interface players_order_by {abandoned_matches_aggregate?: (abandoned_matches_aggregate_order_by | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_order_by | null),assists_aggregate?: (player_assists_aggregate_order_by | null),assited_by_players_aggregate?: (player_assists_aggregate_order_by | null),avatar_url?: (order_by | null),coach_lineups_aggregate?: (match_lineups_aggregate_order_by | null),country?: (order_by | null),created_at?: (order_by | null),current_lobby_id?: (order_by | null),custom_avatar_url?: (order_by | null),damage_dealt_aggregate?: (player_damages_aggregate_order_by | null),damage_taken_aggregate?: (player_damages_aggregate_order_by | null),days_since_last_ban?: (order_by | null),deaths_aggregate?: (player_kills_aggregate_order_by | null),discord_id?: (order_by | null),draft_game_players_aggregate?: (draft_game_players_aggregate_order_by | null),elo?: (order_by | null),elo_history_aggregate?: (v_player_elo_aggregate_order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_order_by | null),faceit_skill_level?: (order_by | null),faceit_synced_at?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),flashed_by_players_aggregate?: (player_flashes_aggregate_order_by | null),flashed_players_aggregate?: (player_flashes_aggregate_order_by | null),friends_aggregate?: (my_friends_aggregate_order_by | null),game_ban_count?: (order_by | null),invited_players_aggregate?: (team_invites_aggregate_order_by | null),is_banned?: (order_by | null),is_gagged?: (order_by | null),is_in_another_match?: (order_by | null),is_in_draft?: (order_by | null),is_in_lobby?: (order_by | null),is_muted?: (order_by | null),kills_aggregate?: (player_kills_aggregate_order_by | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),lobby_players_aggregate?: (lobby_players_aggregate_order_by | null),losses?: (order_by | null),losses_competitive?: (order_by | null),losses_duel?: (order_by | null),losses_wingman?: (order_by | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_order_by | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_order_by | null),match_stats_aggregate?: (player_match_stats_v_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),matchmaking_cooldown?: (order_by | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_order_by | null),name?: (order_by | null),name_registered?: (order_by | null),notifications_aggregate?: (notifications_aggregate_order_by | null),objectives_aggregate?: (player_objectives_aggregate_order_by | null),owned_teams_aggregate?: (teams_aggregate_order_by | null),peak_elo?: (order_by | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_order_by | null),player_lineup_aggregate?: (match_lineup_players_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),premier_rank?: (order_by | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_order_by | null),premier_rank_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),sanctions_aggregate?: (player_sanctions_aggregate_order_by | null),season_stats_aggregate?: (player_season_stats_aggregate_order_by | null),show_match_ready_modal?: (order_by | null),stats?: (player_stats_order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),team_invites_aggregate?: (team_invites_aggregate_order_by | null),team_members_aggregate?: (team_roster_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),total_matches?: (order_by | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),tournament_trophies_aggregate?: (tournament_trophies_aggregate_order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),utility_thrown_aggregate?: (player_utility_aggregate_order_by | null),vac_ban_count?: (order_by | null),vac_banned?: (order_by | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_order_by | null),wins?: (order_by | null),wins_competitive?: (order_by | null),wins_duel?: (order_by | null),wins_wingman?: (order_by | null)} /** primary key columns input for table: players */ @@ -65754,7 +65727,7 @@ export interface players_pk_columns_input {steam_id: Scalars['bigint']} /** input type for updating data in table "players" */ -export interface players_set_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} +export interface players_set_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_synced_at?: (Scalars['timestamptz'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} /** aggregate stddev on columns */ @@ -65862,7 +65835,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface players_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} +export interface players_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_synced_at?: (Scalars['timestamptz'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} /** aggregate sum on columns */ @@ -82851,7 +82824,6 @@ export interface tournamentsGenqlSelection{ /** A computed field, executes function "tournament_has_min_teams" */ has_min_teams?: boolean | number id?: boolean | number - is_league?: boolean | number /** A computed field, executes function "is_tournament_organizer" */ is_organizer?: boolean | number /** A computed field, executes function "joined_tournament" */ @@ -83130,7 +83102,7 @@ export interface tournaments_avg_order_by {organizer_steam_id?: (order_by | null /** Boolean expression to filter rows from the table "tournaments". All fields are combined with a logical 'AND'. */ -export interface tournaments_bool_exp {_and?: (tournaments_bool_exp[] | null),_not?: (tournaments_bool_exp | null),_or?: (tournaments_bool_exp[] | null),admin?: (players_bool_exp | null),auto_start?: (Boolean_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_close_registration?: (Boolean_comparison_exp | null),can_join?: (Boolean_comparison_exp | null),can_open_registration?: (Boolean_comparison_exp | null),can_pause?: (Boolean_comparison_exp | null),can_resume?: (Boolean_comparison_exp | null),can_setup?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),discord_guild_id?: (String_comparison_exp | null),discord_notifications_enabled?: (Boolean_comparison_exp | null),discord_notify_Canceled?: (Boolean_comparison_exp | null),discord_notify_Finished?: (Boolean_comparison_exp | null),discord_notify_Forfeit?: (Boolean_comparison_exp | null),discord_notify_Live?: (Boolean_comparison_exp | null),discord_notify_MapPaused?: (Boolean_comparison_exp | null),discord_notify_PickingPlayers?: (Boolean_comparison_exp | null),discord_notify_Scheduled?: (Boolean_comparison_exp | null),discord_notify_Surrendered?: (Boolean_comparison_exp | null),discord_notify_Tie?: (Boolean_comparison_exp | null),discord_notify_Veto?: (Boolean_comparison_exp | null),discord_notify_WaitingForCheckIn?: (Boolean_comparison_exp | null),discord_notify_WaitingForServer?: (Boolean_comparison_exp | null),discord_role_id?: (String_comparison_exp | null),discord_voice_enabled?: (Boolean_comparison_exp | null),discord_webhook?: (String_comparison_exp | null),e_tournament_status?: (e_tournament_status_bool_exp | null),has_min_teams?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),is_league?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),joined_tournament?: (Boolean_comparison_exp | null),league_season_division?: (league_season_divisions_bool_exp | null),match_options_id?: (uuid_comparison_exp | null),max_players_per_lineup?: (Int_comparison_exp | null),min_players_per_lineup?: (Int_comparison_exp | null),name?: (String_comparison_exp | null),options?: (match_options_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),organizers?: (tournament_organizers_bool_exp | null),organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),player_stats?: (v_tournament_player_stats_bool_exp | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_bool_exp | null),results?: (v_team_tournament_results_bool_exp | null),results_aggregate?: (v_team_tournament_results_aggregate_bool_exp | null),rosters?: (tournament_team_roster_bool_exp | null),rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),scheduling_mode?: (String_comparison_exp | null),stages?: (tournament_stages_bool_exp | null),stages_aggregate?: (tournament_stages_aggregate_bool_exp | null),start?: (timestamptz_comparison_exp | null),status?: (e_tournament_status_enum_comparison_exp | null),teams?: (tournament_teams_bool_exp | null),teams_aggregate?: (tournament_teams_aggregate_bool_exp | null),trophies?: (tournament_trophies_bool_exp | null),trophies_aggregate?: (tournament_trophies_aggregate_bool_exp | null),trophies_enabled?: (Boolean_comparison_exp | null),trophy_configs?: (tournament_trophy_configs_bool_exp | null),trophy_configs_aggregate?: (tournament_trophy_configs_aggregate_bool_exp | null)} +export interface tournaments_bool_exp {_and?: (tournaments_bool_exp[] | null),_not?: (tournaments_bool_exp | null),_or?: (tournaments_bool_exp[] | null),admin?: (players_bool_exp | null),auto_start?: (Boolean_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_close_registration?: (Boolean_comparison_exp | null),can_join?: (Boolean_comparison_exp | null),can_open_registration?: (Boolean_comparison_exp | null),can_pause?: (Boolean_comparison_exp | null),can_resume?: (Boolean_comparison_exp | null),can_setup?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),discord_guild_id?: (String_comparison_exp | null),discord_notifications_enabled?: (Boolean_comparison_exp | null),discord_notify_Canceled?: (Boolean_comparison_exp | null),discord_notify_Finished?: (Boolean_comparison_exp | null),discord_notify_Forfeit?: (Boolean_comparison_exp | null),discord_notify_Live?: (Boolean_comparison_exp | null),discord_notify_MapPaused?: (Boolean_comparison_exp | null),discord_notify_PickingPlayers?: (Boolean_comparison_exp | null),discord_notify_Scheduled?: (Boolean_comparison_exp | null),discord_notify_Surrendered?: (Boolean_comparison_exp | null),discord_notify_Tie?: (Boolean_comparison_exp | null),discord_notify_Veto?: (Boolean_comparison_exp | null),discord_notify_WaitingForCheckIn?: (Boolean_comparison_exp | null),discord_notify_WaitingForServer?: (Boolean_comparison_exp | null),discord_role_id?: (String_comparison_exp | null),discord_voice_enabled?: (Boolean_comparison_exp | null),discord_webhook?: (String_comparison_exp | null),e_tournament_status?: (e_tournament_status_bool_exp | null),has_min_teams?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),joined_tournament?: (Boolean_comparison_exp | null),league_season_division?: (league_season_divisions_bool_exp | null),match_options_id?: (uuid_comparison_exp | null),max_players_per_lineup?: (Int_comparison_exp | null),min_players_per_lineup?: (Int_comparison_exp | null),name?: (String_comparison_exp | null),options?: (match_options_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),organizers?: (tournament_organizers_bool_exp | null),organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),player_stats?: (v_tournament_player_stats_bool_exp | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_bool_exp | null),results?: (v_team_tournament_results_bool_exp | null),results_aggregate?: (v_team_tournament_results_aggregate_bool_exp | null),rosters?: (tournament_team_roster_bool_exp | null),rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),scheduling_mode?: (String_comparison_exp | null),stages?: (tournament_stages_bool_exp | null),stages_aggregate?: (tournament_stages_aggregate_bool_exp | null),start?: (timestamptz_comparison_exp | null),status?: (e_tournament_status_enum_comparison_exp | null),teams?: (tournament_teams_bool_exp | null),teams_aggregate?: (tournament_teams_aggregate_bool_exp | null),trophies?: (tournament_trophies_bool_exp | null),trophies_aggregate?: (tournament_trophies_aggregate_bool_exp | null),trophies_enabled?: (Boolean_comparison_exp | null),trophy_configs?: (tournament_trophy_configs_bool_exp | null),trophy_configs_aggregate?: (tournament_trophy_configs_aggregate_bool_exp | null)} /** input type for incrementing numeric columns in table "tournaments" */ @@ -83138,7 +83110,7 @@ export interface tournaments_inc_input {organizer_steam_id?: (Scalars['bigint'] /** input type for inserting data into table "tournaments" */ -export interface tournaments_insert_input {admin?: (players_obj_rel_insert_input | null),auto_start?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),e_tournament_status?: (e_tournament_status_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),is_league?: (Scalars['Boolean'] | null),league_season_division?: (league_season_divisions_obj_rel_insert_input | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),options?: (match_options_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),organizers?: (tournament_organizers_arr_rel_insert_input | null),player_stats?: (v_tournament_player_stats_arr_rel_insert_input | null),results?: (v_team_tournament_results_arr_rel_insert_input | null),rosters?: (tournament_team_roster_arr_rel_insert_input | null),scheduling_mode?: (Scalars['String'] | null),stages?: (tournament_stages_arr_rel_insert_input | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),teams?: (tournament_teams_arr_rel_insert_input | null),trophies?: (tournament_trophies_arr_rel_insert_input | null),trophies_enabled?: (Scalars['Boolean'] | null),trophy_configs?: (tournament_trophy_configs_arr_rel_insert_input | null)} +export interface tournaments_insert_input {admin?: (players_obj_rel_insert_input | null),auto_start?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),e_tournament_status?: (e_tournament_status_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),league_season_division?: (league_season_divisions_obj_rel_insert_input | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),options?: (match_options_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),organizers?: (tournament_organizers_arr_rel_insert_input | null),player_stats?: (v_tournament_player_stats_arr_rel_insert_input | null),results?: (v_team_tournament_results_arr_rel_insert_input | null),rosters?: (tournament_team_roster_arr_rel_insert_input | null),scheduling_mode?: (Scalars['String'] | null),stages?: (tournament_stages_arr_rel_insert_input | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),teams?: (tournament_teams_arr_rel_insert_input | null),trophies?: (tournament_trophies_arr_rel_insert_input | null),trophies_enabled?: (Scalars['Boolean'] | null),trophy_configs?: (tournament_trophy_configs_arr_rel_insert_input | null)} /** aggregate max on columns */ @@ -83215,7 +83187,7 @@ export interface tournaments_on_conflict {constraint: tournaments_constraint,upd /** Ordering options when selecting data from "tournaments". */ -export interface tournaments_order_by {admin?: (players_order_by | null),auto_start?: (order_by | null),can_cancel?: (order_by | null),can_close_registration?: (order_by | null),can_join?: (order_by | null),can_open_registration?: (order_by | null),can_pause?: (order_by | null),can_resume?: (order_by | null),can_setup?: (order_by | null),can_start?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_notifications_enabled?: (order_by | null),discord_notify_Canceled?: (order_by | null),discord_notify_Finished?: (order_by | null),discord_notify_Forfeit?: (order_by | null),discord_notify_Live?: (order_by | null),discord_notify_MapPaused?: (order_by | null),discord_notify_PickingPlayers?: (order_by | null),discord_notify_Scheduled?: (order_by | null),discord_notify_Surrendered?: (order_by | null),discord_notify_Tie?: (order_by | null),discord_notify_Veto?: (order_by | null),discord_notify_WaitingForCheckIn?: (order_by | null),discord_notify_WaitingForServer?: (order_by | null),discord_role_id?: (order_by | null),discord_voice_enabled?: (order_by | null),discord_webhook?: (order_by | null),e_tournament_status?: (e_tournament_status_order_by | null),has_min_teams?: (order_by | null),id?: (order_by | null),is_league?: (order_by | null),is_organizer?: (order_by | null),joined_tournament?: (order_by | null),league_season_division?: (league_season_divisions_order_by | null),match_options_id?: (order_by | null),max_players_per_lineup?: (order_by | null),min_players_per_lineup?: (order_by | null),name?: (order_by | null),options?: (match_options_order_by | null),organizer_steam_id?: (order_by | null),organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_order_by | null),results_aggregate?: (v_team_tournament_results_aggregate_order_by | null),rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),scheduling_mode?: (order_by | null),stages_aggregate?: (tournament_stages_aggregate_order_by | null),start?: (order_by | null),status?: (order_by | null),teams_aggregate?: (tournament_teams_aggregate_order_by | null),trophies_aggregate?: (tournament_trophies_aggregate_order_by | null),trophies_enabled?: (order_by | null),trophy_configs_aggregate?: (tournament_trophy_configs_aggregate_order_by | null)} +export interface tournaments_order_by {admin?: (players_order_by | null),auto_start?: (order_by | null),can_cancel?: (order_by | null),can_close_registration?: (order_by | null),can_join?: (order_by | null),can_open_registration?: (order_by | null),can_pause?: (order_by | null),can_resume?: (order_by | null),can_setup?: (order_by | null),can_start?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_notifications_enabled?: (order_by | null),discord_notify_Canceled?: (order_by | null),discord_notify_Finished?: (order_by | null),discord_notify_Forfeit?: (order_by | null),discord_notify_Live?: (order_by | null),discord_notify_MapPaused?: (order_by | null),discord_notify_PickingPlayers?: (order_by | null),discord_notify_Scheduled?: (order_by | null),discord_notify_Surrendered?: (order_by | null),discord_notify_Tie?: (order_by | null),discord_notify_Veto?: (order_by | null),discord_notify_WaitingForCheckIn?: (order_by | null),discord_notify_WaitingForServer?: (order_by | null),discord_role_id?: (order_by | null),discord_voice_enabled?: (order_by | null),discord_webhook?: (order_by | null),e_tournament_status?: (e_tournament_status_order_by | null),has_min_teams?: (order_by | null),id?: (order_by | null),is_organizer?: (order_by | null),joined_tournament?: (order_by | null),league_season_division?: (league_season_divisions_order_by | null),match_options_id?: (order_by | null),max_players_per_lineup?: (order_by | null),min_players_per_lineup?: (order_by | null),name?: (order_by | null),options?: (match_options_order_by | null),organizer_steam_id?: (order_by | null),organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_order_by | null),results_aggregate?: (v_team_tournament_results_aggregate_order_by | null),rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),scheduling_mode?: (order_by | null),stages_aggregate?: (tournament_stages_aggregate_order_by | null),start?: (order_by | null),status?: (order_by | null),teams_aggregate?: (tournament_teams_aggregate_order_by | null),trophies_aggregate?: (tournament_trophies_aggregate_order_by | null),trophies_enabled?: (order_by | null),trophy_configs_aggregate?: (tournament_trophy_configs_aggregate_order_by | null)} /** primary key columns input for table: tournaments */ @@ -83223,7 +83195,7 @@ export interface tournaments_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "tournaments" */ -export interface tournaments_set_input {auto_start?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_league?: (Scalars['Boolean'] | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),trophies_enabled?: (Scalars['Boolean'] | null)} +export interface tournaments_set_input {auto_start?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),trophies_enabled?: (Scalars['Boolean'] | null)} /** aggregate stddev on columns */ @@ -83283,7 +83255,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface tournaments_stream_cursor_value_input {auto_start?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_league?: (Scalars['Boolean'] | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),trophies_enabled?: (Scalars['Boolean'] | null)} +export interface tournaments_stream_cursor_value_input {auto_start?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),trophies_enabled?: (Scalars['Boolean'] | null)} /** aggregate sum on columns */ @@ -106687,6 +106659,7 @@ export const enumDbBackupsUpdateColumn = { } export const enumDraftGamePicksConstraint = { + draft_game_picks_draft_game_id_picked_steam_id_key: 'draft_game_picks_draft_game_id_picked_steam_id_key' as const, draft_game_picks_pkey: 'draft_game_picks_pkey' as const } @@ -106719,6 +106692,7 @@ export const enumDraftGamePicksUpdateColumn = { } export const enumDraftGamePlayersConstraint = { + draft_game_players_captain_lineup_key: 'draft_game_players_captain_lineup_key' as const, draft_game_players_pkey: 'draft_game_players_pkey' as const } @@ -106753,6 +106727,7 @@ export const enumDraftGamePlayersUpdateColumn = { } export const enumDraftGamesConstraint = { + draft_games_invite_code_key: 'draft_games_invite_code_key' as const, draft_games_pkey: 'draft_games_pkey' as const } @@ -106777,7 +106752,6 @@ export const enumDraftGamesSelectColumn = { pick_deadline: 'pick_deadline' as const, regions: 'regions' as const, require_approval: 'require_approval' as const, - scheduled_at: 'scheduled_at' as const, status: 'status' as const, team_1_id: 'team_1_id' as const, team_2_id: 'team_2_id' as const, @@ -106816,7 +106790,6 @@ export const enumDraftGamesUpdateColumn = { pick_deadline: 'pick_deadline' as const, regions: 'regions' as const, require_approval: 'require_approval' as const, - scheduled_at: 'scheduled_at' as const, status: 'status' as const, team_1_id: 'team_1_id' as const, team_2_id: 'team_2_id' as const, @@ -107728,7 +107701,6 @@ export const enumGameServerNodesSelectColumn = { cpu_governor_info: 'cpu_governor_info' as const, cpu_sockets: 'cpu_sockets' as const, cpu_threads_per_core: 'cpu_threads_per_core' as const, - cs2_launch_options: 'cs2_launch_options' as const, cs2_video_settings: 'cs2_video_settings' as const, csgo_build_id: 'csgo_build_id' as const, demo_network_limiter: 'demo_network_limiter' as const, @@ -107793,7 +107765,6 @@ export const enumGameServerNodesUpdateColumn = { cpu_governor_info: 'cpu_governor_info' as const, cpu_sockets: 'cpu_sockets' as const, cpu_threads_per_core: 'cpu_threads_per_core' as const, - cs2_launch_options: 'cs2_launch_options' as const, cs2_video_settings: 'cs2_video_settings' as const, csgo_build_id: 'csgo_build_id' as const, demo_network_limiter: 'demo_network_limiter' as const, @@ -108035,9 +108006,7 @@ export const enumLeagueSeasonsSelectColumn = { playoff_seats: 'playoff_seats' as const, playoff_stage_type: 'playoff_stage_type' as const, playoff_third_place_match: 'playoff_third_place_match' as const, - promote_count: 'promote_count' as const, regular_season_stage_type: 'regular_season_stage_type' as const, - relegate_count: 'relegate_count' as const, relegation_down_count: 'relegation_down_count' as const, relegation_up_count: 'relegation_up_count' as const, roster_lock_at: 'roster_lock_at' as const, @@ -108068,9 +108037,7 @@ export const enumLeagueSeasonsUpdateColumn = { playoff_seats: 'playoff_seats' as const, playoff_stage_type: 'playoff_stage_type' as const, playoff_third_place_match: 'playoff_third_place_match' as const, - promote_count: 'promote_count' as const, regular_season_stage_type: 'regular_season_stage_type' as const, - relegate_count: 'relegate_count' as const, relegation_down_count: 'relegation_down_count' as const, relegation_up_count: 'relegation_up_count' as const, roster_lock_at: 'roster_lock_at' as const, @@ -108560,6 +108527,7 @@ export const enumMatchMapsConstraint = { } export const enumMatchMapsSelectColumn = { + anti_wallhack_active: 'anti_wallhack_active' as const, clips_count: 'clips_count' as const, created_at: 'created_at' as const, ended_at: 'ended_at' as const, @@ -108579,7 +108547,16 @@ export const enumMatchMapsSelectColumn = { winning_lineup_id: 'winning_lineup_id' as const } +export const enumMatchMapsSelectColumnMatchMapsAggregateBoolExpBoolAndArgumentsColumns = { + anti_wallhack_active: 'anti_wallhack_active' as const +} + +export const enumMatchMapsSelectColumnMatchMapsAggregateBoolExpBoolOrArgumentsColumns = { + anti_wallhack_active: 'anti_wallhack_active' as const +} + export const enumMatchMapsUpdateColumn = { + anti_wallhack_active: 'anti_wallhack_active' as const, clips_count: 'clips_count' as const, created_at: 'created_at' as const, ended_at: 'ended_at' as const, @@ -108604,6 +108581,7 @@ export const enumMatchOptionsConstraint = { } export const enumMatchOptionsSelectColumn = { + anti_wallhack: 'anti_wallhack' as const, auto_cancel_duration: 'auto_cancel_duration' as const, auto_cancellation: 'auto_cancellation' as const, best_of: 'best_of' as const, @@ -108631,6 +108609,7 @@ export const enumMatchOptionsSelectColumn = { } export const enumMatchOptionsUpdateColumn = { + anti_wallhack: 'anti_wallhack' as const, auto_cancel_duration: 'auto_cancel_duration' as const, auto_cancellation: 'auto_cancellation' as const, best_of: 'best_of' as const, @@ -108827,6 +108806,7 @@ export const enumMyFriendsSelectColumn = { faceit_nickname: 'faceit_nickname' as const, faceit_player_id: 'faceit_player_id' as const, faceit_skill_level: 'faceit_skill_level' as const, + faceit_synced_at: 'faceit_synced_at' as const, faceit_updated_at: 'faceit_updated_at' as const, faceit_url: 'faceit_url' as const, friend_steam_id: 'friend_steam_id' as const, @@ -109957,6 +109937,7 @@ export const enumPlayersSelectColumn = { faceit_nickname: 'faceit_nickname' as const, faceit_player_id: 'faceit_player_id' as const, faceit_skill_level: 'faceit_skill_level' as const, + faceit_synced_at: 'faceit_synced_at' as const, faceit_updated_at: 'faceit_updated_at' as const, faceit_url: 'faceit_url' as const, game_ban_count: 'game_ban_count' as const, @@ -109988,6 +109969,7 @@ export const enumPlayersUpdateColumn = { faceit_nickname: 'faceit_nickname' as const, faceit_player_id: 'faceit_player_id' as const, faceit_skill_level: 'faceit_skill_level' as const, + faceit_synced_at: 'faceit_synced_at' as const, faceit_updated_at: 'faceit_updated_at' as const, faceit_url: 'faceit_url' as const, game_ban_count: 'game_ban_count' as const, @@ -110826,7 +110808,6 @@ export const enumTournamentsSelectColumn = { discord_voice_enabled: 'discord_voice_enabled' as const, discord_webhook: 'discord_webhook' as const, id: 'id' as const, - is_league: 'is_league' as const, match_options_id: 'match_options_id' as const, name: 'name' as const, organizer_steam_id: 'organizer_steam_id' as const, @@ -110852,7 +110833,6 @@ export const enumTournamentsSelectColumnTournamentsAggregateBoolExpBoolAndArgume discord_notify_WaitingForCheckIn: 'discord_notify_WaitingForCheckIn' as const, discord_notify_WaitingForServer: 'discord_notify_WaitingForServer' as const, discord_voice_enabled: 'discord_voice_enabled' as const, - is_league: 'is_league' as const, trophies_enabled: 'trophies_enabled' as const } @@ -110872,7 +110852,6 @@ export const enumTournamentsSelectColumnTournamentsAggregateBoolExpBoolOrArgumen discord_notify_WaitingForCheckIn: 'discord_notify_WaitingForCheckIn' as const, discord_notify_WaitingForServer: 'discord_notify_WaitingForServer' as const, discord_voice_enabled: 'discord_voice_enabled' as const, - is_league: 'is_league' as const, trophies_enabled: 'trophies_enabled' as const } @@ -110898,7 +110877,6 @@ export const enumTournamentsUpdateColumn = { discord_voice_enabled: 'discord_voice_enabled' as const, discord_webhook: 'discord_webhook' as const, id: 'id' as const, - is_league: 'is_league' as const, match_options_id: 'match_options_id' as const, name: 'name' as const, organizer_steam_id: 'organizer_steam_id' as const, diff --git a/generated/types.ts b/generated/types.ts index 35406cf0..540e0230 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -286,304 +286,306 @@ export default { 2118, 2128, 2132, - 2144, - 2156, - 2168, - 2181, - 2191, - 2199, - 2212, - 2222, + 2146, + 2158, + 2159, + 2160, + 2172, + 2185, + 2195, + 2203, + 2216, 2226, - 2241, - 2256, - 2257, - 2258, - 2270, - 2282, - 2290, + 2230, + 2245, + 2260, + 2261, + 2262, + 2274, + 2286, 2294, - 2306, - 2318, - 2330, - 2342, - 2350, + 2298, + 2310, + 2322, + 2334, + 2346, 2354, - 2381, - 2382, - 2383, - 2407, - 2416, - 2424, - 2442, - 2457, - 2458, - 2459, - 2471, - 2479, - 2481, - 2492, - 2503, - 2515, - 2528, - 2538, - 2546, - 2556, - 2565, - 2573, - 2588, - 2599, - 2611, - 2631, - 2642, - 2643, - 2644, - 2656, - 2672, - 2692, - 2703, - 2715, - 2728, - 2737, - 2745, - 2760, - 2771, - 2783, - 2803, - 2814, - 2815, - 2816, - 2828, - 2858, - 2869, - 2881, - 2889, - 2900, - 2901, - 2902, - 2914, - 2933, - 2955, - 2966, - 2978, - 2994, - 3020, - 3047, - 3058, - 3070, - 3086, - 3106, - 3117, - 3129, - 3147, - 3158, - 3170, - 3198, - 3209, - 3210, - 3211, - 3212, + 2358, + 2385, + 2386, + 2387, + 2411, + 2420, + 2428, + 2446, + 2461, + 2462, + 2463, + 2475, + 2483, + 2485, + 2496, + 2507, + 2519, + 2532, + 2542, + 2550, + 2560, + 2569, + 2577, + 2592, + 2603, + 2615, + 2635, + 2646, + 2647, + 2648, + 2660, + 2676, + 2696, + 2707, + 2719, + 2732, + 2741, + 2749, + 2764, + 2775, + 2787, + 2807, + 2818, + 2819, + 2820, + 2832, + 2862, + 2873, + 2885, + 2893, + 2904, + 2905, + 2906, + 2918, + 2937, + 2959, + 2970, + 2982, + 2998, + 3024, + 3051, + 3062, + 3074, + 3090, + 3110, + 3121, + 3133, + 3151, + 3162, + 3174, + 3202, 3213, 3214, 3215, 3216, 3217, - 3229, - 3242, - 3252, - 3260, - 3271, - 3284, - 3292, - 3302, - 3311, - 3319, - 3334, - 3345, - 3357, - 3375, - 3386, - 3398, - 3422, - 3444, - 3454, - 3462, - 3472, - 3481, - 3489, - 3503, - 3513, - 3521, - 3531, - 3540, - 3548, - 3565, - 3577, - 3578, - 3579, - 3591, - 3603, - 3611, + 3218, + 3219, + 3220, + 3221, + 3233, + 3246, + 3256, + 3264, + 3275, + 3288, + 3296, + 3306, + 3315, + 3323, + 3338, + 3349, + 3361, + 3379, + 3390, + 3402, + 3426, + 3448, + 3458, + 3466, + 3476, + 3485, + 3493, + 3507, + 3517, + 3525, + 3535, + 3544, + 3552, + 3569, + 3581, + 3582, + 3583, + 3595, + 3607, 3615, - 3617, - 3627, - 3637, + 3619, + 3621, + 3631, 3641, - 3648, - 3658, - 3666, - 3676, - 3685, - 3693, - 3708, - 3719, - 3731, - 3751, - 3762, - 3763, - 3764, - 3776, - 3789, - 3798, - 3806, - 3821, - 3831, - 3832, - 3833, + 3645, + 3652, + 3662, + 3670, + 3680, + 3689, + 3697, + 3712, + 3723, + 3735, + 3755, + 3766, + 3767, + 3768, + 3780, + 3793, + 3802, + 3810, + 3825, + 3835, + 3836, 3837, - 3849, - 3860, - 3872, - 3892, - 3904, - 3905, - 3906, - 3918, - 3931, - 3941, - 3949, - 3959, - 3968, - 3976, - 3991, - 4003, - 4015, - 4023, - 4024, - 4038, - 4050, - 4051, - 4052, - 4064, - 4082, - 4093, - 4105, - 4123, - 4134, - 4146, - 4167, - 4183, - 4184, - 4185, - 4197, - 4215, - 4226, - 4238, - 4256, - 4267, - 4279, - 4297, - 4309, - 4321, - 4341, - 4352, - 4353, - 4354, - 4366, - 4384, - 4396, - 4408, - 4428, - 4440, - 4441, - 4442, - 4454, - 4462, - 4473, - 4499, - 4542, - 4543, - 4544, - 4545, + 3841, + 3853, + 3864, + 3876, + 3896, + 3908, + 3909, + 3910, + 3922, + 3935, + 3945, + 3953, + 3963, + 3972, + 3980, + 3995, + 4007, + 4019, + 4027, + 4028, + 4042, + 4054, + 4055, + 4056, + 4068, + 4086, + 4097, + 4109, + 4127, + 4138, + 4150, + 4171, + 4187, + 4188, + 4189, + 4201, + 4219, + 4230, + 4242, + 4260, + 4271, + 4283, + 4301, + 4313, + 4325, + 4345, + 4356, + 4357, + 4358, + 4370, + 4388, + 4400, + 4412, + 4432, + 4444, + 4445, + 4446, + 4458, + 4466, + 4477, + 4503, 4546, 4547, 4548, 4549, 4550, - 4579, - 4607, - 4632, - 4650, - 4668, - 4689, - 4709, - 4735, - 4760, - 4778, - 4814, - 4815, - 4816, - 4817, + 4551, + 4552, + 4553, + 4554, + 4583, + 4611, + 4636, + 4654, + 4672, + 4693, + 4713, + 4739, + 4764, + 4782, 4818, 4819, 4820, 4821, 4822, - 4847, - 4865, - 4883, - 4911, - 4938, - 4956, - 4974, - 5000, - 5025, - 5043, - 5070, - 5071, - 5072, - 5085, - 5105, - 5125, - 5155, - 5167, - 5168, - 5169, - 5170, + 4823, + 4824, + 4825, + 4826, + 4851, + 4869, + 4887, + 4915, + 4942, + 4960, + 4978, + 5004, + 5029, + 5047, + 5074, + 5075, + 5076, + 5089, + 5109, + 5129, + 5159, 5171, 5172, 5173, 5174, 5175, - 5187, - 5221, - 5222, - 5223, - 5224, + 5176, + 5177, + 5178, + 5179, + 5191, 5225, 5226, 5227, 5228, 5229, - 5272, - 5273, - 5274, - 5275, + 5230, + 5231, + 5232, + 5233, 5276, 5277, 5278, 5279, - 5280 + 5280, + 5281, + 5282, + 5283, + 5284 ], "types": { "ActiveConnection": { @@ -600,7 +602,7 @@ export default { 78 ], "query_start": [ - 4023 + 4027 ], "state": [ 78 @@ -629,7 +631,7 @@ export default { 78 ], "query_start": [ - 4023 + 4027 ], "state": [ 78 @@ -761,7 +763,7 @@ export default { 78 ], "match_map_id": [ - 4462 + 4466 ], "output": [ 6 @@ -821,7 +823,7 @@ export default { }, "CpuStat": { "time": [ - 4023 + 4027 ], "total": [ 180 @@ -838,7 +840,7 @@ export default { }, "CreateClipRenderOutput": { "job_id": [ - 4462 + 4466 ], "success": [ 3 @@ -849,7 +851,7 @@ export default { }, "CreateDraftGameOutput": { "draftGameId": [ - 4462 + 4466 ], "__typename": [ 78 @@ -857,7 +859,7 @@ export default { }, "CreateScheduledMatchOutput": { "matchId": [ - 4462 + 4466 ], "__typename": [ 78 @@ -1013,7 +1015,7 @@ export default { 20 ], "time": [ - 4023 + 4027 ], "__typename": [ 78 @@ -1039,7 +1041,7 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "mode": [ 78 @@ -1118,7 +1120,7 @@ export default { 3 ], "modified": [ - 4023 + 4027 ], "name": [ 78 @@ -1222,7 +1224,7 @@ export default { 32 ], "time": [ - 4023 + 4027 ], "__typename": [ 78 @@ -1464,7 +1466,7 @@ export default { 78 ], "player": [ - 3439 + 3443 ], "profile_url": [ 78 @@ -1481,7 +1483,7 @@ export default { }, "MemoryStat": { "time": [ - 4023 + 4027 ], "total": [ 180 @@ -1498,7 +1500,7 @@ export default { 49 ], "time": [ - 4023 + 4027 ], "__typename": [ 78 @@ -1518,7 +1520,7 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "published_at": [ 78 @@ -2276,16 +2278,16 @@ export default { 38 ], "last_analyze": [ - 4023 + 4027 ], "last_autoanalyze": [ - 4023 + 4027 ], "last_autovacuum": [ - 4023 + 4027 ], "last_vacuum": [ - 4023 + 4027 ], "n_dead_tup": [ 38 @@ -2359,7 +2361,7 @@ export default { 78 ], "next_start": [ - 4023 + 4027 ], "__typename": [ 78 @@ -2381,7 +2383,7 @@ export default { }, "TournamentMatchResetImpact": { "bracket_id": [ - 4462 + 4466 ], "depth": [ 38 @@ -2390,7 +2392,7 @@ export default { 3 ], "match_id": [ - 4462 + 4466 ], "match_number": [ 38 @@ -2433,10 +2435,10 @@ export default { }, "_map_pool": { "map_id": [ - 4462 + 4466 ], "map_pool_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -2487,10 +2489,10 @@ export default { 95 ], "map_id": [ - 4464 + 4468 ], "map_pool_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -2499,10 +2501,10 @@ export default { "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 4462 + 4466 ], "map_pool_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -2510,10 +2512,10 @@ export default { }, "_map_pool_max_fields": { "map_id": [ - 4462 + 4466 ], "map_pool_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -2521,10 +2523,10 @@ export default { }, "_map_pool_min_fields": { "map_id": [ - 4462 + 4466 ], "map_pool_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -2557,10 +2559,10 @@ export default { }, "_map_pool_order_by": { "map_id": [ - 2481 + 2485 ], "map_pool_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -2568,10 +2570,10 @@ export default { }, "_map_pool_pk_columns_input": { "map_id": [ - 4462 + 4466 ], "map_pool_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -2580,10 +2582,10 @@ export default { "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 4462 + 4466 ], "map_pool_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -2602,10 +2604,10 @@ export default { }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 4462 + 4466 ], "map_pool_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -2626,10 +2628,10 @@ export default { "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "steam_id": [ 180 @@ -2726,7 +2728,7 @@ export default { 119 ], "count": [ - 2481 + 2485 ], "max": [ 125 @@ -2780,7 +2782,7 @@ export default { }, "abandoned_matches_avg_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -2797,10 +2799,10 @@ export default { 120 ], "abandoned_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "steam_id": [ 182 @@ -2820,10 +2822,10 @@ export default { }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "steam_id": [ 180 @@ -2834,10 +2836,10 @@ export default { }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "steam_id": [ 180 @@ -2848,13 +2850,13 @@ export default { }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -2862,10 +2864,10 @@ export default { }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "steam_id": [ 180 @@ -2876,13 +2878,13 @@ export default { }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -2915,13 +2917,13 @@ export default { }, "abandoned_matches_order_by": { "abandoned_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -2929,7 +2931,7 @@ export default { }, "abandoned_matches_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -2938,10 +2940,10 @@ export default { "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "steam_id": [ 180 @@ -2960,7 +2962,7 @@ export default { }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -2976,7 +2978,7 @@ export default { }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -2992,7 +2994,7 @@ export default { }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -3011,10 +3013,10 @@ export default { }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "steam_id": [ 180 @@ -3033,7 +3035,7 @@ export default { }, "abandoned_matches_sum_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -3064,7 +3066,7 @@ export default { }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -3080,7 +3082,7 @@ export default { }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -3096,7 +3098,7 @@ export default { }, "abandoned_matches_variance_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -3104,16 +3106,16 @@ export default { }, "api_keys": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -3199,16 +3201,16 @@ export default { 156 ], "created_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "label": [ 80 ], "last_used_at": [ - 4025 + 4029 ], "steam_id": [ 182 @@ -3228,16 +3230,16 @@ export default { }, "api_keys_insert_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -3248,16 +3250,16 @@ export default { }, "api_keys_max_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -3268,16 +3270,16 @@ export default { }, "api_keys_min_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -3313,19 +3315,19 @@ export default { }, "api_keys_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "last_used_at": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -3333,7 +3335,7 @@ export default { }, "api_keys_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -3342,16 +3344,16 @@ export default { "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -3397,16 +3399,16 @@ export default { }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -3464,7 +3466,7 @@ export default { }, "approve_league_season_movements_args": { "_league_season_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -3579,10 +3581,10 @@ export default { 1843 ], "clip_id": [ - 4462 + 4466 ], "created_at": [ - 4024 + 4028 ], "error_message": [ 78 @@ -3594,13 +3596,13 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4028 ], "match_map": [ 2134 @@ -3609,16 +3611,16 @@ export default { 2018 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "paused": [ 3 ], "progress": [ - 2479 + 2483 ], "session_token": [ 78 @@ -3646,7 +3648,7 @@ export default { } ], "user": [ - 3439 + 3443 ], "user_steam_id": [ 180 @@ -3783,7 +3785,7 @@ export default { 196 ], "count": [ - 2481 + 2485 ], "max": [ 205 @@ -3854,13 +3856,13 @@ export default { }, "clip_render_jobs_avg_order_by": { "progress": [ - 2481 + 2485 ], "sort_index": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -3880,10 +3882,10 @@ export default { 1852 ], "clip_id": [ - 4464 + 4468 ], "created_at": [ - 4025 + 4029 ], "error_message": [ 80 @@ -3895,31 +3897,31 @@ export default { 80 ], "id": [ - 4464 + 4468 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4025 + 4029 ], "match_map": [ - 2143 + 2145 ], "match_map_demo": [ 2030 ], "match_map_demo_id": [ - 4464 + 4468 ], "match_map_id": [ - 4464 + 4468 ], "paused": [ 4 ], "progress": [ - 2480 + 2484 ], "session_token": [ 80 @@ -3937,7 +3939,7 @@ export default { 1354 ], "user": [ - 3443 + 3447 ], "user_steam_id": [ 182 @@ -3982,7 +3984,7 @@ export default { }, "clip_render_jobs_inc_input": { "progress": [ - 2479 + 2483 ], "sort_index": [ 38 @@ -3999,10 +4001,10 @@ export default { 1861 ], "clip_id": [ - 4462 + 4466 ], "created_at": [ - 4024 + 4028 ], "error_message": [ 78 @@ -4014,31 +4016,31 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4028 ], "match_map": [ - 2152 + 2154 ], "match_map_demo": [ 2042 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "paused": [ 3 ], "progress": [ - 2479 + 2483 ], "session_token": [ 78 @@ -4056,7 +4058,7 @@ export default { 1352 ], "user": [ - 3450 + 3454 ], "user_steam_id": [ 180 @@ -4067,10 +4069,10 @@ export default { }, "clip_render_jobs_max_fields": { "clip_id": [ - 4462 + 4466 ], "created_at": [ - 4024 + 4028 ], "error_message": [ 78 @@ -4079,22 +4081,22 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4028 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "progress": [ - 2479 + 2483 ], "session_token": [ 78 @@ -4114,46 +4116,46 @@ export default { }, "clip_render_jobs_max_order_by": { "clip_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "error_message": [ - 2481 + 2485 ], "game_server_node_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "k8s_job_name": [ - 2481 + 2485 ], "last_status_at": [ - 2481 + 2485 ], "match_map_demo_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "progress": [ - 2481 + 2485 ], "session_token": [ - 2481 + 2485 ], "sort_index": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -4161,10 +4163,10 @@ export default { }, "clip_render_jobs_min_fields": { "clip_id": [ - 4462 + 4466 ], "created_at": [ - 4024 + 4028 ], "error_message": [ 78 @@ -4173,22 +4175,22 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4028 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "progress": [ - 2479 + 2483 ], "session_token": [ 78 @@ -4208,46 +4210,46 @@ export default { }, "clip_render_jobs_min_order_by": { "clip_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "error_message": [ - 2481 + 2485 ], "game_server_node_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "k8s_job_name": [ - 2481 + 2485 ], "last_status_at": [ - 2481 + 2485 ], "match_map_demo_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "progress": [ - 2481 + 2485 ], "session_token": [ - 2481 + 2485 ], "sort_index": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -4283,67 +4285,67 @@ export default { 1863 ], "clip_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "error_message": [ - 2481 + 2485 ], "game_server_node": [ 1255 ], "game_server_node_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "k8s_job_name": [ - 2481 + 2485 ], "last_status_at": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_demo": [ 2044 ], "match_map_demo_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "paused": [ - 2481 + 2485 ], "progress": [ - 2481 + 2485 ], "session_token": [ - 2481 + 2485 ], "sort_index": [ - 2481 + 2485 ], "spec": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "status_history": [ - 2481 + 2485 ], "user": [ - 3452 + 3456 ], "user_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -4351,7 +4353,7 @@ export default { }, "clip_render_jobs_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -4373,10 +4375,10 @@ export default { "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns": {}, "clip_render_jobs_set_input": { "clip_id": [ - 4462 + 4466 ], "created_at": [ - 4024 + 4028 ], "error_message": [ 78 @@ -4385,25 +4387,25 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4028 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "paused": [ 3 ], "progress": [ - 2479 + 2483 ], "session_token": [ 78 @@ -4443,13 +4445,13 @@ export default { }, "clip_render_jobs_stddev_order_by": { "progress": [ - 2481 + 2485 ], "sort_index": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -4471,13 +4473,13 @@ export default { }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 2481 + 2485 ], "sort_index": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -4499,13 +4501,13 @@ export default { }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 2481 + 2485 ], "sort_index": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -4524,10 +4526,10 @@ export default { }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 4462 + 4466 ], "created_at": [ - 4024 + 4028 ], "error_message": [ 78 @@ -4536,25 +4538,25 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4028 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "paused": [ 3 ], "progress": [ - 2479 + 2483 ], "session_token": [ 78 @@ -4580,7 +4582,7 @@ export default { }, "clip_render_jobs_sum_fields": { "progress": [ - 2479 + 2483 ], "sort_index": [ 38 @@ -4594,13 +4596,13 @@ export default { }, "clip_render_jobs_sum_order_by": { "progress": [ - 2481 + 2485 ], "sort_index": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -4652,13 +4654,13 @@ export default { }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 2481 + 2485 ], "sort_index": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -4680,13 +4682,13 @@ export default { }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 2481 + 2485 ], "sort_index": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -4708,13 +4710,13 @@ export default { }, "clip_render_jobs_variance_order_by": { "progress": [ - 2481 + 2485 ], "sort_index": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -4722,7 +4724,7 @@ export default { }, "clone_league_season_args": { "_league_season_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -4731,10 +4733,10 @@ export default { "cursor_ordering": {}, "db_backups": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -4823,10 +4825,10 @@ export default { 241 ], "created_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "name": [ 80 @@ -4849,10 +4851,10 @@ export default { }, "db_backups_insert_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -4866,10 +4868,10 @@ export default { }, "db_backups_max_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -4883,10 +4885,10 @@ export default { }, "db_backups_min_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -4925,16 +4927,16 @@ export default { }, "db_backups_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "__typename": [ 78 @@ -4942,7 +4944,7 @@ export default { }, "db_backups_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -4951,10 +4953,10 @@ export default { "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -5003,10 +5005,10 @@ export default { }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -5070,22 +5072,22 @@ export default { 3 ], "captain": [ - 3439 + 3443 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4028 ], "draft_game": [ 354 ], "draft_game_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "is_organizer": [ 3 @@ -5094,7 +5096,7 @@ export default { 38 ], "picked": [ - 3439 + 3443 ], "picked_steam_id": [ 180 @@ -5231,7 +5233,7 @@ export default { 274 ], "count": [ - 2481 + 2485 ], "max": [ 280 @@ -5291,13 +5293,13 @@ export default { }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "picked_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -5317,22 +5319,22 @@ export default { 4 ], "captain": [ - 3443 + 3447 ], "captain_steam_id": [ 182 ], "created_at": [ - 4025 + 4029 ], "draft_game": [ 365 ], "draft_game_id": [ - 4464 + 4468 ], "id": [ - 4464 + 4468 ], "is_organizer": [ 4 @@ -5341,7 +5343,7 @@ export default { 39 ], "picked": [ - 3443 + 3447 ], "picked_steam_id": [ 182 @@ -5370,28 +5372,28 @@ export default { 3 ], "captain": [ - 3450 + 3454 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4028 ], "draft_game": [ 374 ], "draft_game_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "lineup": [ 38 ], "picked": [ - 3450 + 3454 ], "picked_steam_id": [ 180 @@ -5405,13 +5407,13 @@ export default { 180 ], "created_at": [ - 4024 + 4028 ], "draft_game_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "lineup": [ 38 @@ -5425,22 +5427,22 @@ export default { }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "draft_game_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "picked_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -5451,13 +5453,13 @@ export default { 180 ], "created_at": [ - 4024 + 4028 ], "draft_game_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "lineup": [ 38 @@ -5471,22 +5473,22 @@ export default { }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "draft_game_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "picked_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -5519,37 +5521,37 @@ export default { }, "draft_game_picks_order_by": { "auto_picked": [ - 2481 + 2485 ], "captain": [ - 3452 + 3456 ], "captain_steam_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "draft_game": [ 376 ], "draft_game_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "is_organizer": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "picked": [ - 3452 + 3456 ], "picked_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -5557,7 +5559,7 @@ export default { }, "draft_game_picks_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -5574,13 +5576,13 @@ export default { 180 ], "created_at": [ - 4024 + 4028 ], "draft_game_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "lineup": [ 38 @@ -5608,13 +5610,13 @@ export default { }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "picked_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -5636,13 +5638,13 @@ export default { }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "picked_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -5664,13 +5666,13 @@ export default { }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "picked_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -5695,13 +5697,13 @@ export default { 180 ], "created_at": [ - 4024 + 4028 ], "draft_game_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "lineup": [ 38 @@ -5729,13 +5731,13 @@ export default { }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "picked_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -5772,13 +5774,13 @@ export default { }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "picked_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -5800,13 +5802,13 @@ export default { }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "picked_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -5828,13 +5830,13 @@ export default { }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "picked_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -5845,7 +5847,7 @@ export default { 354 ], "draft_game_id": [ - 4462 + 4466 ], "e_draft_game_player_status": [ 483 @@ -5860,7 +5862,7 @@ export default { 3 ], "joined_at": [ - 4024 + 4028 ], "lineup": [ 38 @@ -5869,7 +5871,7 @@ export default { 38 ], "player": [ - 3439 + 3443 ], "status": [ 488 @@ -6009,7 +6011,7 @@ export default { 319 ], "count": [ - 2481 + 2485 ], "max": [ 325 @@ -6072,16 +6074,16 @@ export default { }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "pick_order": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -6101,7 +6103,7 @@ export default { 365 ], "draft_game_id": [ - 4464 + 4468 ], "e_draft_game_player_status": [ 486 @@ -6116,7 +6118,7 @@ export default { 4 ], "joined_at": [ - 4025 + 4029 ], "lineup": [ 39 @@ -6125,7 +6127,7 @@ export default { 39 ], "player": [ - 3443 + 3447 ], "status": [ 489 @@ -6160,7 +6162,7 @@ export default { 374 ], "draft_game_id": [ - 4462 + 4466 ], "e_draft_game_player_status": [ 494 @@ -6172,7 +6174,7 @@ export default { 3 ], "joined_at": [ - 4024 + 4028 ], "lineup": [ 38 @@ -6181,7 +6183,7 @@ export default { 38 ], "player": [ - 3450 + 3454 ], "status": [ 488 @@ -6195,13 +6197,13 @@ export default { }, "draft_game_players_max_fields": { "draft_game_id": [ - 4462 + 4466 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4024 + 4028 ], "lineup": [ 38 @@ -6218,22 +6220,22 @@ export default { }, "draft_game_players_max_order_by": { "draft_game_id": [ - 2481 + 2485 ], "elo_snapshot": [ - 2481 + 2485 ], "joined_at": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "pick_order": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -6241,13 +6243,13 @@ export default { }, "draft_game_players_min_fields": { "draft_game_id": [ - 4462 + 4466 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4024 + 4028 ], "lineup": [ 38 @@ -6264,22 +6266,22 @@ export default { }, "draft_game_players_min_order_by": { "draft_game_id": [ - 2481 + 2485 ], "elo_snapshot": [ - 2481 + 2485 ], "joined_at": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "pick_order": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -6315,37 +6317,37 @@ export default { 376 ], "draft_game_id": [ - 2481 + 2485 ], "e_draft_game_player_status": [ 496 ], "elo_snapshot": [ - 2481 + 2485 ], "is_captain": [ - 2481 + 2485 ], "is_organizer": [ - 2481 + 2485 ], "joined_at": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "pick_order": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "status": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -6353,7 +6355,7 @@ export default { }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 4462 + 4466 ], "steam_id": [ 180 @@ -6367,7 +6369,7 @@ export default { "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_game_players_set_input": { "draft_game_id": [ - 4462 + 4466 ], "elo_snapshot": [ 38 @@ -6376,7 +6378,7 @@ export default { 3 ], "joined_at": [ - 4024 + 4028 ], "lineup": [ 38 @@ -6413,16 +6415,16 @@ export default { }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "pick_order": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -6447,16 +6449,16 @@ export default { }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "pick_order": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -6481,16 +6483,16 @@ export default { }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "pick_order": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -6509,7 +6511,7 @@ export default { }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 4462 + 4466 ], "elo_snapshot": [ 38 @@ -6518,7 +6520,7 @@ export default { 3 ], "joined_at": [ - 4024 + 4028 ], "lineup": [ 38 @@ -6555,16 +6557,16 @@ export default { }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "pick_order": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -6604,16 +6606,16 @@ export default { }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "pick_order": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -6638,16 +6640,16 @@ export default { }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "pick_order": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -6672,16 +6674,16 @@ export default { }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 2481 + 2485 ], "lineup": [ - 2481 + 2485 ], "pick_order": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -6698,7 +6700,7 @@ export default { 425 ], "created_at": [ - 4024 + 4028 ], "current_pick_lineup": [ 38 @@ -6722,22 +6724,22 @@ export default { 671 ], "expires_at": [ - 4024 + 4028 ], "host": [ - 3439 + 3443 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4466 ], "inner_squad": [ 3 ], "invite_code": [ - 4462 + 4466 ], "is_organizer": [ 3 @@ -6746,16 +6748,16 @@ export default { 1795 ], "map_pool_id": [ - 4462 + 4466 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "max_elo": [ 38 @@ -6767,7 +6769,7 @@ export default { 467 ], "options": [ - 2176 + 2180 ], "pattern": [ 1352, @@ -6778,7 +6780,7 @@ export default { } ], "pick_deadline": [ - 4024 + 4028 ], "picks": [ 264, @@ -6874,29 +6876,26 @@ export default { "require_approval": [ 3 ], - "scheduled_at": [ - 4024 - ], "status": [ 509 ], "team_1": [ - 3981 + 3985 ], "team_1_id": [ - 4462 + 4466 ], "team_2": [ - 3981 + 3985 ], "team_2_id": [ - 4462 + 4466 ], "type": [ 820 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -7030,7 +7029,7 @@ export default { 364 ], "count": [ - 2481 + 2485 ], "max": [ 370 @@ -7096,19 +7095,19 @@ export default { }, "draft_games_avg_order_by": { "capacity": [ - 2481 + 2485 ], "current_pick_lineup": [ - 2481 + 2485 ], "host_steam_id": [ - 2481 + 2485 ], "max_elo": [ - 2481 + 2485 ], "min_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -7134,7 +7133,7 @@ export default { 426 ], "created_at": [ - 4025 + 4029 ], "current_pick_lineup": [ 39 @@ -7158,22 +7157,22 @@ export default { 674 ], "expires_at": [ - 4025 + 4029 ], "host": [ - 3443 + 3447 ], "host_steam_id": [ 182 ], "id": [ - 4464 + 4468 ], "inner_squad": [ 4 ], "invite_code": [ - 4464 + 4468 ], "is_organizer": [ 4 @@ -7182,16 +7181,16 @@ export default { 1798 ], "map_pool_id": [ - 4464 + 4468 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_options_id": [ - 4464 + 4468 ], "max_elo": [ 39 @@ -7203,13 +7202,13 @@ export default { 468 ], "options": [ - 2180 + 2184 ], "pattern": [ 1354 ], "pick_deadline": [ - 4025 + 4029 ], "picks": [ 275 @@ -7229,29 +7228,26 @@ export default { "require_approval": [ 4 ], - "scheduled_at": [ - 4025 - ], "status": [ 510 ], "team_1": [ - 3990 + 3994 ], "team_1_id": [ - 4464 + 4468 ], "team_2": [ - 3990 + 3994 ], "team_2_id": [ - 4464 + 4468 ], "type": [ 821 ], "updated_at": [ - 4025 + 4029 ], "__typename": [ 78 @@ -7289,7 +7285,7 @@ export default { 425 ], "created_at": [ - 4024 + 4028 ], "current_pick_lineup": [ 38 @@ -7313,37 +7309,37 @@ export default { 682 ], "expires_at": [ - 4024 + 4028 ], "host": [ - 3450 + 3454 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4466 ], "inner_squad": [ 3 ], "invite_code": [ - 4462 + 4466 ], "map_pool": [ 1804 ], "map_pool_id": [ - 4462 + 4466 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "max_elo": [ 38 @@ -7355,10 +7351,10 @@ export default { 467 ], "options": [ - 2187 + 2191 ], "pick_deadline": [ - 4024 + 4028 ], "picks": [ 272 @@ -7372,29 +7368,26 @@ export default { "require_approval": [ 3 ], - "scheduled_at": [ - 4024 - ], "status": [ 509 ], "team_1": [ - 3999 + 4003 ], "team_1_id": [ - 4462 + 4466 ], "team_2": [ - 3999 + 4003 ], "team_2_id": [ - 4462 + 4466 ], "type": [ 820 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -7405,31 +7398,31 @@ export default { 38 ], "created_at": [ - 4024 + 4028 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4024 + 4028 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4466 ], "invite_code": [ - 4462 + 4466 ], "map_pool_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "max_elo": [ 38 @@ -7438,22 +7431,19 @@ export default { 38 ], "pick_deadline": [ - 4024 + 4028 ], "regions": [ 78 ], - "scheduled_at": [ - 4024 - ], "team_1_id": [ - 4462 + 4466 ], "team_2_id": [ - 4462 + 4466 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -7461,58 +7451,55 @@ export default { }, "draft_games_max_order_by": { "capacity": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "current_pick_lineup": [ - 2481 + 2485 ], "expires_at": [ - 2481 + 2485 ], "host_steam_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "invite_code": [ - 2481 + 2485 ], "map_pool_id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "max_elo": [ - 2481 + 2485 ], "min_elo": [ - 2481 + 2485 ], "pick_deadline": [ - 2481 + 2485 ], "regions": [ - 2481 - ], - "scheduled_at": [ - 2481 + 2485 ], "team_1_id": [ - 2481 + 2485 ], "team_2_id": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "__typename": [ 78 @@ -7523,31 +7510,31 @@ export default { 38 ], "created_at": [ - 4024 + 4028 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4024 + 4028 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4466 ], "invite_code": [ - 4462 + 4466 ], "map_pool_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "max_elo": [ 38 @@ -7556,22 +7543,19 @@ export default { 38 ], "pick_deadline": [ - 4024 + 4028 ], "regions": [ 78 ], - "scheduled_at": [ - 4024 - ], "team_1_id": [ - 4462 + 4466 ], "team_2_id": [ - 4462 + 4466 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -7579,58 +7563,55 @@ export default { }, "draft_games_min_order_by": { "capacity": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "current_pick_lineup": [ - 2481 + 2485 ], "expires_at": [ - 2481 + 2485 ], "host_steam_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "invite_code": [ - 2481 + 2485 ], "map_pool_id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "max_elo": [ - 2481 + 2485 ], "min_elo": [ - 2481 + 2485 ], "pick_deadline": [ - 2481 + 2485 ], "regions": [ - 2481 - ], - "scheduled_at": [ - 2481 + 2485 ], "team_1_id": [ - 2481 + 2485 ], "team_2_id": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "__typename": [ 78 @@ -7674,22 +7655,22 @@ export default { }, "draft_games_order_by": { "access": [ - 2481 + 2485 ], "capacity": [ - 2481 + 2485 ], "captain_selection": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "current_pick_lineup": [ - 2481 + 2485 ], "draft_order": [ - 2481 + 2485 ], "e_draft_game_captain_selection": [ 433 @@ -7707,58 +7688,58 @@ export default { 684 ], "expires_at": [ - 2481 + 2485 ], "host": [ - 3452 + 3456 ], "host_steam_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "inner_squad": [ - 2481 + 2485 ], "invite_code": [ - 2481 + 2485 ], "is_organizer": [ - 2481 + 2485 ], "map_pool": [ 1806 ], "map_pool_id": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "max_elo": [ - 2481 + 2485 ], "min_elo": [ - 2481 + 2485 ], "mode": [ - 2481 + 2485 ], "options": [ - 2189 + 2193 ], "pattern": [ - 2481 + 2485 ], "pick_deadline": [ - 2481 + 2485 ], "picks_aggregate": [ 271 @@ -7767,34 +7748,31 @@ export default { 316 ], "regions": [ - 2481 + 2485 ], "require_approval": [ - 2481 - ], - "scheduled_at": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "team_1": [ - 4001 + 4005 ], "team_1_id": [ - 2481 + 2485 ], "team_2": [ - 4001 + 4005 ], "team_2_id": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "__typename": [ 78 @@ -7802,7 +7780,7 @@ export default { }, "draft_games_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -7822,7 +7800,7 @@ export default { 425 ], "created_at": [ - 4024 + 4028 ], "current_pick_lineup": [ 38 @@ -7831,28 +7809,28 @@ export default { 446 ], "expires_at": [ - 4024 + 4028 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4466 ], "inner_squad": [ 3 ], "invite_code": [ - 4462 + 4466 ], "map_pool_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "max_elo": [ 38 @@ -7864,7 +7842,7 @@ export default { 467 ], "pick_deadline": [ - 4024 + 4028 ], "regions": [ 78 @@ -7872,23 +7850,20 @@ export default { "require_approval": [ 3 ], - "scheduled_at": [ - 4024 - ], "status": [ 509 ], "team_1_id": [ - 4462 + 4466 ], "team_2_id": [ - 4462 + 4466 ], "type": [ 820 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -7916,19 +7891,19 @@ export default { }, "draft_games_stddev_order_by": { "capacity": [ - 2481 + 2485 ], "current_pick_lineup": [ - 2481 + 2485 ], "host_steam_id": [ - 2481 + 2485 ], "max_elo": [ - 2481 + 2485 ], "min_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -7956,19 +7931,19 @@ export default { }, "draft_games_stddev_pop_order_by": { "capacity": [ - 2481 + 2485 ], "current_pick_lineup": [ - 2481 + 2485 ], "host_steam_id": [ - 2481 + 2485 ], "max_elo": [ - 2481 + 2485 ], "min_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -7996,19 +7971,19 @@ export default { }, "draft_games_stddev_samp_order_by": { "capacity": [ - 2481 + 2485 ], "current_pick_lineup": [ - 2481 + 2485 ], "host_steam_id": [ - 2481 + 2485 ], "max_elo": [ - 2481 + 2485 ], "min_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -8036,7 +8011,7 @@ export default { 425 ], "created_at": [ - 4024 + 4028 ], "current_pick_lineup": [ 38 @@ -8045,28 +8020,28 @@ export default { 446 ], "expires_at": [ - 4024 + 4028 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4466 ], "inner_squad": [ 3 ], "invite_code": [ - 4462 + 4466 ], "map_pool_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "max_elo": [ 38 @@ -8078,7 +8053,7 @@ export default { 467 ], "pick_deadline": [ - 4024 + 4028 ], "regions": [ 78 @@ -8086,23 +8061,20 @@ export default { "require_approval": [ 3 ], - "scheduled_at": [ - 4024 - ], "status": [ 509 ], "team_1_id": [ - 4462 + 4466 ], "team_2_id": [ - 4462 + 4466 ], "type": [ 820 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -8130,19 +8102,19 @@ export default { }, "draft_games_sum_order_by": { "capacity": [ - 2481 + 2485 ], "current_pick_lineup": [ - 2481 + 2485 ], "host_steam_id": [ - 2481 + 2485 ], "max_elo": [ - 2481 + 2485 ], "min_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -8185,19 +8157,19 @@ export default { }, "draft_games_var_pop_order_by": { "capacity": [ - 2481 + 2485 ], "current_pick_lineup": [ - 2481 + 2485 ], "host_steam_id": [ - 2481 + 2485 ], "max_elo": [ - 2481 + 2485 ], "min_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -8225,19 +8197,19 @@ export default { }, "draft_games_var_samp_order_by": { "capacity": [ - 2481 + 2485 ], "current_pick_lineup": [ - 2481 + 2485 ], "host_steam_id": [ - 2481 + 2485 ], "max_elo": [ - 2481 + 2485 ], "min_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -8265,19 +8237,19 @@ export default { }, "draft_games_variance_order_by": { "capacity": [ - 2481 + 2485 ], "current_pick_lineup": [ - 2481 + 2485 ], "host_steam_id": [ - 2481 + 2485 ], "max_elo": [ - 2481 + 2485 ], "min_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -8430,10 +8402,10 @@ export default { }, "e_check_in_settings_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -8651,10 +8623,10 @@ export default { }, "e_draft_game_captain_selection_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -8872,10 +8844,10 @@ export default { }, "e_draft_game_draft_order_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -9093,10 +9065,10 @@ export default { }, "e_draft_game_mode_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -9314,10 +9286,10 @@ export default { }, "e_draft_game_player_status_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -9535,10 +9507,10 @@ export default { }, "e_draft_game_status_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -9756,10 +9728,10 @@ export default { }, "e_friend_status_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -9966,10 +9938,10 @@ export default { }, "e_game_cfg_types_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -10187,10 +10159,10 @@ export default { }, "e_game_server_node_statuses_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -10408,10 +10380,10 @@ export default { }, "e_league_movement_types_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -10629,10 +10601,10 @@ export default { }, "e_league_proposal_statuses_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -10850,10 +10822,10 @@ export default { }, "e_league_registration_statuses_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -11071,10 +11043,10 @@ export default { }, "e_league_season_statuses_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -11292,10 +11264,10 @@ export default { }, "e_lobby_access_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -11502,10 +11474,10 @@ export default { }, "e_lobby_player_status_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -11723,10 +11695,10 @@ export default { }, "e_map_pool_types_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -11986,13 +11958,13 @@ export default { }, "e_match_clip_visibility_order_by": { "description": [ - 2481 + 2485 ], "match_clips_aggregate": [ 1848 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -12060,7 +12032,7 @@ export default { 2134, { "distinct_on": [ - 2156, + 2158, "[match_maps_select_column!]" ], "limit": [ @@ -12070,11 +12042,11 @@ export default { 38 ], "order_by": [ - 2154, + 2156, "[match_maps_order_by!]" ], "where": [ - 2143 + 2145 ] } ], @@ -12082,7 +12054,7 @@ export default { 2135, { "distinct_on": [ - 2156, + 2158, "[match_maps_select_column!]" ], "limit": [ @@ -12092,11 +12064,11 @@ export default { 38 ], "order_by": [ - 2154, + 2156, "[match_maps_order_by!]" ], "where": [ - 2143 + 2145 ] } ], @@ -12155,7 +12127,7 @@ export default { 80 ], "match_maps": [ - 2143 + 2145 ], "match_maps_aggregate": [ 2136 @@ -12194,7 +12166,7 @@ export default { 78 ], "match_maps": [ - 2140 + 2142 ], "value": [ 78 @@ -12263,13 +12235,13 @@ export default { }, "e_match_map_status_order_by": { "description": [ - 2481 + 2485 ], "match_maps_aggregate": [ - 2139 + 2141 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -12476,10 +12448,10 @@ export default { }, "e_match_mode_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -12544,10 +12516,10 @@ export default { 78 ], "matches": [ - 2296, + 2300, { "distinct_on": [ - 2318, + 2322, "[matches_select_column!]" ], "limit": [ @@ -12557,19 +12529,19 @@ export default { 38 ], "order_by": [ - 2316, + 2320, "[matches_order_by!]" ], "where": [ - 2305 + 2309 ] } ], "matches_aggregate": [ - 2297, + 2301, { "distinct_on": [ - 2318, + 2322, "[matches_select_column!]" ], "limit": [ @@ -12579,11 +12551,11 @@ export default { 38 ], "order_by": [ - 2316, + 2320, "[matches_order_by!]" ], "where": [ - 2305 + 2309 ] } ], @@ -12642,10 +12614,10 @@ export default { 80 ], "matches": [ - 2305 + 2309 ], "matches_aggregate": [ - 2298 + 2302 ], "value": [ 80 @@ -12681,7 +12653,7 @@ export default { 78 ], "matches": [ - 2302 + 2306 ], "value": [ 78 @@ -12750,13 +12722,13 @@ export default { }, "e_match_status_order_by": { "description": [ - 2481 + 2485 ], "matches_aggregate": [ - 2301 + 2305 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -13027,13 +12999,13 @@ export default { }, "e_match_types_order_by": { "description": [ - 2481 + 2485 ], "maps_aggregate": [ 1821 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -13240,10 +13212,10 @@ export default { }, "e_notification_types_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -13308,10 +13280,10 @@ export default { 78 ], "player_objectives": [ - 3037, + 3041, { "distinct_on": [ - 3058, + 3062, "[player_objectives_select_column!]" ], "limit": [ @@ -13321,19 +13293,19 @@ export default { 38 ], "order_by": [ - 3056, + 3060, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3050 ] } ], "player_objectives_aggregate": [ - 3038, + 3042, { "distinct_on": [ - 3058, + 3062, "[player_objectives_select_column!]" ], "limit": [ @@ -13343,11 +13315,11 @@ export default { 38 ], "order_by": [ - 3056, + 3060, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3050 ] } ], @@ -13406,10 +13378,10 @@ export default { 80 ], "player_objectives": [ - 3046 + 3050 ], "player_objectives_aggregate": [ - 3039 + 3043 ], "value": [ 80 @@ -13445,7 +13417,7 @@ export default { 78 ], "player_objectives": [ - 3043 + 3047 ], "value": [ 78 @@ -13503,13 +13475,13 @@ export default { }, "e_objective_types_order_by": { "description": [ - 2481 + 2485 ], "player_objectives_aggregate": [ - 3042 + 3046 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -13716,10 +13688,10 @@ export default { }, "e_player_roles_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -13926,10 +13898,10 @@ export default { }, "e_plugin_runtimes_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -14136,10 +14108,10 @@ export default { }, "e_ready_settings_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -14357,10 +14329,10 @@ export default { }, "e_sanction_types_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -14425,10 +14397,10 @@ export default { 78 ], "scrim_requests": [ - 3880, + 3884, { "distinct_on": [ - 3904, + 3908, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14438,19 +14410,19 @@ export default { 38 ], "order_by": [ - 3902, + 3906, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 3895 ] } ], "scrim_requests_aggregate": [ - 3881, + 3885, { "distinct_on": [ - 3904, + 3908, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14460,11 +14432,11 @@ export default { 38 ], "order_by": [ - 3902, + 3906, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 3895 ] } ], @@ -14523,10 +14495,10 @@ export default { 80 ], "scrim_requests": [ - 3891 + 3895 ], "scrim_requests_aggregate": [ - 3882 + 3886 ], "value": [ 80 @@ -14562,7 +14534,7 @@ export default { 78 ], "scrim_requests": [ - 3888 + 3892 ], "value": [ 78 @@ -14620,13 +14592,13 @@ export default { }, "e_scrim_request_statuses_order_by": { "description": [ - 2481 + 2485 ], "scrim_requests_aggregate": [ - 3887 + 3891 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -14691,10 +14663,10 @@ export default { 78 ], "servers": [ - 3553, + 3557, { "distinct_on": [ - 3577, + 3581, "[servers_select_column!]" ], "limit": [ @@ -14704,19 +14676,19 @@ export default { 38 ], "order_by": [ - 3575, + 3579, "[servers_order_by!]" ], "where": [ - 3564 + 3568 ] } ], "servers_aggregate": [ - 3554, + 3558, { "distinct_on": [ - 3577, + 3581, "[servers_select_column!]" ], "limit": [ @@ -14726,11 +14698,11 @@ export default { 38 ], "order_by": [ - 3575, + 3579, "[servers_order_by!]" ], "where": [ - 3564 + 3568 ] } ], @@ -14789,10 +14761,10 @@ export default { 80 ], "servers": [ - 3564 + 3568 ], "servers_aggregate": [ - 3555 + 3559 ], "value": [ 80 @@ -14828,7 +14800,7 @@ export default { 78 ], "servers": [ - 3561 + 3565 ], "value": [ 78 @@ -14886,13 +14858,13 @@ export default { }, "e_server_types_order_by": { "description": [ - 2481 + 2485 ], "servers_aggregate": [ - 3560 + 3564 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -14960,7 +14932,7 @@ export default { 2134, { "distinct_on": [ - 2156, + 2158, "[match_maps_select_column!]" ], "limit": [ @@ -14970,11 +14942,11 @@ export default { 38 ], "order_by": [ - 2154, + 2156, "[match_maps_order_by!]" ], "where": [ - 2143 + 2145 ] } ], @@ -14982,7 +14954,7 @@ export default { 2135, { "distinct_on": [ - 2156, + 2158, "[match_maps_select_column!]" ], "limit": [ @@ -14992,11 +14964,11 @@ export default { 38 ], "order_by": [ - 2154, + 2156, "[match_maps_order_by!]" ], "where": [ - 2143 + 2145 ] } ], @@ -15004,7 +14976,7 @@ export default { 2134, { "distinct_on": [ - 2156, + 2158, "[match_maps_select_column!]" ], "limit": [ @@ -15014,11 +14986,11 @@ export default { 38 ], "order_by": [ - 2154, + 2156, "[match_maps_order_by!]" ], "where": [ - 2143 + 2145 ] } ], @@ -15026,7 +14998,7 @@ export default { 2135, { "distinct_on": [ - 2156, + 2158, "[match_maps_select_column!]" ], "limit": [ @@ -15036,11 +15008,11 @@ export default { 38 ], "order_by": [ - 2154, + 2156, "[match_maps_order_by!]" ], "where": [ - 2143 + 2145 ] } ], @@ -15099,13 +15071,13 @@ export default { 80 ], "match_map_lineup_1": [ - 2143 + 2145 ], "match_map_lineup_1_aggregate": [ 2136 ], "match_map_lineup_2": [ - 2143 + 2145 ], "match_map_lineup_2_aggregate": [ 2136 @@ -15144,10 +15116,10 @@ export default { 78 ], "match_map_lineup_1": [ - 2140 + 2142 ], "match_map_lineup_2": [ - 2140 + 2142 ], "value": [ 78 @@ -15205,16 +15177,16 @@ export default { }, "e_sides_order_by": { "description": [ - 2481 + 2485 ], "match_map_lineup_1_aggregate": [ - 2139 + 2141 ], "match_map_lineup_2_aggregate": [ - 2139 + 2141 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -15421,10 +15393,10 @@ export default { }, "e_system_alert_types_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -15489,10 +15461,10 @@ export default { 78 ], "team_rosters": [ - 3739, + 3743, { "distinct_on": [ - 3762, + 3766, "[team_roster_select_column!]" ], "limit": [ @@ -15502,19 +15474,19 @@ export default { 38 ], "order_by": [ - 3760, + 3764, "[team_roster_order_by!]" ], "where": [ - 3750 + 3754 ] } ], "team_rosters_aggregate": [ - 3740, + 3744, { "distinct_on": [ - 3762, + 3766, "[team_roster_select_column!]" ], "limit": [ @@ -15524,19 +15496,19 @@ export default { 38 ], "order_by": [ - 3760, + 3764, "[team_roster_order_by!]" ], "where": [ - 3750 + 3754 ] } ], "tournament_team_rosters": [ - 4246, + 4250, { "distinct_on": [ - 4267, + 4271, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -15546,19 +15518,19 @@ export default { 38 ], "order_by": [ - 4265, + 4269, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4259 ] } ], "tournament_team_rosters_aggregate": [ - 4247, + 4251, { "distinct_on": [ - 4267, + 4271, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -15568,11 +15540,11 @@ export default { 38 ], "order_by": [ - 4265, + 4269, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4259 ] } ], @@ -15631,16 +15603,16 @@ export default { 80 ], "team_rosters": [ - 3750 + 3754 ], "team_rosters_aggregate": [ - 3741 + 3745 ], "tournament_team_rosters": [ - 4255 + 4259 ], "tournament_team_rosters_aggregate": [ - 4248 + 4252 ], "value": [ 80 @@ -15676,10 +15648,10 @@ export default { 78 ], "team_rosters": [ - 3747 + 3751 ], "tournament_team_rosters": [ - 4252 + 4256 ], "value": [ 78 @@ -15748,16 +15720,16 @@ export default { }, "e_team_roles_order_by": { "description": [ - 2481 + 2485 ], "team_rosters_aggregate": [ - 3746 + 3750 ], "tournament_team_rosters_aggregate": [ - 4251 + 4255 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -15964,10 +15936,10 @@ export default { }, "e_team_roster_statuses_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -16174,10 +16146,10 @@ export default { }, "e_timeout_settings_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -16242,10 +16214,10 @@ export default { 78 ], "tournament_stages": [ - 4154, + 4158, { "distinct_on": [ - 4183, + 4187, "[tournament_stages_select_column!]" ], "limit": [ @@ -16255,19 +16227,19 @@ export default { 38 ], "order_by": [ - 4180, + 4184, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4170 ] } ], "tournament_stages_aggregate": [ - 4155, + 4159, { "distinct_on": [ - 4183, + 4187, "[tournament_stages_select_column!]" ], "limit": [ @@ -16277,11 +16249,11 @@ export default { 38 ], "order_by": [ - 4180, + 4184, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4170 ] } ], @@ -16340,10 +16312,10 @@ export default { 80 ], "tournament_stages": [ - 4166 + 4170 ], "tournament_stages_aggregate": [ - 4156 + 4160 ], "value": [ 80 @@ -16379,7 +16351,7 @@ export default { 78 ], "tournament_stages": [ - 4163 + 4167 ], "value": [ 78 @@ -16448,13 +16420,13 @@ export default { }, "e_tournament_stage_types_order_by": { "description": [ - 2481 + 2485 ], "tournament_stages_aggregate": [ - 4161 + 4165 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -16519,10 +16491,10 @@ export default { 78 ], "tournaments": [ - 4416, + 4420, { "distinct_on": [ - 4440, + 4444, "[tournaments_select_column!]" ], "limit": [ @@ -16532,19 +16504,19 @@ export default { 38 ], "order_by": [ - 4438, + 4442, "[tournaments_order_by!]" ], "where": [ - 4427 + 4431 ] } ], "tournaments_aggregate": [ - 4417, + 4421, { "distinct_on": [ - 4440, + 4444, "[tournaments_select_column!]" ], "limit": [ @@ -16554,11 +16526,11 @@ export default { 38 ], "order_by": [ - 4438, + 4442, "[tournaments_order_by!]" ], "where": [ - 4427 + 4431 ] } ], @@ -16617,10 +16589,10 @@ export default { 80 ], "tournaments": [ - 4427 + 4431 ], "tournaments_aggregate": [ - 4418 + 4422 ], "value": [ 80 @@ -16656,7 +16628,7 @@ export default { 78 ], "tournaments": [ - 4424 + 4428 ], "value": [ 78 @@ -16725,13 +16697,13 @@ export default { }, "e_tournament_status_order_by": { "description": [ - 2481 + 2485 ], "tournaments_aggregate": [ - 4423 + 4427 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -16796,10 +16768,10 @@ export default { 78 ], "player_utilities": [ - 3365, + 3369, { "distinct_on": [ - 3386, + 3390, "[player_utility_select_column!]" ], "limit": [ @@ -16809,19 +16781,19 @@ export default { 38 ], "order_by": [ - 3384, + 3388, "[player_utility_order_by!]" ], "where": [ - 3374 + 3378 ] } ], "player_utilities_aggregate": [ - 3366, + 3370, { "distinct_on": [ - 3386, + 3390, "[player_utility_select_column!]" ], "limit": [ @@ -16831,11 +16803,11 @@ export default { 38 ], "order_by": [ - 3384, + 3388, "[player_utility_order_by!]" ], "where": [ - 3374 + 3378 ] } ], @@ -16894,10 +16866,10 @@ export default { 80 ], "player_utilities": [ - 3374 + 3378 ], "player_utilities_aggregate": [ - 3367 + 3371 ], "value": [ 80 @@ -16933,7 +16905,7 @@ export default { 78 ], "player_utilities": [ - 3371 + 3375 ], "value": [ 78 @@ -16991,13 +16963,13 @@ export default { }, "e_utility_types_order_by": { "description": [ - 2481 + 2485 ], "player_utilities_aggregate": [ - 3370 + 3374 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -17257,13 +17229,13 @@ export default { }, "e_veto_pick_types_order_by": { "description": [ - 2481 + 2485 ], "match_veto_picks_aggregate": [ 2115 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -17470,10 +17442,10 @@ export default { }, "e_winning_reasons_order_by": { "description": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -17759,13 +17731,13 @@ export default { 538 ], "other_player_steam_id": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "__typename": [ 78 @@ -17946,14 +17918,6 @@ export default { "cpu_threads_per_core": [ 38 ], - "cs2_launch_options": [ - 1352, - { - "path": [ - 78 - ] - } - ], "cs2_video_settings": [ 1352, { @@ -17975,7 +17939,7 @@ export default { 38 ], "e_region": [ - 3526 + 3530 ], "e_status": [ 566 @@ -18022,7 +17986,7 @@ export default { 1348 ], "offline_at": [ - 4024 + 4028 ], "pin_build_id": [ 38 @@ -18046,10 +18010,10 @@ export default { 78 ], "servers": [ - 3553, + 3557, { "distinct_on": [ - 3577, + 3581, "[servers_select_column!]" ], "limit": [ @@ -18059,19 +18023,19 @@ export default { 38 ], "order_by": [ - 3575, + 3579, "[servers_order_by!]" ], "where": [ - 3564 + 3568 ] } ], "servers_aggregate": [ - 3554, + 3558, { "distinct_on": [ - 3577, + 3581, "[servers_select_column!]" ], "limit": [ @@ -18081,16 +18045,16 @@ export default { 38 ], "order_by": [ - 3575, + 3579, "[servers_order_by!]" ], "where": [ - 3564 + 3568 ] } ], "shader_bake_progress": [ - 2479 + 2483 ], "shader_bake_progress_stage": [ 78 @@ -18262,7 +18226,7 @@ export default { 1240 ], "count": [ - 2481 + 2485 ], "max": [ 1249 @@ -18302,9 +18266,6 @@ export default { "cpu_governor_info": [ 1352 ], - "cs2_launch_options": [ - 1352 - ], "cs2_video_settings": [ 1352 ], @@ -18378,40 +18339,40 @@ export default { }, "game_server_nodes_avg_order_by": { "build_id": [ - 2481 + 2485 ], "cpu_cores_per_socket": [ - 2481 + 2485 ], "cpu_sockets": [ - 2481 + 2485 ], "cpu_threads_per_core": [ - 2481 + 2485 ], "csgo_build_id": [ - 2481 + 2485 ], "demo_network_limiter": [ - 2481 + 2485 ], "disk_available_gb": [ - 2481 + 2485 ], "disk_used_percent": [ - 2481 + 2485 ], "end_port_range": [ - 2481 + 2485 ], "pin_build_id": [ - 2481 + 2485 ], "shader_bake_progress": [ - 2481 + 2485 ], "start_port_range": [ - 2481 + 2485 ], "__typename": [ 78 @@ -18448,9 +18409,6 @@ export default { "cpu_threads_per_core": [ 39 ], - "cs2_launch_options": [ - 1354 - ], "cs2_video_settings": [ 1354 ], @@ -18467,7 +18425,7 @@ export default { 39 ], "e_region": [ - 3530 + 3534 ], "e_status": [ 569 @@ -18509,7 +18467,7 @@ export default { 1349 ], "offline_at": [ - 4025 + 4029 ], "pin_build_id": [ 39 @@ -18533,13 +18491,13 @@ export default { 80 ], "servers": [ - 3564 + 3568 ], "servers_aggregate": [ - 3555 + 3559 ], "shader_bake_progress": [ - 2480 + 2484 ], "shader_bake_progress_stage": [ 80 @@ -18586,9 +18544,6 @@ export default { "cpu_governor_info": [ 78 ], - "cs2_launch_options": [ - 78 - ], "cs2_video_settings": [ 78 ], @@ -18609,9 +18564,6 @@ export default { "cpu_governor_info": [ 38 ], - "cs2_launch_options": [ - 38 - ], "cs2_video_settings": [ 38 ], @@ -18632,9 +18584,6 @@ export default { "cpu_governor_info": [ 78 ], - "cs2_launch_options": [ - 78 - ], "cs2_video_settings": [ 78 ], @@ -18680,7 +18629,7 @@ export default { 38 ], "shader_bake_progress": [ - 2479 + 2483 ], "start_port_range": [ 38 @@ -18708,9 +18657,6 @@ export default { "cpu_threads_per_core": [ 38 ], - "cs2_launch_options": [ - 1352 - ], "cs2_video_settings": [ 1352 ], @@ -18727,7 +18673,7 @@ export default { 38 ], "e_region": [ - 3536 + 3540 ], "e_status": [ 577 @@ -18769,7 +18715,7 @@ export default { 1348 ], "offline_at": [ - 4024 + 4028 ], "pin_build_id": [ 38 @@ -18790,10 +18736,10 @@ export default { 78 ], "servers": [ - 3561 + 3565 ], "shader_bake_progress": [ - 2479 + 2483 ], "shader_bake_progress_stage": [ 78 @@ -18867,7 +18813,7 @@ export default { 78 ], "offline_at": [ - 4024 + 4028 ], "pin_build_id": [ 38 @@ -18882,7 +18828,7 @@ export default { 78 ], "shader_bake_progress": [ - 2479 + 2483 ], "shader_bake_progress_stage": [ 78 @@ -18908,70 +18854,70 @@ export default { }, "game_server_nodes_max_order_by": { "build_id": [ - 2481 + 2485 ], "cpu_cores_per_socket": [ - 2481 + 2485 ], "cpu_sockets": [ - 2481 + 2485 ], "cpu_threads_per_core": [ - 2481 + 2485 ], "csgo_build_id": [ - 2481 + 2485 ], "demo_network_limiter": [ - 2481 + 2485 ], "disk_available_gb": [ - 2481 + 2485 ], "disk_used_percent": [ - 2481 + 2485 ], "end_port_range": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "offline_at": [ - 2481 + 2485 ], "pin_build_id": [ - 2481 + 2485 ], "pin_plugin_runtime": [ - 2481 + 2485 ], "pin_plugin_version": [ - 2481 + 2485 ], "region": [ - 2481 + 2485 ], "shader_bake_progress": [ - 2481 + 2485 ], "shader_bake_progress_stage": [ - 2481 + 2485 ], "shader_bake_status": [ - 2481 + 2485 ], "start_port_range": [ - 2481 + 2485 ], "token": [ - 2481 + 2485 ], "update_status": [ - 2481 + 2485 ], "__typename": [ 78 @@ -19015,7 +18961,7 @@ export default { 78 ], "offline_at": [ - 4024 + 4028 ], "pin_build_id": [ 38 @@ -19030,7 +18976,7 @@ export default { 78 ], "shader_bake_progress": [ - 2479 + 2483 ], "shader_bake_progress_stage": [ 78 @@ -19056,70 +19002,70 @@ export default { }, "game_server_nodes_min_order_by": { "build_id": [ - 2481 + 2485 ], "cpu_cores_per_socket": [ - 2481 + 2485 ], "cpu_sockets": [ - 2481 + 2485 ], "cpu_threads_per_core": [ - 2481 + 2485 ], "csgo_build_id": [ - 2481 + 2485 ], "demo_network_limiter": [ - 2481 + 2485 ], "disk_available_gb": [ - 2481 + 2485 ], "disk_used_percent": [ - 2481 + 2485 ], "end_port_range": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "offline_at": [ - 2481 + 2485 ], "pin_build_id": [ - 2481 + 2485 ], "pin_plugin_runtime": [ - 2481 + 2485 ], "pin_plugin_version": [ - 2481 + 2485 ], "region": [ - 2481 + 2485 ], "shader_bake_progress": [ - 2481 + 2485 ], "shader_bake_progress_stage": [ - 2481 + 2485 ], "shader_bake_status": [ - 2481 + 2485 ], "start_port_range": [ - 2481 + 2485 ], "token": [ - 2481 + 2485 ], "update_status": [ - 2481 + 2485 ], "__typename": [ 78 @@ -19163,145 +19109,142 @@ export default { }, "game_server_nodes_order_by": { "available_server_count": [ - 2481 + 2485 ], "build_id": [ - 2481 + 2485 ], "cpu_cores_per_socket": [ - 2481 + 2485 ], "cpu_frequency_info": [ - 2481 + 2485 ], "cpu_governor_info": [ - 2481 + 2485 ], "cpu_sockets": [ - 2481 + 2485 ], "cpu_threads_per_core": [ - 2481 - ], - "cs2_launch_options": [ - 2481 + 2485 ], "cs2_video_settings": [ - 2481 + 2485 ], "csgo_build_id": [ - 2481 + 2485 ], "demo_network_limiter": [ - 2481 + 2485 ], "disk_available_gb": [ - 2481 + 2485 ], "disk_used_percent": [ - 2481 + 2485 ], "e_region": [ - 3538 + 3542 ], "e_status": [ 579 ], "enabled": [ - 2481 + 2485 ], "enabled_for_match_making": [ - 2481 + 2485 ], "end_port_range": [ - 2481 + 2485 ], "gpu": [ - 2481 + 2485 ], "gpu_demos_enabled": [ - 2481 + 2485 ], "gpu_info": [ - 2481 + 2485 ], "gpu_rendering_enabled": [ - 2481 + 2485 ], "gpu_streaming_enabled": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "lan_ip": [ - 2481 + 2485 ], "node_ip": [ - 2481 + 2485 ], "offline_at": [ - 2481 + 2485 ], "pin_build_id": [ - 2481 + 2485 ], "pin_plugin_runtime": [ - 2481 + 2485 ], "pin_plugin_version": [ - 2481 + 2485 ], "pinned_version": [ 1297 ], "plugin_supported": [ - 2481 + 2485 ], "public_ip": [ - 2481 + 2485 ], "region": [ - 2481 + 2485 ], "servers_aggregate": [ - 3560 + 3564 ], "shader_bake_progress": [ - 2481 + 2485 ], "shader_bake_progress_stage": [ - 2481 + 2485 ], "shader_bake_status": [ - 2481 + 2485 ], "shader_bake_status_history": [ - 2481 + 2485 ], "start_port_range": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "supports_cpu_pinning": [ - 2481 + 2485 ], "supports_low_latency": [ - 2481 + 2485 ], "token": [ - 2481 + 2485 ], "total_server_count": [ - 2481 + 2485 ], "update_status": [ - 2481 + 2485 ], "version": [ 1297 @@ -19325,9 +19268,6 @@ export default { "cpu_governor_info": [ 1352 ], - "cs2_launch_options": [ - 1352 - ], "cs2_video_settings": [ 1352 ], @@ -19363,9 +19303,6 @@ export default { "cpu_threads_per_core": [ 38 ], - "cs2_launch_options": [ - 1352 - ], "cs2_video_settings": [ 1352 ], @@ -19418,7 +19355,7 @@ export default { 1348 ], "offline_at": [ - 4024 + 4028 ], "pin_build_id": [ 38 @@ -19436,7 +19373,7 @@ export default { 78 ], "shader_bake_progress": [ - 2479 + 2483 ], "shader_bake_progress_stage": [ 78 @@ -19518,40 +19455,40 @@ export default { }, "game_server_nodes_stddev_order_by": { "build_id": [ - 2481 + 2485 ], "cpu_cores_per_socket": [ - 2481 + 2485 ], "cpu_sockets": [ - 2481 + 2485 ], "cpu_threads_per_core": [ - 2481 + 2485 ], "csgo_build_id": [ - 2481 + 2485 ], "demo_network_limiter": [ - 2481 + 2485 ], "disk_available_gb": [ - 2481 + 2485 ], "disk_used_percent": [ - 2481 + 2485 ], "end_port_range": [ - 2481 + 2485 ], "pin_build_id": [ - 2481 + 2485 ], "shader_bake_progress": [ - 2481 + 2485 ], "start_port_range": [ - 2481 + 2485 ], "__typename": [ 78 @@ -19606,40 +19543,40 @@ export default { }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 2481 + 2485 ], "cpu_cores_per_socket": [ - 2481 + 2485 ], "cpu_sockets": [ - 2481 + 2485 ], "cpu_threads_per_core": [ - 2481 + 2485 ], "csgo_build_id": [ - 2481 + 2485 ], "demo_network_limiter": [ - 2481 + 2485 ], "disk_available_gb": [ - 2481 + 2485 ], "disk_used_percent": [ - 2481 + 2485 ], "end_port_range": [ - 2481 + 2485 ], "pin_build_id": [ - 2481 + 2485 ], "shader_bake_progress": [ - 2481 + 2485 ], "start_port_range": [ - 2481 + 2485 ], "__typename": [ 78 @@ -19694,40 +19631,40 @@ export default { }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 2481 + 2485 ], "cpu_cores_per_socket": [ - 2481 + 2485 ], "cpu_sockets": [ - 2481 + 2485 ], "cpu_threads_per_core": [ - 2481 + 2485 ], "csgo_build_id": [ - 2481 + 2485 ], "demo_network_limiter": [ - 2481 + 2485 ], "disk_available_gb": [ - 2481 + 2485 ], "disk_used_percent": [ - 2481 + 2485 ], "end_port_range": [ - 2481 + 2485 ], "pin_build_id": [ - 2481 + 2485 ], "shader_bake_progress": [ - 2481 + 2485 ], "start_port_range": [ - 2481 + 2485 ], "__typename": [ 78 @@ -19763,9 +19700,6 @@ export default { "cpu_threads_per_core": [ 38 ], - "cs2_launch_options": [ - 1352 - ], "cs2_video_settings": [ 1352 ], @@ -19818,7 +19752,7 @@ export default { 1348 ], "offline_at": [ - 4024 + 4028 ], "pin_build_id": [ 38 @@ -19836,7 +19770,7 @@ export default { 78 ], "shader_bake_progress": [ - 2479 + 2483 ], "shader_bake_progress_stage": [ 78 @@ -19904,7 +19838,7 @@ export default { 38 ], "shader_bake_progress": [ - 2479 + 2483 ], "start_port_range": [ 38 @@ -19918,40 +19852,40 @@ export default { }, "game_server_nodes_sum_order_by": { "build_id": [ - 2481 + 2485 ], "cpu_cores_per_socket": [ - 2481 + 2485 ], "cpu_sockets": [ - 2481 + 2485 ], "cpu_threads_per_core": [ - 2481 + 2485 ], "csgo_build_id": [ - 2481 + 2485 ], "demo_network_limiter": [ - 2481 + 2485 ], "disk_available_gb": [ - 2481 + 2485 ], "disk_used_percent": [ - 2481 + 2485 ], "end_port_range": [ - 2481 + 2485 ], "pin_build_id": [ - 2481 + 2485 ], "shader_bake_progress": [ - 2481 + 2485 ], "start_port_range": [ - 2481 + 2485 ], "__typename": [ 78 @@ -20036,40 +19970,40 @@ export default { }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 2481 + 2485 ], "cpu_cores_per_socket": [ - 2481 + 2485 ], "cpu_sockets": [ - 2481 + 2485 ], "cpu_threads_per_core": [ - 2481 + 2485 ], "csgo_build_id": [ - 2481 + 2485 ], "demo_network_limiter": [ - 2481 + 2485 ], "disk_available_gb": [ - 2481 + 2485 ], "disk_used_percent": [ - 2481 + 2485 ], "end_port_range": [ - 2481 + 2485 ], "pin_build_id": [ - 2481 + 2485 ], "shader_bake_progress": [ - 2481 + 2485 ], "start_port_range": [ - 2481 + 2485 ], "__typename": [ 78 @@ -20124,40 +20058,40 @@ export default { }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 2481 + 2485 ], "cpu_cores_per_socket": [ - 2481 + 2485 ], "cpu_sockets": [ - 2481 + 2485 ], "cpu_threads_per_core": [ - 2481 + 2485 ], "csgo_build_id": [ - 2481 + 2485 ], "demo_network_limiter": [ - 2481 + 2485 ], "disk_available_gb": [ - 2481 + 2485 ], "disk_used_percent": [ - 2481 + 2485 ], "end_port_range": [ - 2481 + 2485 ], "pin_build_id": [ - 2481 + 2485 ], "shader_bake_progress": [ - 2481 + 2485 ], "start_port_range": [ - 2481 + 2485 ], "__typename": [ 78 @@ -20212,40 +20146,40 @@ export default { }, "game_server_nodes_variance_order_by": { "build_id": [ - 2481 + 2485 ], "cpu_cores_per_socket": [ - 2481 + 2485 ], "cpu_sockets": [ - 2481 + 2485 ], "cpu_threads_per_core": [ - 2481 + 2485 ], "csgo_build_id": [ - 2481 + 2485 ], "demo_network_limiter": [ - 2481 + 2485 ], "disk_available_gb": [ - 2481 + 2485 ], "disk_used_percent": [ - 2481 + 2485 ], "end_port_range": [ - 2481 + 2485 ], "pin_build_id": [ - 2481 + 2485 ], "shader_bake_progress": [ - 2481 + 2485 ], "start_port_range": [ - 2481 + 2485 ], "__typename": [ 78 @@ -20273,7 +20207,7 @@ export default { } ], "updated_at": [ - 4024 + 4028 ], "version": [ 78 @@ -20382,7 +20316,7 @@ export default { 1354 ], "updated_at": [ - 4025 + 4029 ], "version": [ 80 @@ -20441,7 +20375,7 @@ export default { 1352 ], "updated_at": [ - 4024 + 4028 ], "version": [ 78 @@ -20458,7 +20392,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "version": [ 78 @@ -20475,7 +20409,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "version": [ 78 @@ -20522,25 +20456,25 @@ export default { }, "game_versions_order_by": { "build_id": [ - 2481 + 2485 ], "current": [ - 2481 + 2485 ], "cvars": [ - 2481 + 2485 ], "description": [ - 2481 + 2485 ], "downloads": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "version": [ - 2481 + 2485 ], "__typename": [ 78 @@ -20580,7 +20514,7 @@ export default { 1352 ], "updated_at": [ - 4024 + 4028 ], "version": [ 78 @@ -20641,7 +20575,7 @@ export default { 1352 ], "updated_at": [ - 4024 + 4028 ], "version": [ 78 @@ -20723,7 +20657,7 @@ export default { 1280 ], "id": [ - 4462 + 4466 ], "results": [ 1352, @@ -20737,7 +20671,7 @@ export default { 78 ], "validated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -20837,7 +20771,7 @@ export default { 1285 ], "id": [ - 4464 + 4468 ], "results": [ 1354 @@ -20846,7 +20780,7 @@ export default { 80 ], "validated_at": [ - 4025 + 4029 ], "__typename": [ 78 @@ -20896,7 +20830,7 @@ export default { 1295 ], "id": [ - 4462 + 4466 ], "results": [ 1352 @@ -20905,7 +20839,7 @@ export default { 78 ], "validated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -20919,13 +20853,13 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "status": [ 78 ], "validated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -20939,13 +20873,13 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "status": [ 78 ], "validated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -20978,25 +20912,25 @@ export default { }, "gamedata_signature_validations_order_by": { "branch": [ - 2481 + 2485 ], "build_id": [ - 2481 + 2485 ], "game_version": [ 1297 ], "id": [ - 2481 + 2485 ], "results": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "validated_at": [ - 2481 + 2485 ], "__typename": [ 78 @@ -21004,7 +20938,7 @@ export default { }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -21027,7 +20961,7 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "results": [ 1352 @@ -21036,7 +20970,7 @@ export default { 78 ], "validated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -21085,7 +21019,7 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "results": [ 1352 @@ -21094,7 +21028,7 @@ export default { 78 ], "validated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -21176,7 +21110,7 @@ export default { 78 ], "_season_id": [ - 4462 + 4466 ], "_window_days": [ 38 @@ -21190,7 +21124,7 @@ export default { 78 ], "_league_season_id": [ - 4462 + 4466 ], "_role": [ 78 @@ -21213,7 +21147,7 @@ export default { 78 ], "_season_id": [ - 4462 + 4466 ], "_window_days": [ 38 @@ -21606,28 +21540,28 @@ export default { }, "leaderboard_entries_order_by": { "matches_played": [ - 2481 + 2485 ], "player_avatar_url": [ - 2481 + 2485 ], "player_country": [ - 2481 + 2485 ], "player_name": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "secondary_value": [ - 2481 + 2485 ], "tertiary_value": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -21838,10 +21772,10 @@ export default { }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 4462 + 4466 ], "_winning_tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -21849,10 +21783,10 @@ export default { }, "league_divisions": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -21902,7 +21836,7 @@ export default { } ], "tier": [ - 3617 + 3621 ], "__typename": [ 78 @@ -21985,10 +21919,10 @@ export default { 1383 ], "created_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "name": [ 80 @@ -22000,7 +21934,7 @@ export default { 1532 ], "tier": [ - 3618 + 3622 ], "__typename": [ 78 @@ -22009,7 +21943,7 @@ export default { "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 3617 + 3621 ], "__typename": [ 78 @@ -22017,10 +21951,10 @@ export default { }, "league_divisions_insert_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -22029,7 +21963,7 @@ export default { 1536 ], "tier": [ - 3617 + 3621 ], "__typename": [ 78 @@ -22037,16 +21971,16 @@ export default { }, "league_divisions_max_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 ], "tier": [ - 3617 + 3621 ], "__typename": [ 78 @@ -22054,16 +21988,16 @@ export default { }, "league_divisions_min_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 ], "tier": [ - 3617 + 3621 ], "__typename": [ 78 @@ -22107,19 +22041,19 @@ export default { }, "league_divisions_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "season_divisions_aggregate": [ 1535 ], "tier": [ - 2481 + 2485 ], "__typename": [ 78 @@ -22127,7 +22061,7 @@ export default { }, "league_divisions_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -22136,16 +22070,16 @@ export default { "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 ], "tier": [ - 3617 + 3621 ], "__typename": [ 78 @@ -22188,16 +22122,16 @@ export default { }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 ], "tier": [ - 3617 + 3621 ], "__typename": [ 78 @@ -22205,7 +22139,7 @@ export default { }, "league_divisions_sum_fields": { "tier": [ - 3617 + 3621 ], "__typename": [ 78 @@ -22252,22 +22186,22 @@ export default { }, "league_match_weeks": { "closes_at": [ - 4024 + 4028 ], "created_at": [ - 4024 + 4028 ], "default_match_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "opens_at": [ - 4024 + 4028 ], "season": [ 1555 @@ -22367,7 +22301,7 @@ export default { 1415 ], "count": [ - 2481 + 2485 ], "max": [ 1421 @@ -22421,7 +22355,7 @@ export default { }, "league_match_weeks_avg_order_by": { "week_number": [ - 2481 + 2485 ], "__typename": [ 78 @@ -22438,22 +22372,22 @@ export default { 1416 ], "closes_at": [ - 4025 + 4029 ], "created_at": [ - 4025 + 4029 ], "default_match_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "league_season_id": [ - 4464 + 4468 ], "opens_at": [ - 4025 + 4029 ], "season": [ 1560 @@ -22476,22 +22410,22 @@ export default { }, "league_match_weeks_insert_input": { "closes_at": [ - 4024 + 4028 ], "created_at": [ - 4024 + 4028 ], "default_match_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "opens_at": [ - 4024 + 4028 ], "season": [ 1570 @@ -22505,22 +22439,22 @@ export default { }, "league_match_weeks_max_fields": { "closes_at": [ - 4024 + 4028 ], "created_at": [ - 4024 + 4028 ], "default_match_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "opens_at": [ - 4024 + 4028 ], "week_number": [ 38 @@ -22531,25 +22465,25 @@ export default { }, "league_match_weeks_max_order_by": { "closes_at": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "default_match_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "opens_at": [ - 2481 + 2485 ], "week_number": [ - 2481 + 2485 ], "__typename": [ 78 @@ -22557,22 +22491,22 @@ export default { }, "league_match_weeks_min_fields": { "closes_at": [ - 4024 + 4028 ], "created_at": [ - 4024 + 4028 ], "default_match_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "opens_at": [ - 4024 + 4028 ], "week_number": [ 38 @@ -22583,25 +22517,25 @@ export default { }, "league_match_weeks_min_order_by": { "closes_at": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "default_match_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "opens_at": [ - 2481 + 2485 ], "week_number": [ - 2481 + 2485 ], "__typename": [ 78 @@ -22634,28 +22568,28 @@ export default { }, "league_match_weeks_order_by": { "closes_at": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "default_match_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "opens_at": [ - 2481 + 2485 ], "season": [ 1572 ], "week_number": [ - 2481 + 2485 ], "__typename": [ 78 @@ -22663,7 +22597,7 @@ export default { }, "league_match_weeks_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -22672,22 +22606,22 @@ export default { "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4024 + 4028 ], "created_at": [ - 4024 + 4028 ], "default_match_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "opens_at": [ - 4024 + 4028 ], "week_number": [ 38 @@ -22706,7 +22640,7 @@ export default { }, "league_match_weeks_stddev_order_by": { "week_number": [ - 2481 + 2485 ], "__typename": [ 78 @@ -22722,7 +22656,7 @@ export default { }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 2481 + 2485 ], "__typename": [ 78 @@ -22738,7 +22672,7 @@ export default { }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 2481 + 2485 ], "__typename": [ 78 @@ -22757,22 +22691,22 @@ export default { }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4024 + 4028 ], "created_at": [ - 4024 + 4028 ], "default_match_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "opens_at": [ - 4024 + 4028 ], "week_number": [ 38 @@ -22791,7 +22725,7 @@ export default { }, "league_match_weeks_sum_order_by": { "week_number": [ - 2481 + 2485 ], "__typename": [ 78 @@ -22822,7 +22756,7 @@ export default { }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 2481 + 2485 ], "__typename": [ 78 @@ -22838,7 +22772,7 @@ export default { }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 2481 + 2485 ], "__typename": [ 78 @@ -22854,7 +22788,7 @@ export default { }, "league_match_weeks_variance_order_by": { "week_number": [ - 2481 + 2485 ], "__typename": [ 78 @@ -22862,40 +22796,40 @@ export default { }, "league_relegation_playoffs": { "created_at": [ - 4024 + 4028 ], "higher_division": [ 1379 ], "higher_division_id": [ - 4462 + 4466 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "lower_division": [ 1379 ], "lower_division_id": [ - 4462 + 4466 ], "resolved_at": [ - 4024 + 4028 ], "season": [ 1555 ], "tournament": [ - 4416 + 4420 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -22989,7 +22923,7 @@ export default { 1456 ], "count": [ - 2481 + 2485 ], "max": [ 1462 @@ -23043,7 +22977,7 @@ export default { }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 2481 + 2485 ], "__typename": [ 78 @@ -23060,40 +22994,40 @@ export default { 1457 ], "created_at": [ - 4025 + 4029 ], "higher_division": [ 1383 ], "higher_division_id": [ - 4464 + 4468 ], "higher_slots": [ 39 ], "id": [ - 4464 + 4468 ], "league_season_id": [ - 4464 + 4468 ], "lower_division": [ 1383 ], "lower_division_id": [ - 4464 + 4468 ], "resolved_at": [ - 4025 + 4029 ], "season": [ 1560 ], "tournament": [ - 4427 + 4431 ], "tournament_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -23110,40 +23044,40 @@ export default { }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4024 + 4028 ], "higher_division": [ 1390 ], "higher_division_id": [ - 4462 + 4466 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "lower_division": [ 1390 ], "lower_division_id": [ - 4462 + 4466 ], "resolved_at": [ - 4024 + 4028 ], "season": [ 1570 ], "tournament": [ - 4436 + 4440 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -23151,28 +23085,28 @@ export default { }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4024 + 4028 ], "higher_division_id": [ - 4462 + 4466 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "lower_division_id": [ - 4462 + 4466 ], "resolved_at": [ - 4024 + 4028 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -23180,28 +23114,28 @@ export default { }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 2481 + 2485 ], "higher_division_id": [ - 2481 + 2485 ], "higher_slots": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "lower_division_id": [ - 2481 + 2485 ], "resolved_at": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -23209,28 +23143,28 @@ export default { }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4024 + 4028 ], "higher_division_id": [ - 4462 + 4466 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "lower_division_id": [ - 4462 + 4466 ], "resolved_at": [ - 4024 + 4028 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -23238,28 +23172,28 @@ export default { }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 2481 + 2485 ], "higher_division_id": [ - 2481 + 2485 ], "higher_slots": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "lower_division_id": [ - 2481 + 2485 ], "resolved_at": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -23292,40 +23226,40 @@ export default { }, "league_relegation_playoffs_order_by": { "created_at": [ - 2481 + 2485 ], "higher_division": [ 1392 ], "higher_division_id": [ - 2481 + 2485 ], "higher_slots": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "lower_division": [ 1392 ], "lower_division_id": [ - 2481 + 2485 ], "resolved_at": [ - 2481 + 2485 ], "season": [ 1572 ], "tournament": [ - 4438 + 4442 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -23333,7 +23267,7 @@ export default { }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -23342,28 +23276,28 @@ export default { "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4024 + 4028 ], "higher_division_id": [ - 4462 + 4466 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "lower_division_id": [ - 4462 + 4466 ], "resolved_at": [ - 4024 + 4028 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -23379,7 +23313,7 @@ export default { }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 2481 + 2485 ], "__typename": [ 78 @@ -23395,7 +23329,7 @@ export default { }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 2481 + 2485 ], "__typename": [ 78 @@ -23411,7 +23345,7 @@ export default { }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 2481 + 2485 ], "__typename": [ 78 @@ -23430,28 +23364,28 @@ export default { }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "higher_division_id": [ - 4462 + 4466 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "lower_division_id": [ - 4462 + 4466 ], "resolved_at": [ - 4024 + 4028 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -23467,7 +23401,7 @@ export default { }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 2481 + 2485 ], "__typename": [ 78 @@ -23498,7 +23432,7 @@ export default { }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 2481 + 2485 ], "__typename": [ 78 @@ -23514,7 +23448,7 @@ export default { }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 2481 + 2485 ], "__typename": [ 78 @@ -23530,7 +23464,7 @@ export default { }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 2481 + 2485 ], "__typename": [ 78 @@ -23538,34 +23472,34 @@ export default { }, "league_scheduling_proposals": { "bracket": [ - 4026 + 4030 ], "created_at": [ - 4024 + 4028 ], "e_proposal_status": [ 608 ], "id": [ - 4462 + 4466 ], "message": [ 78 ], "proposed_by": [ - 3439 + 3443 ], "proposed_by_league_team_season_id": [ - 4462 + 4466 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4028 ], "responded_by": [ - 3439 + 3443 ], "responded_by_steam_id": [ 180 @@ -23577,7 +23511,7 @@ export default { 1670 ], "tournament_bracket_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -23671,7 +23605,7 @@ export default { 1497 ], "count": [ - 2481 + 2485 ], "max": [ 1503 @@ -23728,10 +23662,10 @@ export default { }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "responded_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -23748,34 +23682,34 @@ export default { 1498 ], "bracket": [ - 4037 + 4041 ], "created_at": [ - 4025 + 4029 ], "e_proposal_status": [ 611 ], "id": [ - 4464 + 4468 ], "message": [ 80 ], "proposed_by": [ - 3443 + 3447 ], "proposed_by_league_team_season_id": [ - 4464 + 4468 ], "proposed_by_steam_id": [ 182 ], "proposed_time": [ - 4025 + 4029 ], "responded_by": [ - 3443 + 3447 ], "responded_by_steam_id": [ 182 @@ -23787,7 +23721,7 @@ export default { 1679 ], "tournament_bracket_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -23807,34 +23741,34 @@ export default { }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4046 + 4050 ], "created_at": [ - 4024 + 4028 ], "e_proposal_status": [ 619 ], "id": [ - 4462 + 4466 ], "message": [ 78 ], "proposed_by": [ - 3450 + 3454 ], "proposed_by_league_team_season_id": [ - 4462 + 4466 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4028 ], "responded_by": [ - 3450 + 3454 ], "responded_by_steam_id": [ 180 @@ -23846,7 +23780,7 @@ export default { 1688 ], "tournament_bracket_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -23854,28 +23788,28 @@ export default { }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4462 + 4466 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4028 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -23883,28 +23817,28 @@ export default { }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "message": [ - 2481 + 2485 ], "proposed_by_league_team_season_id": [ - 2481 + 2485 ], "proposed_by_steam_id": [ - 2481 + 2485 ], "proposed_time": [ - 2481 + 2485 ], "responded_by_steam_id": [ - 2481 + 2485 ], "tournament_bracket_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -23912,28 +23846,28 @@ export default { }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4462 + 4466 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4028 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -23941,28 +23875,28 @@ export default { }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "message": [ - 2481 + 2485 ], "proposed_by_league_team_season_id": [ - 2481 + 2485 ], "proposed_by_steam_id": [ - 2481 + 2485 ], "proposed_time": [ - 2481 + 2485 ], "responded_by_steam_id": [ - 2481 + 2485 ], "tournament_bracket_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -23995,46 +23929,46 @@ export default { }, "league_scheduling_proposals_order_by": { "bracket": [ - 4048 + 4052 ], "created_at": [ - 2481 + 2485 ], "e_proposal_status": [ 621 ], "id": [ - 2481 + 2485 ], "message": [ - 2481 + 2485 ], "proposed_by": [ - 3452 + 3456 ], "proposed_by_league_team_season_id": [ - 2481 + 2485 ], "proposed_by_steam_id": [ - 2481 + 2485 ], "proposed_time": [ - 2481 + 2485 ], "responded_by": [ - 3452 + 3456 ], "responded_by_steam_id": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "team_season": [ 1690 ], "tournament_bracket_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -24042,7 +23976,7 @@ export default { }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -24051,22 +23985,22 @@ export default { "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4462 + 4466 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4028 ], "responded_by_steam_id": [ 180 @@ -24075,7 +24009,7 @@ export default { 613 ], "tournament_bracket_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -24094,10 +24028,10 @@ export default { }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "responded_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -24116,10 +24050,10 @@ export default { }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "responded_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -24138,10 +24072,10 @@ export default { }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "responded_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -24160,22 +24094,22 @@ export default { }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4462 + 4466 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4028 ], "responded_by_steam_id": [ 180 @@ -24184,7 +24118,7 @@ export default { 613 ], "tournament_bracket_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -24203,10 +24137,10 @@ export default { }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "responded_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -24240,10 +24174,10 @@ export default { }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "responded_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -24262,10 +24196,10 @@ export default { }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "responded_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -24284,10 +24218,10 @@ export default { }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "responded_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -24295,28 +24229,28 @@ export default { }, "league_season_divisions": { "created_at": [ - 4024 + 4028 ], "division": [ 1379 ], "id": [ - 4462 + 4466 ], "league_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "season": [ 1555 ], "standings": [ - 4483, + 4487, { "distinct_on": [ - 4499, + 4503, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -24326,19 +24260,19 @@ export default { 38 ], "order_by": [ - 4498, + 4502, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4496 ] } ], "standings_aggregate": [ - 4484, + 4488, { "distinct_on": [ - 4499, + 4503, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -24348,19 +24282,19 @@ export default { 38 ], "order_by": [ - 4498, + 4502, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4496 ] } ], "tournament": [ - 4416 + 4420 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -24427,7 +24361,7 @@ export default { }, "league_season_divisions_aggregate_order_by": { "count": [ - 2481 + 2485 ], "max": [ 1541 @@ -24461,34 +24395,34 @@ export default { 1537 ], "created_at": [ - 4025 + 4029 ], "division": [ 1383 ], "id": [ - 4464 + 4468 ], "league_division_id": [ - 4464 + 4468 ], "league_season_id": [ - 4464 + 4468 ], "season": [ 1560 ], "standings": [ - 4492 + 4496 ], "standings_aggregate": [ - 4485 + 4489 ], "tournament": [ - 4427 + 4431 ], "tournament_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -24497,31 +24431,31 @@ export default { "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4024 + 4028 ], "division": [ 1390 ], "id": [ - 4462 + 4466 ], "league_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "season": [ 1570 ], "standings": [ - 4489 + 4493 ], "tournament": [ - 4436 + 4440 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -24529,19 +24463,19 @@ export default { }, "league_season_divisions_max_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "league_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -24549,19 +24483,19 @@ export default { }, "league_season_divisions_max_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "league_division_id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -24569,19 +24503,19 @@ export default { }, "league_season_divisions_min_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "league_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -24589,19 +24523,19 @@ export default { }, "league_season_divisions_min_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "league_division_id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -24645,31 +24579,31 @@ export default { }, "league_season_divisions_order_by": { "created_at": [ - 2481 + 2485 ], "division": [ 1392 ], "id": [ - 2481 + 2485 ], "league_division_id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "season": [ 1572 ], "standings_aggregate": [ - 4488 + 4492 ], "tournament": [ - 4438 + 4442 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -24677,7 +24611,7 @@ export default { }, "league_season_divisions_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -24686,19 +24620,19 @@ export default { "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "league_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -24717,19 +24651,19 @@ export default { }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "league_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -24755,7 +24689,7 @@ export default { 3 ], "created_at": [ - 4024 + 4028 ], "created_by_steam_id": [ 180 @@ -24776,7 +24710,7 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "is_league_admin": [ 3 @@ -24785,7 +24719,7 @@ export default { 3 ], "match_options_id": [ - 4462 + 4466 ], "match_weeks": [ 1407, @@ -24910,13 +24844,13 @@ export default { 78 ], "options": [ - 2176 + 2180 ], "player_stats": [ - 4516, + 4520, { "distinct_on": [ - 4542, + 4546, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -24926,19 +24860,19 @@ export default { 38 ], "order_by": [ - 4541, + 4545, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4539 ] } ], "player_stats_aggregate": [ - 4517, + 4521, { "distinct_on": [ - 4542, + 4546, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -24948,11 +24882,11 @@ export default { 38 ], "order_by": [ - 4541, + 4545, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4539 ] } ], @@ -24976,15 +24910,9 @@ export default { "playoff_third_place_match": [ 3 ], - "promote_count": [ - 38 - ], "regular_season_stage_type": [ 1103 ], - "relegate_count": [ - 38 - ], "relegation_down_count": [ 38 ], @@ -25036,7 +24964,7 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4028 ], "season_divisions": [ 1530, @@ -25086,16 +25014,16 @@ export default { 38 ], "signup_closes_at": [ - 4024 + 4028 ], "signup_opens_at": [ - 4024 + 4028 ], "standings": [ - 4483, + 4487, { "distinct_on": [ - 4499, + 4503, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -25105,19 +25033,19 @@ export default { 38 ], "order_by": [ - 4498, + 4502, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4496 ] } ], "standings_aggregate": [ - 4484, + 4488, { "distinct_on": [ - 4499, + 4503, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -25127,16 +25055,16 @@ export default { 38 ], "order_by": [ - 4498, + 4502, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4496 ] } ], "starts_at": [ - 4024 + 4028 ], "status": [ 655 @@ -25297,12 +25225,6 @@ export default { "playoff_seats": [ 29 ], - "promote_count": [ - 29 - ], - "relegate_count": [ - 29 - ], "relegation_down_count": [ 29 ], @@ -25333,7 +25255,7 @@ export default { 4 ], "created_at": [ - 4025 + 4029 ], "created_by_steam_id": [ 182 @@ -25354,7 +25276,7 @@ export default { 39 ], "id": [ - 4464 + 4468 ], "is_league_admin": [ 4 @@ -25363,7 +25285,7 @@ export default { 4 ], "match_options_id": [ - 4464 + 4468 ], "match_weeks": [ 1416 @@ -25393,13 +25315,13 @@ export default { 80 ], "options": [ - 2180 + 2184 ], "player_stats": [ - 4535 + 4539 ], "player_stats_aggregate": [ - 4518 + 4522 ], "playoff_best_of": [ 39 @@ -25416,15 +25338,9 @@ export default { "playoff_third_place_match": [ 4 ], - "promote_count": [ - 39 - ], "regular_season_stage_type": [ 1104 ], - "relegate_count": [ - 39 - ], "relegation_down_count": [ 39 ], @@ -25438,7 +25354,7 @@ export default { 39 ], "roster_lock_at": [ - 4025 + 4029 ], "season_divisions": [ 1537 @@ -25450,19 +25366,19 @@ export default { 39 ], "signup_closes_at": [ - 4025 + 4029 ], "signup_opens_at": [ - 4025 + 4029 ], "standings": [ - 4492 + 4496 ], "standings_aggregate": [ - 4485 + 4489 ], "starts_at": [ - 4025 + 4029 ], "status": [ 656 @@ -25545,12 +25461,6 @@ export default { "playoff_seats": [ 38 ], - "promote_count": [ - 38 - ], - "relegate_count": [ - 38 - ], "relegation_down_count": [ 38 ], @@ -25569,7 +25479,7 @@ export default { 3 ], "created_at": [ - 4024 + 4028 ], "created_by_steam_id": [ 180 @@ -25590,10 +25500,10 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "match_weeks": [ 1413 @@ -25614,10 +25524,10 @@ export default { 78 ], "options": [ - 2187 + 2191 ], "player_stats": [ - 4532 + 4536 ], "playoff_best_of": [ 38 @@ -25634,15 +25544,9 @@ export default { "playoff_third_place_match": [ 3 ], - "promote_count": [ - 38 - ], "regular_season_stage_type": [ 1103 ], - "relegate_count": [ - 38 - ], "relegation_down_count": [ 38 ], @@ -25653,7 +25557,7 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4028 ], "season_divisions": [ 1536 @@ -25662,16 +25566,16 @@ export default { 38 ], "signup_closes_at": [ - 4024 + 4028 ], "signup_opens_at": [ - 4024 + 4028 ], "standings": [ - 4489 + 4493 ], "starts_at": [ - 4024 + 4028 ], "status": [ 655 @@ -25688,7 +25592,7 @@ export default { }, "league_seasons_max_fields": { "created_at": [ - 4024 + 4028 ], "created_by_steam_id": [ 180 @@ -25706,10 +25610,10 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "match_weeks_count": [ 38 @@ -25729,12 +25633,6 @@ export default { "playoff_seats": [ 38 ], - "promote_count": [ - 38 - ], - "relegate_count": [ - 38 - ], "relegation_down_count": [ 38 ], @@ -25742,19 +25640,19 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4028 ], "season_number": [ 38 ], "signup_closes_at": [ - 4024 + 4028 ], "signup_opens_at": [ - 4024 + 4028 ], "starts_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -25762,7 +25660,7 @@ export default { }, "league_seasons_min_fields": { "created_at": [ - 4024 + 4028 ], "created_by_steam_id": [ 180 @@ -25780,10 +25678,10 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "match_weeks_count": [ 38 @@ -25803,12 +25701,6 @@ export default { "playoff_seats": [ 38 ], - "promote_count": [ - 38 - ], - "relegate_count": [ - 38 - ], "relegation_down_count": [ 38 ], @@ -25816,19 +25708,19 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4028 ], "season_number": [ 38 ], "signup_closes_at": [ - 4024 + 4028 ], "signup_opens_at": [ - 4024 + 4028 ], "starts_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -25872,55 +25764,55 @@ export default { }, "league_seasons_order_by": { "auto_regular_season_format": [ - 2481 + 2485 ], "can_register": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "created_by_steam_id": [ - 2481 + 2485 ], "default_best_of": [ - 2481 + 2485 ], "direct_promote_count": [ - 2481 + 2485 ], "direct_relegate_count": [ - 2481 + 2485 ], "e_league_season_status": [ 663 ], "games_per_week": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "is_league_admin": [ - 2481 + 2485 ], "is_roster_locked": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "match_weeks_aggregate": [ 1412 ], "match_weeks_count": [ - 2481 + 2485 ], "max_roster_size": [ - 2481 + 2485 ], "min_roster_size": [ - 2481 + 2485 ], "movements_aggregate": [ 1593 @@ -25929,76 +25821,70 @@ export default { 1675 ], "name": [ - 2481 + 2485 ], "options": [ - 2189 + 2193 ], "player_stats_aggregate": [ - 4531 + 4535 ], "playoff_best_of": [ - 2481 + 2485 ], "playoff_round_best_of": [ - 2481 + 2485 ], "playoff_seats": [ - 2481 + 2485 ], "playoff_stage_type": [ - 2481 + 2485 ], "playoff_third_place_match": [ - 2481 - ], - "promote_count": [ - 2481 + 2485 ], "regular_season_stage_type": [ - 2481 - ], - "relegate_count": [ - 2481 + 2485 ], "relegation_down_count": [ - 2481 + 2485 ], "relegation_playoffs_aggregate": [ 1453 ], "relegation_up_count": [ - 2481 + 2485 ], "roster_lock_at": [ - 2481 + 2485 ], "season_divisions_aggregate": [ 1535 ], "season_number": [ - 2481 + 2485 ], "signup_closes_at": [ - 2481 + 2485 ], "signup_opens_at": [ - 2481 + 2485 ], "standings_aggregate": [ - 4488 + 4492 ], "starts_at": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "team_seasons_aggregate": [ 1675 ], "week_best_of": [ - 2481 + 2485 ], "__typename": [ 78 @@ -26006,7 +25892,7 @@ export default { }, "league_seasons_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -26029,7 +25915,7 @@ export default { 3 ], "created_at": [ - 4024 + 4028 ], "created_by_steam_id": [ 180 @@ -26047,10 +25933,10 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "match_weeks_count": [ 38 @@ -26079,15 +25965,9 @@ export default { "playoff_third_place_match": [ 3 ], - "promote_count": [ - 38 - ], "regular_season_stage_type": [ 1103 ], - "relegate_count": [ - 38 - ], "relegation_down_count": [ 38 ], @@ -26095,19 +25975,19 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4028 ], "season_number": [ 38 ], "signup_closes_at": [ - 4024 + 4028 ], "signup_opens_at": [ - 4024 + 4028 ], "starts_at": [ - 4024 + 4028 ], "status": [ 655 @@ -26150,12 +26030,6 @@ export default { "playoff_seats": [ 29 ], - "promote_count": [ - 29 - ], - "relegate_count": [ - 29 - ], "relegation_down_count": [ 29 ], @@ -26200,12 +26074,6 @@ export default { "playoff_seats": [ 29 ], - "promote_count": [ - 29 - ], - "relegate_count": [ - 29 - ], "relegation_down_count": [ 29 ], @@ -26250,12 +26118,6 @@ export default { "playoff_seats": [ 29 ], - "promote_count": [ - 29 - ], - "relegate_count": [ - 29 - ], "relegation_down_count": [ 29 ], @@ -26285,7 +26147,7 @@ export default { 3 ], "created_at": [ - 4024 + 4028 ], "created_by_steam_id": [ 180 @@ -26303,10 +26165,10 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "match_weeks_count": [ 38 @@ -26335,15 +26197,9 @@ export default { "playoff_third_place_match": [ 3 ], - "promote_count": [ - 38 - ], "regular_season_stage_type": [ 1103 ], - "relegate_count": [ - 38 - ], "relegation_down_count": [ 38 ], @@ -26351,19 +26207,19 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4028 ], "season_number": [ 38 ], "signup_closes_at": [ - 4024 + 4028 ], "signup_opens_at": [ - 4024 + 4028 ], "starts_at": [ - 4024 + 4028 ], "status": [ 655 @@ -26406,12 +26262,6 @@ export default { "playoff_seats": [ 38 ], - "promote_count": [ - 38 - ], - "relegate_count": [ - 38 - ], "relegation_down_count": [ 38 ], @@ -26486,12 +26336,6 @@ export default { "playoff_seats": [ 29 ], - "promote_count": [ - 29 - ], - "relegate_count": [ - 29 - ], "relegation_down_count": [ 29 ], @@ -26536,12 +26380,6 @@ export default { "playoff_seats": [ 29 ], - "promote_count": [ - 29 - ], - "relegate_count": [ - 29 - ], "relegation_down_count": [ 29 ], @@ -26586,12 +26424,6 @@ export default { "playoff_seats": [ 29 ], - "promote_count": [ - 29 - ], - "relegate_count": [ - 29 - ], "relegation_down_count": [ 29 ], @@ -26607,10 +26439,10 @@ export default { }, "league_team_movements": { "approved_at": [ - 4024 + 4028 ], "approved_by": [ - 3439 + 3443 ], "approved_by_steam_id": [ 180 @@ -26619,10 +26451,10 @@ export default { 1379 ], "computed_to_division_id": [ - 4462 + 4466 ], "created_at": [ - 4024 + 4028 ], "e_movement_type": [ 587 @@ -26634,25 +26466,25 @@ export default { 1379 ], "final_to_division_id": [ - 4462 + 4466 ], "from_division": [ 1379 ], "from_division_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team": [ 1712 ], "league_team_id": [ - 4462 + 4466 ], "season": [ 1555 @@ -26752,7 +26584,7 @@ export default { 1596 ], "count": [ - 2481 + 2485 ], "max": [ 1602 @@ -26809,10 +26641,10 @@ export default { }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 2481 + 2485 ], "final_rank": [ - 2481 + 2485 ], "__typename": [ 78 @@ -26829,10 +26661,10 @@ export default { 1597 ], "approved_at": [ - 4025 + 4029 ], "approved_by": [ - 3443 + 3447 ], "approved_by_steam_id": [ 182 @@ -26841,10 +26673,10 @@ export default { 1383 ], "computed_to_division_id": [ - 4464 + 4468 ], "created_at": [ - 4025 + 4029 ], "e_movement_type": [ 590 @@ -26856,25 +26688,25 @@ export default { 1383 ], "final_to_division_id": [ - 4464 + 4468 ], "from_division": [ 1383 ], "from_division_id": [ - 4464 + 4468 ], "id": [ - 4464 + 4468 ], "league_season_id": [ - 4464 + 4468 ], "league_team": [ 1715 ], "league_team_id": [ - 4464 + 4468 ], "season": [ 1560 @@ -26900,10 +26732,10 @@ export default { }, "league_team_movements_insert_input": { "approved_at": [ - 4024 + 4028 ], "approved_by": [ - 3450 + 3454 ], "approved_by_steam_id": [ 180 @@ -26912,10 +26744,10 @@ export default { 1390 ], "computed_to_division_id": [ - 4462 + 4466 ], "created_at": [ - 4024 + 4028 ], "e_movement_type": [ 598 @@ -26927,25 +26759,25 @@ export default { 1390 ], "final_to_division_id": [ - 4462 + 4466 ], "from_division": [ 1390 ], "from_division_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team": [ 1721 ], "league_team_id": [ - 4462 + 4466 ], "season": [ 1570 @@ -26959,34 +26791,34 @@ export default { }, "league_team_movements_max_fields": { "approved_at": [ - 4024 + 4028 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4462 + 4466 ], "created_at": [ - 4024 + 4028 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4462 + 4466 ], "from_division_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -26994,34 +26826,34 @@ export default { }, "league_team_movements_max_order_by": { "approved_at": [ - 2481 + 2485 ], "approved_by_steam_id": [ - 2481 + 2485 ], "computed_to_division_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "final_rank": [ - 2481 + 2485 ], "final_to_division_id": [ - 2481 + 2485 ], "from_division_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "league_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27029,34 +26861,34 @@ export default { }, "league_team_movements_min_fields": { "approved_at": [ - 4024 + 4028 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4462 + 4466 ], "created_at": [ - 4024 + 4028 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4462 + 4466 ], "from_division_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -27064,34 +26896,34 @@ export default { }, "league_team_movements_min_order_by": { "approved_at": [ - 2481 + 2485 ], "approved_by_steam_id": [ - 2481 + 2485 ], "computed_to_division_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "final_rank": [ - 2481 + 2485 ], "final_to_division_id": [ - 2481 + 2485 ], "from_division_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "league_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27124,58 +26956,58 @@ export default { }, "league_team_movements_order_by": { "approved_at": [ - 2481 + 2485 ], "approved_by": [ - 3452 + 3456 ], "approved_by_steam_id": [ - 2481 + 2485 ], "computed_to_division": [ 1392 ], "computed_to_division_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "e_movement_type": [ 600 ], "final_rank": [ - 2481 + 2485 ], "final_to_division": [ 1392 ], "final_to_division_id": [ - 2481 + 2485 ], "from_division": [ 1392 ], "from_division_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "league_team": [ 1723 ], "league_team_id": [ - 2481 + 2485 ], "season": [ 1572 ], "type": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27183,7 +27015,7 @@ export default { }, "league_team_movements_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -27192,34 +27024,34 @@ export default { "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4024 + 4028 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4462 + 4466 ], "created_at": [ - 4024 + 4028 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4462 + 4466 ], "from_division_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team_id": [ - 4462 + 4466 ], "type": [ 592 @@ -27241,10 +27073,10 @@ export default { }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 2481 + 2485 ], "final_rank": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27263,10 +27095,10 @@ export default { }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 2481 + 2485 ], "final_rank": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27285,10 +27117,10 @@ export default { }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 2481 + 2485 ], "final_rank": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27307,34 +27139,34 @@ export default { }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4024 + 4028 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4462 + 4466 ], "created_at": [ - 4024 + 4028 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4462 + 4466 ], "from_division_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team_id": [ - 4462 + 4466 ], "type": [ 592 @@ -27356,10 +27188,10 @@ export default { }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 2481 + 2485 ], "final_rank": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27393,10 +27225,10 @@ export default { }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 2481 + 2485 ], "final_rank": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27415,10 +27247,10 @@ export default { }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 2481 + 2485 ], "final_rank": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27437,10 +27269,10 @@ export default { }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 2481 + 2485 ], "final_rank": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27448,19 +27280,19 @@ export default { }, "league_team_rosters": { "added_at": [ - 4024 + 4028 ], "league_team_season_id": [ - 4462 + 4466 ], "player": [ - 3439 + 3443 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4028 ], "removed_reason": [ 78 @@ -27563,7 +27395,7 @@ export default { 1637 ], "count": [ - 2481 + 2485 ], "max": [ 1643 @@ -27617,7 +27449,7 @@ export default { }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27634,19 +27466,19 @@ export default { 1638 ], "added_at": [ - 4025 + 4029 ], "league_team_season_id": [ - 4464 + 4468 ], "player": [ - 3443 + 3447 ], "player_steam_id": [ 182 ], "removed_at": [ - 4025 + 4029 ], "removed_reason": [ 80 @@ -27672,19 +27504,19 @@ export default { }, "league_team_rosters_insert_input": { "added_at": [ - 4024 + 4028 ], "league_team_season_id": [ - 4462 + 4466 ], "player": [ - 3450 + 3454 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4028 ], "removed_reason": [ 78 @@ -27701,16 +27533,16 @@ export default { }, "league_team_rosters_max_fields": { "added_at": [ - 4024 + 4028 ], "league_team_season_id": [ - 4462 + 4466 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4028 ], "removed_reason": [ 78 @@ -27721,19 +27553,19 @@ export default { }, "league_team_rosters_max_order_by": { "added_at": [ - 2481 + 2485 ], "league_team_season_id": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "removed_at": [ - 2481 + 2485 ], "removed_reason": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27741,16 +27573,16 @@ export default { }, "league_team_rosters_min_fields": { "added_at": [ - 4024 + 4028 ], "league_team_season_id": [ - 4462 + 4466 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4028 ], "removed_reason": [ 78 @@ -27761,19 +27593,19 @@ export default { }, "league_team_rosters_min_order_by": { "added_at": [ - 2481 + 2485 ], "league_team_season_id": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "removed_at": [ - 2481 + 2485 ], "removed_reason": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27806,25 +27638,25 @@ export default { }, "league_team_rosters_order_by": { "added_at": [ - 2481 + 2485 ], "league_team_season_id": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "player_steam_id": [ - 2481 + 2485 ], "removed_at": [ - 2481 + 2485 ], "removed_reason": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "team_season": [ 1690 @@ -27835,7 +27667,7 @@ export default { }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 4462 + 4466 ], "player_steam_id": [ 180 @@ -27847,16 +27679,16 @@ export default { "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4024 + 4028 ], "league_team_season_id": [ - 4462 + 4466 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4028 ], "removed_reason": [ 78 @@ -27878,7 +27710,7 @@ export default { }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27894,7 +27726,7 @@ export default { }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27910,7 +27742,7 @@ export default { }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27929,16 +27761,16 @@ export default { }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4024 + 4028 ], "league_team_season_id": [ - 4462 + 4466 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4028 ], "removed_reason": [ 78 @@ -27960,7 +27792,7 @@ export default { }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -27991,7 +27823,7 @@ export default { }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -28007,7 +27839,7 @@ export default { }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -28023,7 +27855,7 @@ export default { }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -28034,16 +27866,16 @@ export default { 1379 ], "assigned_division_id": [ - 4462 + 4466 ], "captain": [ - 3439 + 3443 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4028 ], "decline_reason": [ 78 @@ -28052,19 +27884,19 @@ export default { 629 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team": [ 1712 ], "league_team_id": [ - 4462 + 4466 ], "registered_by": [ - 3439 + 3443 ], "registered_by_steam_id": [ 180 @@ -28073,7 +27905,7 @@ export default { 1379 ], "requested_division_id": [ - 4462 + 4466 ], "roster": [ 1629, @@ -28129,10 +27961,10 @@ export default { 634 ], "tournament_team": [ - 4287 + 4291 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -28226,7 +28058,7 @@ export default { 1678 ], "count": [ - 2481 + 2485 ], "max": [ 1684 @@ -28286,13 +28118,13 @@ export default { }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "registered_by_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -28312,16 +28144,16 @@ export default { 1383 ], "assigned_division_id": [ - 4464 + 4468 ], "captain": [ - 3443 + 3447 ], "captain_steam_id": [ 182 ], "created_at": [ - 4025 + 4029 ], "decline_reason": [ 80 @@ -28330,19 +28162,19 @@ export default { 632 ], "id": [ - 4464 + 4468 ], "league_season_id": [ - 4464 + 4468 ], "league_team": [ 1715 ], "league_team_id": [ - 4464 + 4468 ], "registered_by": [ - 3443 + 3447 ], "registered_by_steam_id": [ 182 @@ -28351,7 +28183,7 @@ export default { 1383 ], "requested_division_id": [ - 4464 + 4468 ], "roster": [ 1638 @@ -28369,10 +28201,10 @@ export default { 635 ], "tournament_team": [ - 4296 + 4300 ], "tournament_team_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -28398,16 +28230,16 @@ export default { 1390 ], "assigned_division_id": [ - 4462 + 4466 ], "captain": [ - 3450 + 3454 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4028 ], "decline_reason": [ 78 @@ -28416,19 +28248,19 @@ export default { 640 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team": [ 1721 ], "league_team_id": [ - 4462 + 4466 ], "registered_by": [ - 3450 + 3454 ], "registered_by_steam_id": [ 180 @@ -28437,7 +28269,7 @@ export default { 1390 ], "requested_division_id": [ - 4462 + 4466 ], "roster": [ 1635 @@ -28452,10 +28284,10 @@ export default { 634 ], "tournament_team": [ - 4305 + 4309 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -28463,37 +28295,37 @@ export default { }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 4462 + 4466 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4028 ], "decline_reason": [ 78 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team_id": [ - 4462 + 4466 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4462 + 4466 ], "seed": [ 38 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -28501,37 +28333,37 @@ export default { }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 2481 + 2485 ], "captain_steam_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "decline_reason": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "league_team_id": [ - 2481 + 2485 ], "registered_by_steam_id": [ - 2481 + 2485 ], "requested_division_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -28539,37 +28371,37 @@ export default { }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 4462 + 4466 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4028 ], "decline_reason": [ 78 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team_id": [ - 4462 + 4466 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4462 + 4466 ], "seed": [ 38 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -28577,37 +28409,37 @@ export default { }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 2481 + 2485 ], "captain_steam_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "decline_reason": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "league_team_id": [ - 2481 + 2485 ], "registered_by_steam_id": [ - 2481 + 2485 ], "requested_division_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -28654,46 +28486,46 @@ export default { 1392 ], "assigned_division_id": [ - 2481 + 2485 ], "captain": [ - 3452 + 3456 ], "captain_steam_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "decline_reason": [ - 2481 + 2485 ], "e_registration_status": [ 642 ], "id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "league_team": [ 1723 ], "league_team_id": [ - 2481 + 2485 ], "registered_by": [ - 3452 + 3456 ], "registered_by_steam_id": [ - 2481 + 2485 ], "requested_division": [ 1392 ], "requested_division_id": [ - 2481 + 2485 ], "roster_aggregate": [ 1634 @@ -28702,16 +28534,16 @@ export default { 1572 ], "seed": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "tournament_team": [ - 4307 + 4311 ], "tournament_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -28719,7 +28551,7 @@ export default { }, "league_team_seasons_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -28728,31 +28560,31 @@ export default { "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 4462 + 4466 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4028 ], "decline_reason": [ 78 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team_id": [ - 4462 + 4466 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4462 + 4466 ], "seed": [ 38 @@ -28761,7 +28593,7 @@ export default { 634 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -28783,13 +28615,13 @@ export default { }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "registered_by_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -28811,13 +28643,13 @@ export default { }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "registered_by_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -28839,13 +28671,13 @@ export default { }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "registered_by_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -28864,31 +28696,31 @@ export default { }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 4462 + 4466 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4028 ], "decline_reason": [ 78 ], "id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team_id": [ - 4462 + 4466 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4462 + 4466 ], "seed": [ 38 @@ -28897,7 +28729,7 @@ export default { 634 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -28919,13 +28751,13 @@ export default { }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "registered_by_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -28962,13 +28794,13 @@ export default { }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "registered_by_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -28990,13 +28822,13 @@ export default { }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "registered_by_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -29018,13 +28850,13 @@ export default { }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "registered_by_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -29032,10 +28864,10 @@ export default { }, "league_teams": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "movements": [ 1588, @@ -29082,10 +28914,10 @@ export default { } ], "team": [ - 3981 + 3985 ], "team_id": [ - 4462 + 4466 ], "team_seasons": [ 1670, @@ -29180,10 +29012,10 @@ export default { 1715 ], "created_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "movements": [ 1597 @@ -29192,10 +29024,10 @@ export default { 1590 ], "team": [ - 3990 + 3994 ], "team_id": [ - 4464 + 4468 ], "team_seasons": [ 1679 @@ -29210,19 +29042,19 @@ export default { "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "movements": [ 1594 ], "team": [ - 3999 + 4003 ], "team_id": [ - 4462 + 4466 ], "team_seasons": [ 1676 @@ -29233,13 +29065,13 @@ export default { }, "league_teams_max_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -29247,13 +29079,13 @@ export default { }, "league_teams_min_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -29297,19 +29129,19 @@ export default { }, "league_teams_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "movements_aggregate": [ 1593 ], "team": [ - 4001 + 4005 ], "team_id": [ - 2481 + 2485 ], "team_seasons_aggregate": [ 1675 @@ -29320,7 +29152,7 @@ export default { }, "league_teams_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -29329,13 +29161,13 @@ export default { "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -29354,13 +29186,13 @@ export default { }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -29383,13 +29215,13 @@ export default { 676 ], "created_at": [ - 4024 + 4028 ], "e_lobby_access": [ 671 ], "id": [ - 4462 + 4466 ], "players": [ 1750, @@ -29487,13 +29319,13 @@ export default { 677 ], "created_at": [ - 4025 + 4029 ], "e_lobby_access": [ 674 ], "id": [ - 4464 + 4468 ], "players": [ 1761 @@ -29511,13 +29343,13 @@ export default { 676 ], "created_at": [ - 4024 + 4028 ], "e_lobby_access": [ 682 ], "id": [ - 4462 + 4466 ], "players": [ 1758 @@ -29528,10 +29360,10 @@ export default { }, "lobbies_max_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -29539,10 +29371,10 @@ export default { }, "lobbies_min_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -29586,16 +29418,16 @@ export default { }, "lobbies_order_by": { "access": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "e_lobby_access": [ 684 ], "id": [ - 2481 + 2485 ], "players_aggregate": [ 1757 @@ -29606,7 +29438,7 @@ export default { }, "lobbies_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -29618,10 +29450,10 @@ export default { 676 ], "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -29643,10 +29475,10 @@ export default { 676 ], "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -29675,10 +29507,10 @@ export default { 1731 ], "lobby_id": [ - 4462 + 4466 ], "player": [ - 3439 + 3443 ], "status": [ 697 @@ -29818,7 +29650,7 @@ export default { 1760 ], "count": [ - 2481 + 2485 ], "max": [ 1766 @@ -29875,10 +29707,10 @@ export default { }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -29904,10 +29736,10 @@ export default { 1734 ], "lobby_id": [ - 4464 + 4468 ], "player": [ - 3443 + 3447 ], "status": [ 698 @@ -29942,10 +29774,10 @@ export default { 1740 ], "lobby_id": [ - 4462 + 4466 ], "player": [ - 3450 + 3454 ], "status": [ 697 @@ -29962,7 +29794,7 @@ export default { 180 ], "lobby_id": [ - 4462 + 4466 ], "steam_id": [ 180 @@ -29973,13 +29805,13 @@ export default { }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 2481 + 2485 ], "lobby_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -29990,7 +29822,7 @@ export default { 180 ], "lobby_id": [ - 4462 + 4466 ], "steam_id": [ 180 @@ -30001,13 +29833,13 @@ export default { }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 2481 + 2485 ], "lobby_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -30040,25 +29872,25 @@ export default { }, "lobby_players_order_by": { "captain": [ - 2481 + 2485 ], "invited_by_steam_id": [ - 2481 + 2485 ], "lobby": [ 1742 ], "lobby_id": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "status": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -30066,7 +29898,7 @@ export default { }, "lobby_players_pk_columns_input": { "lobby_id": [ - 4462 + 4466 ], "steam_id": [ 180 @@ -30086,7 +29918,7 @@ export default { 180 ], "lobby_id": [ - 4462 + 4466 ], "status": [ 697 @@ -30111,10 +29943,10 @@ export default { }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -30133,10 +29965,10 @@ export default { }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -30155,10 +29987,10 @@ export default { }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -30183,7 +30015,7 @@ export default { 180 ], "lobby_id": [ - 4462 + 4466 ], "status": [ 697 @@ -30208,10 +30040,10 @@ export default { }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -30245,10 +30077,10 @@ export default { }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -30267,10 +30099,10 @@ export default { }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -30289,10 +30121,10 @@ export default { }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -30306,13 +30138,13 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "maps": [ - 5053, + 5057, { "distinct_on": [ - 5070, + 5074, "[v_pool_maps_select_column!]" ], "limit": [ @@ -30322,19 +30154,19 @@ export default { 38 ], "order_by": [ - 5069, + 5073, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5066 ] } ], "maps_aggregate": [ - 5054, + 5058, { "distinct_on": [ - 5070, + 5074, "[v_pool_maps_select_column!]" ], "limit": [ @@ -30344,11 +30176,11 @@ export default { 38 ], "order_by": [ - 5069, + 5073, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5066 ] } ], @@ -30413,13 +30245,13 @@ export default { 4 ], "id": [ - 4464 + 4468 ], "maps": [ - 5062 + 5066 ], "maps_aggregate": [ - 5055 + 5059 ], "seed": [ 4 @@ -30440,10 +30272,10 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "maps": [ - 5061 + 5065 ], "seed": [ 3 @@ -30457,7 +30289,7 @@ export default { }, "map_pools_max_fields": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -30465,7 +30297,7 @@ export default { }, "map_pools_min_fields": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -30512,19 +30344,19 @@ export default { 725 ], "enabled": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "maps_aggregate": [ - 5060 + 5064 ], "seed": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "__typename": [ 78 @@ -30532,7 +30364,7 @@ export default { }, "map_pools_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -30544,7 +30376,7 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "seed": [ 3 @@ -30572,7 +30404,7 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "seed": [ 3 @@ -30607,7 +30439,7 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "label": [ 78 @@ -30616,7 +30448,7 @@ export default { 2134, { "distinct_on": [ - 2156, + 2158, "[match_maps_select_column!]" ], "limit": [ @@ -30626,11 +30458,11 @@ export default { 38 ], "order_by": [ - 2154, + 2156, "[match_maps_order_by!]" ], "where": [ - 2143 + 2145 ] } ], @@ -30638,7 +30470,7 @@ export default { 2135, { "distinct_on": [ - 2156, + 2158, "[match_maps_select_column!]" ], "limit": [ @@ -30648,11 +30480,11 @@ export default { 38 ], "order_by": [ - 2154, + 2156, "[match_maps_order_by!]" ], "where": [ - 2143 + 2145 ] } ], @@ -30820,7 +30652,7 @@ export default { }, "maps_aggregate_order_by": { "count": [ - 2481 + 2485 ], "max": [ 1827 @@ -30863,13 +30695,13 @@ export default { 4 ], "id": [ - 4464 + 4468 ], "label": [ 80 ], "match_maps": [ - 2143 + 2145 ], "match_maps_aggregate": [ 2136 @@ -30911,13 +30743,13 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "label": [ 78 ], "match_maps": [ - 2140 + 2142 ], "match_veto_picks": [ 2116 @@ -30943,7 +30775,7 @@ export default { }, "maps_max_fields": { "id": [ - 4462 + 4466 ], "label": [ 78 @@ -30966,22 +30798,22 @@ export default { }, "maps_max_order_by": { "id": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "patch": [ - 2481 + 2485 ], "poster": [ - 2481 + 2485 ], "workshop_map_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -30989,7 +30821,7 @@ export default { }, "maps_min_fields": { "id": [ - 4462 + 4466 ], "label": [ 78 @@ -31012,22 +30844,22 @@ export default { }, "maps_min_order_by": { "id": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "patch": [ - 2481 + 2485 ], "poster": [ - 2481 + 2485 ], "workshop_map_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -31071,40 +30903,40 @@ export default { }, "maps_order_by": { "active_pool": [ - 2481 + 2485 ], "e_match_type": [ 828 ], "enabled": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "match_maps_aggregate": [ - 2139 + 2141 ], "match_veto_picks_aggregate": [ 2115 ], "name": [ - 2481 + 2485 ], "patch": [ - 2481 + 2485 ], "poster": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "workshop_map_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -31112,7 +30944,7 @@ export default { }, "maps_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -31129,7 +30961,7 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "label": [ 78 @@ -31172,7 +31004,7 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "label": [ 78 @@ -31210,7 +31042,7 @@ export default { }, "match_clips": { "created_at": [ - 4024 + 4028 ], "download_url": [ 78 @@ -31222,7 +31054,7 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "kills_count": [ 38 @@ -31234,10 +31066,10 @@ export default { 2018 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "render_jobs": [ 185, @@ -31290,7 +31122,7 @@ export default { 180 ], "target": [ - 3439 + 3443 ], "target_steam_id": [ 180 @@ -31305,7 +31137,7 @@ export default { 78 ], "user": [ - 3439 + 3443 ], "user_steam_id": [ 180 @@ -31408,7 +31240,7 @@ export default { 1851 ], "count": [ - 2481 + 2485 ], "max": [ 1857 @@ -31480,25 +31312,25 @@ export default { }, "match_clips_avg_order_by": { "duration_ms": [ - 2481 + 2485 ], "kills_count": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "target_steam_id": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "views_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -31515,7 +31347,7 @@ export default { 1852 ], "created_at": [ - 4025 + 4029 ], "download_url": [ 80 @@ -31527,22 +31359,22 @@ export default { 80 ], "id": [ - 4464 + 4468 ], "kills_count": [ 39 ], "match_map": [ - 2143 + 2145 ], "match_map_demo": [ 2030 ], "match_map_demo_id": [ - 4464 + 4468 ], "match_map_id": [ - 4464 + 4468 ], "render_jobs": [ 197 @@ -31557,7 +31389,7 @@ export default { 182 ], "target": [ - 3443 + 3447 ], "target_steam_id": [ 182 @@ -31572,7 +31404,7 @@ export default { 80 ], "user": [ - 3443 + 3447 ], "user_steam_id": [ 182 @@ -31616,7 +31448,7 @@ export default { }, "match_clips_insert_input": { "created_at": [ - 4024 + 4028 ], "duration_ms": [ 38 @@ -31625,22 +31457,22 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "kills_count": [ 38 ], "match_map": [ - 2152 + 2154 ], "match_map_demo": [ 2042 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "render_jobs": [ 194 @@ -31652,7 +31484,7 @@ export default { 180 ], "target": [ - 3450 + 3454 ], "target_steam_id": [ 180 @@ -31664,7 +31496,7 @@ export default { 78 ], "user": [ - 3450 + 3454 ], "user_steam_id": [ 180 @@ -31681,7 +31513,7 @@ export default { }, "match_clips_max_fields": { "created_at": [ - 4024 + 4028 ], "download_url": [ 78 @@ -31693,16 +31525,16 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 @@ -31734,46 +31566,46 @@ export default { }, "match_clips_max_order_by": { "created_at": [ - 2481 + 2485 ], "duration_ms": [ - 2481 + 2485 ], "file": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "kills_count": [ - 2481 + 2485 ], "match_map_demo_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "target_steam_id": [ - 2481 + 2485 ], "thumbnail_url": [ - 2481 + 2485 ], "title": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "views_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -31781,7 +31613,7 @@ export default { }, "match_clips_min_fields": { "created_at": [ - 4024 + 4028 ], "download_url": [ 78 @@ -31793,16 +31625,16 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 @@ -31834,46 +31666,46 @@ export default { }, "match_clips_min_order_by": { "created_at": [ - 2481 + 2485 ], "duration_ms": [ - 2481 + 2485 ], "file": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "kills_count": [ - 2481 + 2485 ], "match_map_demo_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "target_steam_id": [ - 2481 + 2485 ], "thumbnail_url": [ - 2481 + 2485 ], "title": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "views_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -31917,70 +31749,70 @@ export default { }, "match_clips_order_by": { "created_at": [ - 2481 + 2485 ], "download_url": [ - 2481 + 2485 ], "duration_ms": [ - 2481 + 2485 ], "file": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "kills_count": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_demo": [ 2044 ], "match_map_demo_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "render_jobs_aggregate": [ 192 ], "round": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "target": [ - 3452 + 3456 ], "target_steam_id": [ - 2481 + 2485 ], "thumbnail_download_url": [ - 2481 + 2485 ], "thumbnail_url": [ - 2481 + 2485 ], "title": [ - 2481 + 2485 ], "user": [ - 3452 + 3456 ], "user_steam_id": [ - 2481 + 2485 ], "views_count": [ - 2481 + 2485 ], "visibility": [ - 2481 + 2485 ], "__typename": [ 78 @@ -31988,7 +31820,7 @@ export default { }, "match_clips_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -31997,7 +31829,7 @@ export default { "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4024 + 4028 ], "duration_ms": [ 38 @@ -32006,16 +31838,16 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 @@ -32073,25 +31905,25 @@ export default { }, "match_clips_stddev_order_by": { "duration_ms": [ - 2481 + 2485 ], "kills_count": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "target_steam_id": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "views_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -32125,25 +31957,25 @@ export default { }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 2481 + 2485 ], "kills_count": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "target_steam_id": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "views_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -32177,25 +32009,25 @@ export default { }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 2481 + 2485 ], "kills_count": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "target_steam_id": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "views_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -32214,7 +32046,7 @@ export default { }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "duration_ms": [ 38 @@ -32223,16 +32055,16 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 @@ -32290,25 +32122,25 @@ export default { }, "match_clips_sum_order_by": { "duration_ms": [ - 2481 + 2485 ], "kills_count": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "target_steam_id": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "views_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -32357,25 +32189,25 @@ export default { }, "match_clips_var_pop_order_by": { "duration_ms": [ - 2481 + 2485 ], "kills_count": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "target_steam_id": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "views_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -32409,25 +32241,25 @@ export default { }, "match_clips_var_samp_order_by": { "duration_ms": [ - 2481 + 2485 ], "kills_count": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "target_steam_id": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "views_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -32461,25 +32293,25 @@ export default { }, "match_clips_variance_order_by": { "duration_ms": [ - 2481 + 2485 ], "kills_count": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "target_steam_id": [ - 2481 + 2485 ], "user_steam_id": [ - 2481 + 2485 ], "views_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -32487,7 +32319,7 @@ export default { }, "match_demo_sessions": { "created_at": [ - 4024 + 4028 ], "error_message": [ 78 @@ -32499,22 +32331,22 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4028 ], "last_status_at": [ - 4024 + 4028 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_map": [ 2134 @@ -32523,10 +32355,10 @@ export default { 2018 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "status": [ 78 @@ -32543,7 +32375,7 @@ export default { 78 ], "watcher": [ - 3439 + 3443 ], "watcher_steam_id": [ 180 @@ -32640,7 +32472,7 @@ export default { 1894 ], "count": [ - 2481 + 2485 ], "max": [ 1903 @@ -32702,7 +32534,7 @@ export default { }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -32719,7 +32551,7 @@ export default { 1895 ], "created_at": [ - 4025 + 4029 ], "error_message": [ 80 @@ -32731,34 +32563,34 @@ export default { 80 ], "id": [ - 4464 + 4468 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4025 + 4029 ], "last_status_at": [ - 4025 + 4029 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_demo": [ 2030 ], "match_map_demo_id": [ - 4464 + 4468 ], "match_map_id": [ - 4464 + 4468 ], "status": [ 80 @@ -32770,7 +32602,7 @@ export default { 80 ], "watcher": [ - 3443 + 3447 ], "watcher_steam_id": [ 182 @@ -32814,7 +32646,7 @@ export default { }, "match_demo_sessions_insert_input": { "created_at": [ - 4024 + 4028 ], "error_message": [ 78 @@ -32826,34 +32658,34 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4028 ], "last_status_at": [ - 4024 + 4028 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_map": [ - 2152 + 2154 ], "match_map_demo": [ 2042 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "status": [ 78 @@ -32865,7 +32697,7 @@ export default { 78 ], "watcher": [ - 3450 + 3454 ], "watcher_steam_id": [ 180 @@ -32876,7 +32708,7 @@ export default { }, "match_demo_sessions_max_fields": { "created_at": [ - 4024 + 4028 ], "error_message": [ 78 @@ -32885,25 +32717,25 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4028 ], "last_status_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "status": [ 78 @@ -32920,43 +32752,43 @@ export default { }, "match_demo_sessions_max_order_by": { "created_at": [ - 2481 + 2485 ], "error_message": [ - 2481 + 2485 ], "game_server_node_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "k8s_job_name": [ - 2481 + 2485 ], "last_activity_at": [ - 2481 + 2485 ], "last_status_at": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_demo_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "stream_url": [ - 2481 + 2485 ], "watcher_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -32964,7 +32796,7 @@ export default { }, "match_demo_sessions_min_fields": { "created_at": [ - 4024 + 4028 ], "error_message": [ 78 @@ -32973,25 +32805,25 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4028 ], "last_status_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "status": [ 78 @@ -33008,43 +32840,43 @@ export default { }, "match_demo_sessions_min_order_by": { "created_at": [ - 2481 + 2485 ], "error_message": [ - 2481 + 2485 ], "game_server_node_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "k8s_job_name": [ - 2481 + 2485 ], "last_activity_at": [ - 2481 + 2485 ], "last_status_at": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_demo_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "stream_url": [ - 2481 + 2485 ], "watcher_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33077,61 +32909,61 @@ export default { }, "match_demo_sessions_order_by": { "created_at": [ - 2481 + 2485 ], "error_message": [ - 2481 + 2485 ], "game_server_node": [ 1255 ], "game_server_node_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "k8s_job_name": [ - 2481 + 2485 ], "last_activity_at": [ - 2481 + 2485 ], "last_status_at": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_demo": [ 2044 ], "match_map_demo_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "status_history": [ - 2481 + 2485 ], "stream_url": [ - 2481 + 2485 ], "watcher": [ - 3452 + 3456 ], "watcher_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33139,7 +32971,7 @@ export default { }, "match_demo_sessions_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -33156,7 +32988,7 @@ export default { "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4024 + 4028 ], "error_message": [ 78 @@ -33165,25 +32997,25 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4028 ], "last_status_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "status": [ 78 @@ -33211,7 +33043,7 @@ export default { }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33227,7 +33059,7 @@ export default { }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33243,7 +33075,7 @@ export default { }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33262,7 +33094,7 @@ export default { }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "error_message": [ 78 @@ -33271,25 +33103,25 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4028 ], "last_status_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "status": [ 78 @@ -33317,7 +33149,7 @@ export default { }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33363,7 +33195,7 @@ export default { }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33379,7 +33211,7 @@ export default { }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33395,7 +33227,7 @@ export default { }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33412,19 +33244,19 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "lineup": [ 1976 ], "match_lineup_id": [ - 4462 + 4466 ], "placeholder_name": [ 78 ], "player": [ - 3439 + 3443 ], "steam_id": [ 180 @@ -33561,7 +33393,7 @@ export default { 1941 ], "count": [ - 2481 + 2485 ], "max": [ 1947 @@ -33615,7 +33447,7 @@ export default { }, "match_lineup_players_avg_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33641,19 +33473,19 @@ export default { 80 ], "id": [ - 4464 + 4468 ], "lineup": [ 1985 ], "match_lineup_id": [ - 4464 + 4468 ], "placeholder_name": [ 80 ], "player": [ - 3443 + 3447 ], "steam_id": [ 182 @@ -33682,19 +33514,19 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "lineup": [ 1994 ], "match_lineup_id": [ - 4462 + 4466 ], "placeholder_name": [ 78 ], "player": [ - 3450 + 3454 ], "steam_id": [ 180 @@ -33708,10 +33540,10 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "placeholder_name": [ 78 @@ -33725,19 +33557,19 @@ export default { }, "match_lineup_players_max_order_by": { "discord_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_lineup_id": [ - 2481 + 2485 ], "placeholder_name": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33748,10 +33580,10 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "placeholder_name": [ 78 @@ -33765,19 +33597,19 @@ export default { }, "match_lineup_players_min_order_by": { "discord_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_lineup_id": [ - 2481 + 2485 ], "placeholder_name": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33810,31 +33642,31 @@ export default { }, "match_lineup_players_order_by": { "captain": [ - 2481 + 2485 ], "checked_in": [ - 2481 + 2485 ], "discord_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "lineup": [ 1996 ], "match_lineup_id": [ - 2481 + 2485 ], "placeholder_name": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33842,7 +33674,7 @@ export default { }, "match_lineup_players_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -33862,10 +33694,10 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "placeholder_name": [ 78 @@ -33887,7 +33719,7 @@ export default { }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33903,7 +33735,7 @@ export default { }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33919,7 +33751,7 @@ export default { }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -33947,10 +33779,10 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "placeholder_name": [ 78 @@ -33972,7 +33804,7 @@ export default { }, "match_lineup_players_sum_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -34003,7 +33835,7 @@ export default { }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -34019,7 +33851,7 @@ export default { }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -34035,7 +33867,7 @@ export default { }, "match_lineup_players_variance_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -34052,16 +33884,16 @@ export default { 3 ], "captain": [ - 4567 + 4571 ], "coach": [ - 3439 + 3443 ], "coach_steam_id": [ 180 ], "id": [ - 4462 + 4466 ], "is_on_lineup": [ 3 @@ -34120,10 +33952,10 @@ export default { } ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_veto_picks": [ 2110, @@ -34173,10 +34005,10 @@ export default { 78 ], "team": [ - 3981 + 3985 ], "team_id": [ - 4462 + 4466 ], "team_name": [ 78 @@ -34273,7 +34105,7 @@ export default { 1984 ], "count": [ - 2481 + 2485 ], "max": [ 1990 @@ -34327,7 +34159,7 @@ export default { }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -34353,16 +34185,16 @@ export default { 4 ], "captain": [ - 4571 + 4575 ], "coach": [ - 3443 + 3447 ], "coach_steam_id": [ 182 ], "id": [ - 4464 + 4468 ], "is_on_lineup": [ 4 @@ -34383,10 +34215,10 @@ export default { 1933 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_veto_picks": [ 2117 @@ -34398,10 +34230,10 @@ export default { 80 ], "team": [ - 3990 + 3994 ], "team_id": [ - 4464 + 4468 ], "team_name": [ 80 @@ -34421,34 +34253,34 @@ export default { }, "match_lineups_insert_input": { "captain": [ - 4577 + 4581 ], "coach": [ - 3450 + 3454 ], "coach_steam_id": [ 180 ], "id": [ - 4462 + 4466 ], "lineup_players": [ 1939 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_veto_picks": [ 2116 ], "team": [ - 3999 + 4003 ], "team_id": [ - 4462 + 4466 ], "team_name": [ 78 @@ -34462,16 +34294,16 @@ export default { 180 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "name": [ 78 ], "team_id": [ - 4462 + 4466 ], "team_name": [ 78 @@ -34482,19 +34314,19 @@ export default { }, "match_lineups_max_order_by": { "coach_steam_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "team_id": [ - 2481 + 2485 ], "team_name": [ - 2481 + 2485 ], "__typename": [ 78 @@ -34505,16 +34337,16 @@ export default { 180 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "name": [ 78 ], "team_id": [ - 4462 + 4466 ], "team_name": [ 78 @@ -34525,19 +34357,19 @@ export default { }, "match_lineups_min_order_by": { "coach_steam_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "team_id": [ - 2481 + 2485 ], "team_name": [ - 2481 + 2485 ], "__typename": [ 78 @@ -34581,61 +34413,61 @@ export default { }, "match_lineups_order_by": { "can_pick_map_veto": [ - 2481 + 2485 ], "can_pick_region_veto": [ - 2481 + 2485 ], "can_update_lineup": [ - 2481 + 2485 ], "captain": [ - 4578 + 4582 ], "coach": [ - 3452 + 3456 ], "coach_steam_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "is_on_lineup": [ - 2481 + 2485 ], "is_picking_map_veto": [ - 2481 + 2485 ], "is_picking_region_veto": [ - 2481 + 2485 ], "is_ready": [ - 2481 + 2485 ], "lineup_players_aggregate": [ 1938 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_veto_picks_aggregate": [ 2115 ], "name": [ - 2481 + 2485 ], "team": [ - 4001 + 4005 ], "team_id": [ - 2481 + 2485 ], "team_name": [ - 2481 + 2485 ], "__typename": [ 78 @@ -34643,7 +34475,7 @@ export default { }, "match_lineups_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -34655,13 +34487,13 @@ export default { 180 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "team_id": [ - 4462 + 4466 ], "team_name": [ 78 @@ -34680,7 +34512,7 @@ export default { }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -34696,7 +34528,7 @@ export default { }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -34712,7 +34544,7 @@ export default { }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -34734,13 +34566,13 @@ export default { 180 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "team_id": [ - 4462 + 4466 ], "team_name": [ 78 @@ -34759,7 +34591,7 @@ export default { }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -34790,7 +34622,7 @@ export default { }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -34806,7 +34638,7 @@ export default { }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -34822,7 +34654,7 @@ export default { }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -34882,7 +34714,7 @@ export default { } ], "created_at": [ - 4024 + 4028 ], "cs2_build": [ 78 @@ -34944,7 +34776,7 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "kills": [ 1352, @@ -34958,7 +34790,7 @@ export default { 78 ], "match": [ - 2296 + 2300 ], "match_clips": [ 1843, @@ -35005,16 +34837,16 @@ export default { } ], "match_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "metadata_parsed_at": [ - 4024 + 4028 ], "playback_file": [ 78 @@ -35185,7 +35017,7 @@ export default { 2029 ], "count": [ - 2481 + 2485 ], "max": [ 2038 @@ -35268,19 +35100,19 @@ export default { }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 2481 + 2485 ], "playback_size": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "tick_rate": [ - 2481 + 2485 ], "total_ticks": [ - 2481 + 2485 ], "__typename": [ 78 @@ -35306,7 +35138,7 @@ export default { 187 ], "created_at": [ - 4025 + 4029 ], "cs2_build": [ 80 @@ -35330,7 +35162,7 @@ export default { 4 ], "id": [ - 4464 + 4468 ], "kills": [ 1354 @@ -35339,7 +35171,7 @@ export default { 80 ], "match": [ - 2305 + 2309 ], "match_clips": [ 1852 @@ -35348,16 +35180,16 @@ export default { 1845 ], "match_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "metadata_parsed_at": [ - 4025 + 4029 ], "playback_file": [ 80 @@ -35467,7 +35299,7 @@ export default { 194 ], "created_at": [ - 4024 + 4028 ], "cs2_build": [ 78 @@ -35482,7 +35314,7 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "kills": [ 1352 @@ -35491,22 +35323,22 @@ export default { 78 ], "match": [ - 2314 + 2318 ], "match_clips": [ 1849 ], "match_id": [ - 4462 + 4466 ], "match_map": [ - 2152 + 2154 ], "match_map_id": [ - 4462 + 4466 ], "metadata_parsed_at": [ - 4024 + 4028 ], "playback_file": [ 78 @@ -35538,7 +35370,7 @@ export default { }, "match_map_demos_max_fields": { "created_at": [ - 4024 + 4028 ], "cs2_build": [ 78 @@ -35553,19 +35385,19 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "map_name": [ 78 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "metadata_parsed_at": [ - 4024 + 4028 ], "playback_file": [ 78 @@ -35594,49 +35426,49 @@ export default { }, "match_map_demos_max_order_by": { "created_at": [ - 2481 + 2485 ], "cs2_build": [ - 2481 + 2485 ], "duration_seconds": [ - 2481 + 2485 ], "file": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "map_name": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "metadata_parsed_at": [ - 2481 + 2485 ], "playback_file": [ - 2481 + 2485 ], "playback_size": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "tick_rate": [ - 2481 + 2485 ], "total_ticks": [ - 2481 + 2485 ], "workshop_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -35644,7 +35476,7 @@ export default { }, "match_map_demos_min_fields": { "created_at": [ - 4024 + 4028 ], "cs2_build": [ 78 @@ -35659,19 +35491,19 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "map_name": [ 78 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "metadata_parsed_at": [ - 4024 + 4028 ], "playback_file": [ 78 @@ -35700,49 +35532,49 @@ export default { }, "match_map_demos_min_order_by": { "created_at": [ - 2481 + 2485 ], "cs2_build": [ - 2481 + 2485 ], "duration_seconds": [ - 2481 + 2485 ], "file": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "map_name": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "metadata_parsed_at": [ - 2481 + 2485 ], "playback_file": [ - 2481 + 2485 ], "playback_size": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "tick_rate": [ - 2481 + 2485 ], "total_ticks": [ - 2481 + 2485 ], "workshop_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -35786,85 +35618,85 @@ export default { }, "match_map_demos_order_by": { "bombs": [ - 2481 + 2485 ], "clip_render_jobs_aggregate": [ 192 ], "created_at": [ - 2481 + 2485 ], "cs2_build": [ - 2481 + 2485 ], "demo_sessions_aggregate": [ 1890 ], "download_url": [ - 2481 + 2485 ], "duration_seconds": [ - 2481 + 2485 ], "file": [ - 2481 + 2485 ], "geometry_validated": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "map_name": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_clips_aggregate": [ 1848 ], "match_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "metadata_parsed_at": [ - 2481 + 2485 ], "playback_file": [ - 2481 + 2485 ], "playback_size": [ - 2481 + 2485 ], "playback_url": [ - 2481 + 2485 ], "players": [ - 2481 + 2485 ], "round_ticks": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "tick_rate": [ - 2481 + 2485 ], "total_ticks": [ - 2481 + 2485 ], "workshop_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -35872,7 +35704,7 @@ export default { }, "match_map_demos_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -35903,7 +35735,7 @@ export default { 1352 ], "created_at": [ - 4024 + 4028 ], "cs2_build": [ 78 @@ -35915,7 +35747,7 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "kills": [ 1352 @@ -35924,13 +35756,13 @@ export default { 78 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "metadata_parsed_at": [ - 4024 + 4028 ], "playback_file": [ 78 @@ -35982,19 +35814,19 @@ export default { }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 2481 + 2485 ], "playback_size": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "tick_rate": [ - 2481 + 2485 ], "total_ticks": [ - 2481 + 2485 ], "__typename": [ 78 @@ -36022,19 +35854,19 @@ export default { }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 2481 + 2485 ], "playback_size": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "tick_rate": [ - 2481 + 2485 ], "total_ticks": [ - 2481 + 2485 ], "__typename": [ 78 @@ -36062,19 +35894,19 @@ export default { }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 2481 + 2485 ], "playback_size": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "tick_rate": [ - 2481 + 2485 ], "total_ticks": [ - 2481 + 2485 ], "__typename": [ 78 @@ -36096,7 +35928,7 @@ export default { 1352 ], "created_at": [ - 4024 + 4028 ], "cs2_build": [ 78 @@ -36111,7 +35943,7 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "kills": [ 1352 @@ -36120,13 +35952,13 @@ export default { 78 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "metadata_parsed_at": [ - 4024 + 4028 ], "playback_file": [ 78 @@ -36178,19 +36010,19 @@ export default { }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 2481 + 2485 ], "playback_size": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "tick_rate": [ - 2481 + 2485 ], "total_ticks": [ - 2481 + 2485 ], "__typename": [ 78 @@ -36248,19 +36080,19 @@ export default { }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 2481 + 2485 ], "playback_size": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "tick_rate": [ - 2481 + 2485 ], "total_ticks": [ - 2481 + 2485 ], "__typename": [ 78 @@ -36288,19 +36120,19 @@ export default { }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 2481 + 2485 ], "playback_size": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "tick_rate": [ - 2481 + 2485 ], "total_ticks": [ - 2481 + 2485 ], "__typename": [ 78 @@ -36328,19 +36160,19 @@ export default { }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 2481 + 2485 ], "playback_size": [ - 2481 + 2485 ], "size": [ - 2481 + 2485 ], "tick_rate": [ - 2481 + 2485 ], "total_ticks": [ - 2481 + 2485 ], "__typename": [ 78 @@ -36348,10 +36180,10 @@ export default { }, "match_map_rounds": { "assists": [ - 2619, + 2623, { "distinct_on": [ - 2642, + 2646, "[player_assists_select_column!]" ], "limit": [ @@ -36361,19 +36193,19 @@ export default { 38 ], "order_by": [ - 2640, + 2644, "[player_assists_order_by!]" ], "where": [ - 2630 + 2634 ] } ], "assists_aggregate": [ - 2620, + 2624, { "distinct_on": [ - 2642, + 2646, "[player_assists_select_column!]" ], "limit": [ @@ -36383,11 +36215,11 @@ export default { 38 ], "order_by": [ - 2640, + 2644, "[player_assists_order_by!]" ], "where": [ - 2630 + 2634 ] } ], @@ -36395,22 +36227,22 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "deleted_at": [ - 4024 + 4028 ], "has_backup_file": [ 3 ], "id": [ - 4462 + 4466 ], "kills": [ - 2836, + 2840, { "distinct_on": [ - 2900, + 2904, "[player_kills_select_column!]" ], "limit": [ @@ -36420,19 +36252,19 @@ export default { 38 ], "order_by": [ - 2898, + 2902, "[player_kills_order_by!]" ], "where": [ - 2847 + 2851 ] } ], "kills_aggregate": [ - 2837, + 2841, { "distinct_on": [ - 2900, + 2904, "[player_kills_select_column!]" ], "limit": [ @@ -36442,11 +36274,11 @@ export default { 38 ], "order_by": [ - 2898, + 2902, "[player_kills_order_by!]" ], "where": [ - 2847 + 2851 ] } ], @@ -36478,13 +36310,13 @@ export default { 2134 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "winning_reason": [ 1185 @@ -36584,7 +36416,7 @@ export default { 2077 ], "count": [ - 2481 + 2485 ], "max": [ 2083 @@ -36656,25 +36488,25 @@ export default { }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 2481 + 2485 ], "lineup_1_score": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_money": [ - 2481 + 2485 ], "lineup_2_score": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -36691,31 +36523,31 @@ export default { 2078 ], "assists": [ - 2630 + 2634 ], "assists_aggregate": [ - 2621 + 2625 ], "backup_file": [ 80 ], "created_at": [ - 4025 + 4029 ], "deleted_at": [ - 4025 + 4029 ], "has_backup_file": [ 4 ], "id": [ - 4464 + 4468 ], "kills": [ - 2847 + 2851 ], "kills_aggregate": [ - 2838 + 2842 ], "lineup_1_money": [ 39 @@ -36742,16 +36574,16 @@ export default { 39 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "round": [ 39 ], "time": [ - 4025 + 4029 ], "winning_reason": [ 1186 @@ -36792,22 +36624,22 @@ export default { }, "match_map_rounds_insert_input": { "assists": [ - 2627 + 2631 ], "backup_file": [ 78 ], "created_at": [ - 4024 + 4028 ], "deleted_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "kills": [ - 2844 + 2848 ], "lineup_1_money": [ 38 @@ -36834,16 +36666,16 @@ export default { 38 ], "match_map": [ - 2152 + 2154 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "winning_reason": [ 1185 @@ -36860,13 +36692,13 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "deleted_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "lineup_1_money": [ 38 @@ -36887,13 +36719,13 @@ export default { 38 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "winning_side": [ 78 @@ -36904,46 +36736,46 @@ export default { }, "match_map_rounds_max_order_by": { "backup_file": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "lineup_1_money": [ - 2481 + 2485 ], "lineup_1_score": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_money": [ - 2481 + 2485 ], "lineup_2_score": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "winning_side": [ - 2481 + 2485 ], "__typename": [ 78 @@ -36954,13 +36786,13 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "deleted_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "lineup_1_money": [ 38 @@ -36981,13 +36813,13 @@ export default { 38 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "winning_side": [ 78 @@ -36998,46 +36830,46 @@ export default { }, "match_map_rounds_min_order_by": { "backup_file": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "lineup_1_money": [ - 2481 + 2485 ], "lineup_1_score": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_money": [ - 2481 + 2485 ], "lineup_2_score": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "winning_side": [ - 2481 + 2485 ], "__typename": [ 78 @@ -37070,67 +36902,67 @@ export default { }, "match_map_rounds_order_by": { "assists_aggregate": [ - 2626 + 2630 ], "backup_file": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "has_backup_file": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "kills_aggregate": [ - 2843 + 2847 ], "lineup_1_money": [ - 2481 + 2485 ], "lineup_1_score": [ - 2481 + 2485 ], "lineup_1_side": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_money": [ - 2481 + 2485 ], "lineup_2_score": [ - 2481 + 2485 ], "lineup_2_side": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "winning_reason": [ - 2481 + 2485 ], "winning_side": [ - 2481 + 2485 ], "__typename": [ 78 @@ -37138,7 +36970,7 @@ export default { }, "match_map_rounds_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -37150,13 +36982,13 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "deleted_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "lineup_1_money": [ 38 @@ -37183,13 +37015,13 @@ export default { 38 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "winning_reason": [ 1185 @@ -37229,25 +37061,25 @@ export default { }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 2481 + 2485 ], "lineup_1_score": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_money": [ - 2481 + 2485 ], "lineup_2_score": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -37281,25 +37113,25 @@ export default { }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 2481 + 2485 ], "lineup_1_score": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_money": [ - 2481 + 2485 ], "lineup_2_score": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -37333,25 +37165,25 @@ export default { }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 2481 + 2485 ], "lineup_1_score": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_money": [ - 2481 + 2485 ], "lineup_2_score": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -37373,13 +37205,13 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "deleted_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "lineup_1_money": [ 38 @@ -37406,13 +37238,13 @@ export default { 38 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "winning_reason": [ 1185 @@ -37452,25 +37284,25 @@ export default { }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 2481 + 2485 ], "lineup_1_score": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_money": [ - 2481 + 2485 ], "lineup_2_score": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -37519,25 +37351,25 @@ export default { }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 2481 + 2485 ], "lineup_1_score": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_money": [ - 2481 + 2485 ], "lineup_2_score": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -37571,25 +37403,25 @@ export default { }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 2481 + 2485 ], "lineup_1_score": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_money": [ - 2481 + 2485 ], "lineup_2_score": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -37623,25 +37455,25 @@ export default { }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 2481 + 2485 ], "lineup_1_score": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_money": [ - 2481 + 2485 ], "lineup_2_score": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -37649,28 +37481,28 @@ export default { }, "match_map_veto_picks": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "map": [ 1814 ], "map_id": [ - 4462 + 4466 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_lineup": [ 1976 ], "match_lineup_id": [ - 4462 + 4466 ], "side": [ 78 @@ -37743,7 +37575,7 @@ export default { }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 2481 + 2485 ], "max": [ 2121 @@ -37777,28 +37609,28 @@ export default { 2117 ], "created_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "map": [ 1823 ], "map_id": [ - 4464 + 4468 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_lineup": [ 1985 ], "match_lineup_id": [ - 4464 + 4468 ], "side": [ 80 @@ -37813,28 +37645,28 @@ export default { "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "map": [ 1831 ], "map_id": [ - 4462 + 4466 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_lineup": [ 1994 ], "match_lineup_id": [ - 4462 + 4466 ], "side": [ 78 @@ -37848,19 +37680,19 @@ export default { }, "match_map_veto_picks_max_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "side": [ 78 @@ -37871,22 +37703,22 @@ export default { }, "match_map_veto_picks_max_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "map_id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_lineup_id": [ - 2481 + 2485 ], "side": [ - 2481 + 2485 ], "__typename": [ 78 @@ -37894,19 +37726,19 @@ export default { }, "match_map_veto_picks_min_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "side": [ 78 @@ -37917,22 +37749,22 @@ export default { }, "match_map_veto_picks_min_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "map_id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_lineup_id": [ - 2481 + 2485 ], "side": [ - 2481 + 2485 ], "__typename": [ 78 @@ -37965,34 +37797,34 @@ export default { }, "match_map_veto_picks_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "map": [ 1833 ], "map_id": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_lineup": [ 1996 ], "match_lineup_id": [ - 2481 + 2485 ], "side": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "__typename": [ 78 @@ -38000,7 +37832,7 @@ export default { }, "match_map_veto_picks_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -38009,19 +37841,19 @@ export default { "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "side": [ 78 @@ -38046,19 +37878,19 @@ export default { }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "side": [ 78 @@ -38083,11 +37915,14 @@ export default { ] }, "match_maps": { + "anti_wallhack_active": [ + 3 + ], "clips_count": [ 38 ], "created_at": [ - 4024 + 4028 ], "demos": [ 2018, @@ -38143,13 +37978,13 @@ export default { 753 ], "ended_at": [ - 4024 + 4028 ], "flashes": [ - 2791, + 2795, { "distinct_on": [ - 2814, + 2818, "[player_flashes_select_column!]" ], "limit": [ @@ -38159,19 +37994,19 @@ export default { 38 ], "order_by": [ - 2812, + 2816, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2806 ] } ], "flashes_aggregate": [ - 2792, + 2796, { "distinct_on": [ - 2814, + 2818, "[player_flashes_select_column!]" ], "limit": [ @@ -38181,22 +38016,22 @@ export default { 38 ], "order_by": [ - 2812, + 2816, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2806 ] } ], "id": [ - 4462 + 4466 ], "is_current_map": [ 3 ], "latest_clip_at": [ - 4024 + 4028 ], "lineup_1_score": [ 38 @@ -38220,10 +38055,10 @@ export default { 1814 ], "map_id": [ - 4462 + 4466 ], "match": [ - 2296 + 2300 ], "match_clips": [ 1843, @@ -38270,13 +38105,13 @@ export default { } ], "match_id": [ - 4462 + 4466 ], "objectives": [ - 3037, + 3041, { "distinct_on": [ - 3058, + 3062, "[player_objectives_select_column!]" ], "limit": [ @@ -38286,19 +38121,19 @@ export default { 38 ], "order_by": [ - 3056, + 3060, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3050 ] } ], "objectives_aggregate": [ - 3038, + 3042, { "distinct_on": [ - 3058, + 3062, "[player_objectives_select_column!]" ], "limit": [ @@ -38308,11 +38143,11 @@ export default { 38 ], "order_by": [ - 3056, + 3060, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3050 ] } ], @@ -38320,10 +38155,10 @@ export default { 38 ], "player_assists": [ - 2619, + 2623, { "distinct_on": [ - 2642, + 2646, "[player_assists_select_column!]" ], "limit": [ @@ -38333,19 +38168,19 @@ export default { 38 ], "order_by": [ - 2640, + 2644, "[player_assists_order_by!]" ], "where": [ - 2630 + 2634 ] } ], "player_assists_aggregate": [ - 2620, + 2624, { "distinct_on": [ - 2642, + 2646, "[player_assists_select_column!]" ], "limit": [ @@ -38355,19 +38190,19 @@ export default { 38 ], "order_by": [ - 2640, + 2644, "[player_assists_order_by!]" ], "where": [ - 2630 + 2634 ] } ], "player_damages": [ - 2682, + 2686, { "distinct_on": [ - 2703, + 2707, "[player_damages_select_column!]" ], "limit": [ @@ -38377,19 +38212,19 @@ export default { 38 ], "order_by": [ - 2701, + 2705, "[player_damages_order_by!]" ], "where": [ - 2691 + 2695 ] } ], "player_damages_aggregate": [ - 2683, + 2687, { "distinct_on": [ - 2703, + 2707, "[player_damages_select_column!]" ], "limit": [ @@ -38399,19 +38234,19 @@ export default { 38 ], "order_by": [ - 2701, + 2705, "[player_damages_order_by!]" ], "where": [ - 2691 + 2695 ] } ], "player_kills": [ - 2836, + 2840, { "distinct_on": [ - 2900, + 2904, "[player_kills_select_column!]" ], "limit": [ @@ -38421,19 +38256,19 @@ export default { 38 ], "order_by": [ - 2898, + 2902, "[player_kills_order_by!]" ], "where": [ - 2847 + 2851 ] } ], "player_kills_aggregate": [ - 2837, + 2841, { "distinct_on": [ - 2900, + 2904, "[player_kills_select_column!]" ], "limit": [ @@ -38443,19 +38278,19 @@ export default { 38 ], "order_by": [ - 2898, + 2902, "[player_kills_order_by!]" ], "where": [ - 2847 + 2851 ] } ], "player_unused_utilities": [ - 3324, + 3328, { "distinct_on": [ - 3345, + 3349, "[player_unused_utility_select_column!]" ], "limit": [ @@ -38465,19 +38300,19 @@ export default { 38 ], "order_by": [ - 3343, + 3347, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3337 ] } ], "player_unused_utilities_aggregate": [ - 3325, + 3329, { "distinct_on": [ - 3345, + 3349, "[player_unused_utility_select_column!]" ], "limit": [ @@ -38487,11 +38322,11 @@ export default { 38 ], "order_by": [ - 3343, + 3347, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3337 ] } ], @@ -38499,7 +38334,7 @@ export default { 38 ], "public_latest_clip_at": [ - 4024 + 4028 ], "rounds": [ 2069, @@ -38546,16 +38381,16 @@ export default { } ], "started_at": [ - 4024 + 4028 ], "status": [ 758 ], "utility": [ - 3365, + 3369, { "distinct_on": [ - 3386, + 3390, "[player_utility_select_column!]" ], "limit": [ @@ -38565,19 +38400,19 @@ export default { 38 ], "order_by": [ - 3384, + 3388, "[player_utility_order_by!]" ], "where": [ - 3374 + 3378 ] } ], "utility_aggregate": [ - 3366, + 3370, { "distinct_on": [ - 3386, + 3390, "[player_utility_select_column!]" ], "limit": [ @@ -38587,11 +38422,11 @@ export default { 38 ], "order_by": [ - 3384, + 3388, "[player_utility_order_by!]" ], "where": [ - 3374 + 3378 ] } ], @@ -38640,7 +38475,7 @@ export default { } ], "winning_lineup_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -38648,7 +38483,7 @@ export default { }, "match_maps_aggregate": { "aggregate": [ - 2138 + 2140 ], "nodes": [ 2134 @@ -38658,22 +38493,62 @@ export default { ] }, "match_maps_aggregate_bool_exp": { - "count": [ + "bool_and": [ 2137 ], + "bool_or": [ + 2138 + ], + "count": [ + 2139 + ], + "__typename": [ + 78 + ] + }, + "match_maps_aggregate_bool_exp_bool_and": { + "arguments": [ + 2159 + ], + "distinct": [ + 3 + ], + "filter": [ + 2145 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "match_maps_aggregate_bool_exp_bool_or": { + "arguments": [ + 2160 + ], + "distinct": [ + 3 + ], + "filter": [ + 2145 + ], + "predicate": [ + 4 + ], "__typename": [ 78 ] }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2156 + 2158 ], "distinct": [ 3 ], "filter": [ - 2143 + 2145 ], "predicate": [ 39 @@ -38684,13 +38559,13 @@ export default { }, "match_maps_aggregate_fields": { "avg": [ - 2141 + 2143 ], "count": [ 38, { "columns": [ - 2156, + 2158, "[match_maps_select_column!]" ], "distinct": [ @@ -38699,31 +38574,31 @@ export default { } ], "max": [ - 2147 + 2149 ], "min": [ - 2149 + 2151 ], "stddev": [ - 2158 + 2162 ], "stddev_pop": [ - 2160 + 2164 ], "stddev_samp": [ - 2162 + 2166 ], "sum": [ - 2166 + 2170 ], "var_pop": [ - 2170 + 2174 ], "var_samp": [ - 2172 + 2176 ], "variance": [ - 2174 + 2178 ], "__typename": [ 78 @@ -38731,37 +38606,37 @@ export default { }, "match_maps_aggregate_order_by": { "avg": [ - 2142 + 2144 ], "count": [ - 2481 + 2485 ], "max": [ - 2148 + 2150 ], "min": [ - 2150 + 2152 ], "stddev": [ - 2159 + 2163 ], "stddev_pop": [ - 2161 + 2165 ], "stddev_samp": [ - 2163 + 2167 ], "sum": [ - 2167 + 2171 ], "var_pop": [ - 2171 + 2175 ], "var_samp": [ - 2173 + 2177 ], "variance": [ - 2175 + 2179 ], "__typename": [ 78 @@ -38769,10 +38644,10 @@ export default { }, "match_maps_arr_rel_insert_input": { "data": [ - 2146 + 2148 ], "on_conflict": [ - 2153 + 2155 ], "__typename": [ 78 @@ -38809,19 +38684,19 @@ export default { }, "match_maps_avg_order_by": { "clips_count": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "public_clips_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -38829,19 +38704,22 @@ export default { }, "match_maps_bool_exp": { "_and": [ - 2143 + 2145 ], "_not": [ - 2143 + 2145 ], "_or": [ - 2143 + 2145 + ], + "anti_wallhack_active": [ + 4 ], "clips_count": [ 39 ], "created_at": [ - 4025 + 4029 ], "demos": [ 2030 @@ -38859,22 +38737,22 @@ export default { 756 ], "ended_at": [ - 4025 + 4029 ], "flashes": [ - 2802 + 2806 ], "flashes_aggregate": [ - 2793 + 2797 ], "id": [ - 4464 + 4468 ], "is_current_map": [ 4 ], "latest_clip_at": [ - 4025 + 4029 ], "lineup_1_score": [ 39 @@ -38898,10 +38776,10 @@ export default { 1823 ], "map_id": [ - 4464 + 4468 ], "match": [ - 2305 + 2309 ], "match_clips": [ 1852 @@ -38910,46 +38788,46 @@ export default { 1845 ], "match_id": [ - 4464 + 4468 ], "objectives": [ - 3046 + 3050 ], "objectives_aggregate": [ - 3039 + 3043 ], "order": [ 39 ], "player_assists": [ - 2630 + 2634 ], "player_assists_aggregate": [ - 2621 + 2625 ], "player_damages": [ - 2691 + 2695 ], "player_damages_aggregate": [ - 2684 + 2688 ], "player_kills": [ - 2847 + 2851 ], "player_kills_aggregate": [ - 2838 + 2842 ], "player_unused_utilities": [ - 3333 + 3337 ], "player_unused_utilities_aggregate": [ - 3326 + 3330 ], "public_clips_count": [ 39 ], "public_latest_clip_at": [ - 4025 + 4029 ], "rounds": [ 2078 @@ -38958,16 +38836,16 @@ export default { 2071 ], "started_at": [ - 4025 + 4029 ], "status": [ 759 ], "utility": [ - 3374 + 3378 ], "utility_aggregate": [ - 3367 + 3371 ], "vetos": [ 2117 @@ -38976,7 +38854,7 @@ export default { 2112 ], "winning_lineup_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -39004,11 +38882,14 @@ export default { ] }, "match_maps_insert_input": { + "anti_wallhack_active": [ + 3 + ], "clips_count": [ 38 ], "created_at": [ - 4024 + 4028 ], "demos": [ 2027 @@ -39017,16 +38898,16 @@ export default { 764 ], "ended_at": [ - 4024 + 4028 ], "flashes": [ - 2799 + 2803 ], "id": [ - 4462 + 4466 ], "latest_clip_at": [ - 4024 + 4028 ], "lineup_1_side": [ 1002 @@ -39044,58 +38925,58 @@ export default { 1831 ], "map_id": [ - 4462 + 4466 ], "match": [ - 2314 + 2318 ], "match_clips": [ 1849 ], "match_id": [ - 4462 + 4466 ], "objectives": [ - 3043 + 3047 ], "order": [ 38 ], "player_assists": [ - 2627 + 2631 ], "player_damages": [ - 2688 + 2692 ], "player_kills": [ - 2844 + 2848 ], "player_unused_utilities": [ - 3330 + 3334 ], "public_clips_count": [ 38 ], "public_latest_clip_at": [ - 4024 + 4028 ], "rounds": [ 2075 ], "started_at": [ - 4024 + 4028 ], "status": [ 758 ], "utility": [ - 3371 + 3375 ], "vetos": [ 2116 ], "winning_lineup_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -39106,7 +38987,7 @@ export default { 38 ], "created_at": [ - 4024 + 4028 ], "demos_download_url": [ 78 @@ -39115,13 +38996,13 @@ export default { 38 ], "ended_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "latest_clip_at": [ - 4024 + 4028 ], "lineup_1_score": [ 38 @@ -39136,10 +39017,10 @@ export default { 38 ], "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "order": [ 38 @@ -39148,13 +39029,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4024 + 4028 ], "started_at": [ - 4024 + 4028 ], "winning_lineup_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -39162,46 +39043,46 @@ export default { }, "match_maps_max_order_by": { "clips_count": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "ended_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "latest_clip_at": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "map_id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "public_clips_count": [ - 2481 + 2485 ], "public_latest_clip_at": [ - 2481 + 2485 ], "started_at": [ - 2481 + 2485 ], "winning_lineup_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -39212,7 +39093,7 @@ export default { 38 ], "created_at": [ - 4024 + 4028 ], "demos_download_url": [ 78 @@ -39221,13 +39102,13 @@ export default { 38 ], "ended_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "latest_clip_at": [ - 4024 + 4028 ], "lineup_1_score": [ 38 @@ -39242,10 +39123,10 @@ export default { 38 ], "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "order": [ 38 @@ -39254,13 +39135,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4024 + 4028 ], "started_at": [ - 4024 + 4028 ], "winning_lineup_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -39268,46 +39149,46 @@ export default { }, "match_maps_min_order_by": { "clips_count": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "ended_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "latest_clip_at": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "map_id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "public_clips_count": [ - 2481 + 2485 ], "public_latest_clip_at": [ - 2481 + 2485 ], "started_at": [ - 2481 + 2485 ], "winning_lineup_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -39326,10 +39207,10 @@ export default { }, "match_maps_obj_rel_insert_input": { "data": [ - 2146 + 2148 ], "on_conflict": [ - 2153 + 2155 ], "__typename": [ 78 @@ -39337,126 +39218,129 @@ export default { }, "match_maps_on_conflict": { "constraint": [ - 2144 + 2146 ], "update_columns": [ - 2168 + 2172 ], "where": [ - 2143 + 2145 ], "__typename": [ 78 ] }, "match_maps_order_by": { + "anti_wallhack_active": [ + 2485 + ], "clips_count": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "demos_aggregate": [ 2025 ], "demos_download_url": [ - 2481 + 2485 ], "demos_total_size": [ - 2481 + 2485 ], "e_match_map_status": [ 766 ], "ended_at": [ - 2481 + 2485 ], "flashes_aggregate": [ - 2798 + 2802 ], "id": [ - 2481 + 2485 ], "is_current_map": [ - 2481 + 2485 ], "latest_clip_at": [ - 2481 + 2485 ], "lineup_1_score": [ - 2481 + 2485 ], "lineup_1_side": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_score": [ - 2481 + 2485 ], "lineup_2_side": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "map": [ 1833 ], "map_id": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_clips_aggregate": [ 1848 ], "match_id": [ - 2481 + 2485 ], "objectives_aggregate": [ - 3042 + 3046 ], "order": [ - 2481 + 2485 ], "player_assists_aggregate": [ - 2626 + 2630 ], "player_damages_aggregate": [ - 2687 + 2691 ], "player_kills_aggregate": [ - 2843 + 2847 ], "player_unused_utilities_aggregate": [ - 3329 + 3333 ], "public_clips_count": [ - 2481 + 2485 ], "public_latest_clip_at": [ - 2481 + 2485 ], "rounds_aggregate": [ 2074 ], "started_at": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "utility_aggregate": [ - 3370 + 3374 ], "vetos_aggregate": [ 2115 ], "winning_lineup_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -39464,28 +39348,33 @@ export default { }, "match_maps_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 ] }, "match_maps_select_column": {}, + "match_maps_select_column_match_maps_aggregate_bool_exp_bool_and_arguments_columns": {}, + "match_maps_select_column_match_maps_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_maps_set_input": { + "anti_wallhack_active": [ + 3 + ], "clips_count": [ 38 ], "created_at": [ - 4024 + 4028 ], "ended_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "latest_clip_at": [ - 4024 + 4028 ], "lineup_1_side": [ 1002 @@ -39500,10 +39389,10 @@ export default { 38 ], "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "order": [ 38 @@ -39512,16 +39401,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4024 + 4028 ], "started_at": [ - 4024 + 4028 ], "status": [ 758 ], "winning_lineup_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -39558,19 +39447,19 @@ export default { }, "match_maps_stddev_order_by": { "clips_count": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "public_clips_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -39607,19 +39496,19 @@ export default { }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "public_clips_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -39656,19 +39545,19 @@ export default { }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "public_clips_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -39676,7 +39565,7 @@ export default { }, "match_maps_stream_cursor_input": { "initial_value": [ - 2165 + 2169 ], "ordering": [ 236 @@ -39686,20 +39575,23 @@ export default { ] }, "match_maps_stream_cursor_value_input": { + "anti_wallhack_active": [ + 3 + ], "clips_count": [ 38 ], "created_at": [ - 4024 + 4028 ], "ended_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "latest_clip_at": [ - 4024 + 4028 ], "lineup_1_side": [ 1002 @@ -39714,10 +39606,10 @@ export default { 38 ], "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "order": [ 38 @@ -39726,16 +39618,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4024 + 4028 ], "started_at": [ - 4024 + 4028 ], "status": [ 758 ], "winning_lineup_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -39772,19 +39664,19 @@ export default { }, "match_maps_sum_order_by": { "clips_count": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "public_clips_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -39793,13 +39685,13 @@ export default { "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2145 + 2147 ], "_set": [ - 2157 + 2161 ], "where": [ - 2143 + 2145 ], "__typename": [ 78 @@ -39836,19 +39728,19 @@ export default { }, "match_maps_var_pop_order_by": { "clips_count": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "public_clips_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -39885,19 +39777,19 @@ export default { }, "match_maps_var_samp_order_by": { "clips_count": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "public_clips_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -39934,25 +39826,28 @@ export default { }, "match_maps_variance_order_by": { "clips_count": [ - 2481 + 2485 ], "lineup_1_timeouts_available": [ - 2481 + 2485 ], "lineup_2_timeouts_available": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "public_clips_count": [ - 2481 + 2485 ], "__typename": [ 78 ] }, "match_options": { + "anti_wallhack": [ + 3 + ], "auto_cancel_duration": [ 38 ], @@ -39975,7 +39870,7 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "invite_code": [ 78 @@ -39990,7 +39885,7 @@ export default { 1795 ], "map_pool_id": [ - 4462 + 4466 ], "map_veto": [ 3 @@ -39999,10 +39894,10 @@ export default { 779 ], "matches": [ - 2296, + 2300, { "distinct_on": [ - 2318, + 2322, "[matches_select_column!]" ], "limit": [ @@ -40012,19 +39907,19 @@ export default { 38 ], "order_by": [ - 2316, + 2320, "[matches_order_by!]" ], "where": [ - 2305 + 2309 ] } ], "matches_aggregate": [ - 2297, + 2301, { "distinct_on": [ - 2318, + 2322, "[matches_select_column!]" ], "limit": [ @@ -40034,11 +39929,11 @@ export default { 38 ], "order_by": [ - 2316, + 2320, "[matches_order_by!]" ], "where": [ - 2305 + 2309 ] } ], @@ -40070,13 +39965,13 @@ export default { 1083 ], "tournament": [ - 4416 + 4420 ], "tournament_bracket": [ - 4026 + 4030 ], "tournament_stage": [ - 4154 + 4158 ], "tv_delay": [ 38 @@ -40090,10 +39985,10 @@ export default { }, "match_options_aggregate": { "aggregate": [ - 2178 + 2182 ], "nodes": [ - 2176 + 2180 ], "__typename": [ 78 @@ -40101,13 +39996,13 @@ export default { }, "match_options_aggregate_fields": { "avg": [ - 2179 + 2183 ], "count": [ 38, { "columns": [ - 2191, + 2195, "[match_options_select_column!]" ], "distinct": [ @@ -40116,31 +40011,31 @@ export default { } ], "max": [ - 2184 + 2188 ], "min": [ - 2185 + 2189 ], "stddev": [ - 2193 + 2197 ], "stddev_pop": [ - 2194 + 2198 ], "stddev_samp": [ - 2195 + 2199 ], "sum": [ - 2198 + 2202 ], "var_pop": [ - 2201 + 2205 ], "var_samp": [ - 2202 + 2206 ], "variance": [ - 2203 + 2207 ], "__typename": [ 78 @@ -40171,13 +40066,16 @@ export default { }, "match_options_bool_exp": { "_and": [ - 2180 + 2184 ], "_not": [ - 2180 + 2184 ], "_or": [ - 2180 + 2184 + ], + "anti_wallhack": [ + 4 ], "auto_cancel_duration": [ 39 @@ -40201,7 +40099,7 @@ export default { 4 ], "id": [ - 4464 + 4468 ], "invite_code": [ 80 @@ -40216,7 +40114,7 @@ export default { 1798 ], "map_pool_id": [ - 4464 + 4468 ], "map_veto": [ 4 @@ -40225,10 +40123,10 @@ export default { 780 ], "matches": [ - 2305 + 2309 ], "matches_aggregate": [ - 2298 + 2302 ], "mr": [ 39 @@ -40258,13 +40156,13 @@ export default { 1084 ], "tournament": [ - 4427 + 4431 ], "tournament_bracket": [ - 4037 + 4041 ], "tournament_stage": [ - 4166 + 4170 ], "tv_delay": [ 39 @@ -40301,6 +40199,9 @@ export default { ] }, "match_options_insert_input": { + "anti_wallhack": [ + 3 + ], "auto_cancel_duration": [ 38 ], @@ -40320,7 +40221,7 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "invite_code": [ 78 @@ -40335,7 +40236,7 @@ export default { 1804 ], "map_pool_id": [ - 4462 + 4466 ], "map_veto": [ 3 @@ -40344,7 +40245,7 @@ export default { 779 ], "matches": [ - 2302 + 2306 ], "mr": [ 38 @@ -40374,13 +40275,13 @@ export default { 1083 ], "tournament": [ - 4436 + 4440 ], "tournament_bracket": [ - 4046 + 4050 ], "tournament_stage": [ - 4178 + 4182 ], "tv_delay": [ 38 @@ -40400,7 +40301,7 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "invite_code": [ 78 @@ -40409,7 +40310,7 @@ export default { 38 ], "map_pool_id": [ - 4462 + 4466 ], "mr": [ 38 @@ -40435,7 +40336,7 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "invite_code": [ 78 @@ -40444,7 +40345,7 @@ export default { 38 ], "map_pool_id": [ - 4462 + 4466 ], "mr": [ 38 @@ -40467,7 +40368,7 @@ export default { 38 ], "returning": [ - 2176 + 2180 ], "__typename": [ 78 @@ -40475,10 +40376,10 @@ export default { }, "match_options_obj_rel_insert_input": { "data": [ - 2183 + 2187 ], "on_conflict": [ - 2188 + 2192 ], "__typename": [ 78 @@ -40486,108 +40387,111 @@ export default { }, "match_options_on_conflict": { "constraint": [ - 2181 + 2185 ], "update_columns": [ - 2199 + 2203 ], "where": [ - 2180 + 2184 ], "__typename": [ 78 ] }, "match_options_order_by": { + "anti_wallhack": [ + 2485 + ], "auto_cancel_duration": [ - 2481 + 2485 ], "auto_cancellation": [ - 2481 + 2485 ], "best_of": [ - 2481 + 2485 ], "check_in_setting": [ - 2481 + 2485 ], "coaches": [ - 2481 + 2485 ], "default_models": [ - 2481 + 2485 ], "has_active_matches": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "invite_code": [ - 2481 + 2485 ], "knife_round": [ - 2481 + 2485 ], "live_match_timeout": [ - 2481 + 2485 ], "map_pool": [ 1806 ], "map_pool_id": [ - 2481 + 2485 ], "map_veto": [ - 2481 + 2485 ], "match_mode": [ - 2481 + 2485 ], "matches_aggregate": [ - 2301 + 2305 ], "mr": [ - 2481 + 2485 ], "number_of_substitutes": [ - 2481 + 2485 ], "overtime": [ - 2481 + 2485 ], "prefer_dedicated_server": [ - 2481 + 2485 ], "ready_setting": [ - 2481 + 2485 ], "region_veto": [ - 2481 + 2485 ], "regions": [ - 2481 + 2485 ], "tech_timeout_setting": [ - 2481 + 2485 ], "timeout_setting": [ - 2481 + 2485 ], "tournament": [ - 4438 + 4442 ], "tournament_bracket": [ - 4048 + 4052 ], "tournament_stage": [ - 4180 + 4184 ], "tv_delay": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "__typename": [ 78 @@ -40595,7 +40499,7 @@ export default { }, "match_options_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -40603,6 +40507,9 @@ export default { }, "match_options_select_column": {}, "match_options_set_input": { + "anti_wallhack": [ + 3 + ], "auto_cancel_duration": [ 38 ], @@ -40622,7 +40529,7 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "invite_code": [ 78 @@ -40634,7 +40541,7 @@ export default { 38 ], "map_pool_id": [ - 4462 + 4466 ], "map_veto": [ 3 @@ -40750,7 +40657,7 @@ export default { }, "match_options_stream_cursor_input": { "initial_value": [ - 2197 + 2201 ], "ordering": [ 236 @@ -40760,6 +40667,9 @@ export default { ] }, "match_options_stream_cursor_value_input": { + "anti_wallhack": [ + 3 + ], "auto_cancel_duration": [ 38 ], @@ -40779,7 +40689,7 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "invite_code": [ 78 @@ -40791,7 +40701,7 @@ export default { 38 ], "map_pool_id": [ - 4462 + 4466 ], "map_veto": [ 3 @@ -40862,13 +40772,13 @@ export default { "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2182 + 2186 ], "_set": [ - 2192 + 2196 ], "where": [ - 2180 + 2184 ], "__typename": [ 78 @@ -40945,22 +40855,22 @@ export default { }, "match_region_veto_picks": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_lineup": [ 1976 ], "match_lineup_id": [ - 4462 + 4466 ], "region": [ 78 @@ -40974,10 +40884,10 @@ export default { }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2208 + 2212 ], "nodes": [ - 2204 + 2208 ], "__typename": [ 78 @@ -40985,7 +40895,7 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 2207 + 2211 ], "__typename": [ 78 @@ -40993,13 +40903,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2222 + 2226 ], "distinct": [ 3 ], "filter": [ - 2211 + 2215 ], "predicate": [ 39 @@ -41013,7 +40923,7 @@ export default { 38, { "columns": [ - 2222, + 2226, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -41022,10 +40932,10 @@ export default { } ], "max": [ - 2214 + 2218 ], "min": [ - 2216 + 2220 ], "__typename": [ 78 @@ -41033,13 +40943,13 @@ export default { }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 2481 + 2485 ], "max": [ - 2215 + 2219 ], "min": [ - 2217 + 2221 ], "__typename": [ 78 @@ -41047,10 +40957,10 @@ export default { }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2213 + 2217 ], "on_conflict": [ - 2219 + 2223 ], "__typename": [ 78 @@ -41058,31 +40968,31 @@ export default { }, "match_region_veto_picks_bool_exp": { "_and": [ - 2211 + 2215 ], "_not": [ - 2211 + 2215 ], "_or": [ - 2211 + 2215 ], "created_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_lineup": [ 1985 ], "match_lineup_id": [ - 4464 + 4468 ], "region": [ 80 @@ -41097,22 +41007,22 @@ export default { "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_lineup": [ 1994 ], "match_lineup_id": [ - 4462 + 4466 ], "region": [ 78 @@ -41126,16 +41036,16 @@ export default { }, "match_region_veto_picks_max_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "region": [ 78 @@ -41146,19 +41056,19 @@ export default { }, "match_region_veto_picks_max_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_lineup_id": [ - 2481 + 2485 ], "region": [ - 2481 + 2485 ], "__typename": [ 78 @@ -41166,16 +41076,16 @@ export default { }, "match_region_veto_picks_min_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "region": [ 78 @@ -41186,19 +41096,19 @@ export default { }, "match_region_veto_picks_min_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_lineup_id": [ - 2481 + 2485 ], "region": [ - 2481 + 2485 ], "__typename": [ 78 @@ -41209,7 +41119,7 @@ export default { 38 ], "returning": [ - 2204 + 2208 ], "__typename": [ 78 @@ -41217,13 +41127,13 @@ export default { }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2212 + 2216 ], "update_columns": [ - 2226 + 2230 ], "where": [ - 2211 + 2215 ], "__typename": [ 78 @@ -41231,28 +41141,28 @@ export default { }, "match_region_veto_picks_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_lineup": [ 1996 ], "match_lineup_id": [ - 2481 + 2485 ], "region": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "__typename": [ 78 @@ -41260,7 +41170,7 @@ export default { }, "match_region_veto_picks_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -41269,16 +41179,16 @@ export default { "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "region": [ 78 @@ -41292,7 +41202,7 @@ export default { }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2225 + 2229 ], "ordering": [ 236 @@ -41303,16 +41213,16 @@ export default { }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "region": [ 78 @@ -41327,10 +41237,10 @@ export default { "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2223 + 2227 ], "where": [ - 2211 + 2215 ], "__typename": [ 78 @@ -41350,7 +41260,7 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "is_game_streamer": [ 3 @@ -41362,16 +41272,16 @@ export default { 78 ], "last_status_at": [ - 4024 + 4028 ], "link": [ 78 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "mode": [ 78 @@ -41402,10 +41312,10 @@ export default { }, "match_streams_aggregate": { "aggregate": [ - 2234 + 2238 ], "nodes": [ - 2228 + 2232 ], "__typename": [ 78 @@ -41413,13 +41323,13 @@ export default { }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2231 + 2235 ], "bool_or": [ - 2232 + 2236 ], "count": [ - 2233 + 2237 ], "__typename": [ 78 @@ -41427,13 +41337,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2257 + 2261 ], "distinct": [ 3 ], "filter": [ - 2240 + 2244 ], "predicate": [ 4 @@ -41444,13 +41354,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2258 + 2262 ], "distinct": [ 3 ], "filter": [ - 2240 + 2244 ], "predicate": [ 4 @@ -41461,13 +41371,13 @@ export default { }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2256 + 2260 ], "distinct": [ 3 ], "filter": [ - 2240 + 2244 ], "predicate": [ 39 @@ -41478,13 +41388,13 @@ export default { }, "match_streams_aggregate_fields": { "avg": [ - 2238 + 2242 ], "count": [ 38, { "columns": [ - 2256, + 2260, "[match_streams_select_column!]" ], "distinct": [ @@ -41493,31 +41403,31 @@ export default { } ], "max": [ - 2247 + 2251 ], "min": [ - 2249 + 2253 ], "stddev": [ - 2260 + 2264 ], "stddev_pop": [ - 2262 + 2266 ], "stddev_samp": [ - 2264 + 2268 ], "sum": [ - 2268 + 2272 ], "var_pop": [ - 2272 + 2276 ], "var_samp": [ - 2274 + 2278 ], "variance": [ - 2276 + 2280 ], "__typename": [ 78 @@ -41525,37 +41435,37 @@ export default { }, "match_streams_aggregate_order_by": { "avg": [ - 2239 + 2243 ], "count": [ - 2481 + 2485 ], "max": [ - 2248 + 2252 ], "min": [ - 2250 + 2254 ], "stddev": [ - 2261 + 2265 ], "stddev_pop": [ - 2263 + 2267 ], "stddev_samp": [ - 2265 + 2269 ], "sum": [ - 2269 + 2273 ], "var_pop": [ - 2273 + 2277 ], "var_samp": [ - 2275 + 2279 ], "variance": [ - 2277 + 2281 ], "__typename": [ 78 @@ -41571,10 +41481,10 @@ export default { }, "match_streams_arr_rel_insert_input": { "data": [ - 2246 + 2250 ], "on_conflict": [ - 2252 + 2256 ], "__typename": [ 78 @@ -41590,7 +41500,7 @@ export default { }, "match_streams_avg_order_by": { "priority": [ - 2481 + 2485 ], "__typename": [ 78 @@ -41598,13 +41508,13 @@ export default { }, "match_streams_bool_exp": { "_and": [ - 2240 + 2244 ], "_not": [ - 2240 + 2244 ], "_or": [ - 2240 + 2244 ], "autodirector": [ 4 @@ -41619,7 +41529,7 @@ export default { 80 ], "id": [ - 4464 + 4468 ], "is_game_streamer": [ 4 @@ -41631,16 +41541,16 @@ export default { 80 ], "last_status_at": [ - 4025 + 4029 ], "link": [ 80 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "mode": [ 80 @@ -41711,7 +41621,7 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "is_game_streamer": [ 3 @@ -41723,16 +41633,16 @@ export default { 78 ], "last_status_at": [ - 4024 + 4028 ], "link": [ 78 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "mode": [ 78 @@ -41764,19 +41674,19 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4024 + 4028 ], "link": [ 78 ], "match_id": [ - 4462 + 4466 ], "mode": [ 78 @@ -41799,40 +41709,40 @@ export default { }, "match_streams_max_order_by": { "error_message": [ - 2481 + 2485 ], "game_server_node_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "k8s_service_name": [ - 2481 + 2485 ], "last_status_at": [ - 2481 + 2485 ], "link": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "mode": [ - 2481 + 2485 ], "priority": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "stream_url": [ - 2481 + 2485 ], "title": [ - 2481 + 2485 ], "__typename": [ 78 @@ -41846,19 +41756,19 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4024 + 4028 ], "link": [ 78 ], "match_id": [ - 4462 + 4466 ], "mode": [ 78 @@ -41881,40 +41791,40 @@ export default { }, "match_streams_min_order_by": { "error_message": [ - 2481 + 2485 ], "game_server_node_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "k8s_service_name": [ - 2481 + 2485 ], "last_status_at": [ - 2481 + 2485 ], "link": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "mode": [ - 2481 + 2485 ], "priority": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "stream_url": [ - 2481 + 2485 ], "title": [ - 2481 + 2485 ], "__typename": [ 78 @@ -41925,7 +41835,7 @@ export default { 38 ], "returning": [ - 2228 + 2232 ], "__typename": [ 78 @@ -41933,13 +41843,13 @@ export default { }, "match_streams_on_conflict": { "constraint": [ - 2241 + 2245 ], "update_columns": [ - 2270 + 2274 ], "where": [ - 2240 + 2244 ], "__typename": [ 78 @@ -41947,58 +41857,58 @@ export default { }, "match_streams_order_by": { "autodirector": [ - 2481 + 2485 ], "error_message": [ - 2481 + 2485 ], "game_server_node": [ 1255 ], "game_server_node_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "is_game_streamer": [ - 2481 + 2485 ], "is_live": [ - 2481 + 2485 ], "k8s_service_name": [ - 2481 + 2485 ], "last_status_at": [ - 2481 + 2485 ], "link": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "mode": [ - 2481 + 2485 ], "priority": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "status_history": [ - 2481 + 2485 ], "stream_url": [ - 2481 + 2485 ], "title": [ - 2481 + 2485 ], "__typename": [ 78 @@ -42006,7 +41916,7 @@ export default { }, "match_streams_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -42034,7 +41944,7 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "is_game_streamer": [ 3 @@ -42046,13 +41956,13 @@ export default { 78 ], "last_status_at": [ - 4024 + 4028 ], "link": [ 78 ], "match_id": [ - 4462 + 4466 ], "mode": [ 78 @@ -42086,7 +41996,7 @@ export default { }, "match_streams_stddev_order_by": { "priority": [ - 2481 + 2485 ], "__typename": [ 78 @@ -42102,7 +42012,7 @@ export default { }, "match_streams_stddev_pop_order_by": { "priority": [ - 2481 + 2485 ], "__typename": [ 78 @@ -42118,7 +42028,7 @@ export default { }, "match_streams_stddev_samp_order_by": { "priority": [ - 2481 + 2485 ], "__typename": [ 78 @@ -42126,7 +42036,7 @@ export default { }, "match_streams_stream_cursor_input": { "initial_value": [ - 2267 + 2271 ], "ordering": [ 236 @@ -42146,7 +42056,7 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "is_game_streamer": [ 3 @@ -42158,13 +42068,13 @@ export default { 78 ], "last_status_at": [ - 4024 + 4028 ], "link": [ 78 ], "match_id": [ - 4462 + 4466 ], "mode": [ 78 @@ -42198,7 +42108,7 @@ export default { }, "match_streams_sum_order_by": { "priority": [ - 2481 + 2485 ], "__typename": [ 78 @@ -42207,28 +42117,28 @@ export default { "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2236 + 2240 ], "_delete_at_path": [ - 2242 + 2246 ], "_delete_elem": [ - 2243 + 2247 ], "_delete_key": [ - 2244 + 2248 ], "_inc": [ - 2245 + 2249 ], "_prepend": [ - 2255 + 2259 ], "_set": [ - 2259 + 2263 ], "where": [ - 2240 + 2244 ], "__typename": [ 78 @@ -42244,7 +42154,7 @@ export default { }, "match_streams_var_pop_order_by": { "priority": [ - 2481 + 2485 ], "__typename": [ 78 @@ -42260,7 +42170,7 @@ export default { }, "match_streams_var_samp_order_by": { "priority": [ - 2481 + 2485 ], "__typename": [ 78 @@ -42276,7 +42186,7 @@ export default { }, "match_streams_variance_order_by": { "priority": [ - 2481 + 2485 ], "__typename": [ 78 @@ -42295,10 +42205,10 @@ export default { }, "match_type_cfgs_aggregate": { "aggregate": [ - 2280 + 2284 ], "nodes": [ - 2278 + 2282 ], "__typename": [ 78 @@ -42309,7 +42219,7 @@ export default { 38, { "columns": [ - 2290, + 2294, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -42318,10 +42228,10 @@ export default { } ], "max": [ - 2284 + 2288 ], "min": [ - 2285 + 2289 ], "__typename": [ 78 @@ -42329,13 +42239,13 @@ export default { }, "match_type_cfgs_bool_exp": { "_and": [ - 2281 + 2285 ], "_not": [ - 2281 + 2285 ], "_or": [ - 2281 + 2285 ], "cfg": [ 80 @@ -42380,7 +42290,7 @@ export default { 38 ], "returning": [ - 2278 + 2282 ], "__typename": [ 78 @@ -42388,13 +42298,13 @@ export default { }, "match_type_cfgs_on_conflict": { "constraint": [ - 2282 + 2286 ], "update_columns": [ - 2294 + 2298 ], "where": [ - 2281 + 2285 ], "__typename": [ 78 @@ -42402,10 +42312,10 @@ export default { }, "match_type_cfgs_order_by": { "cfg": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "__typename": [ 78 @@ -42433,7 +42343,7 @@ export default { }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2293 + 2297 ], "ordering": [ 236 @@ -42456,10 +42366,10 @@ export default { "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2291 + 2295 ], "where": [ - 2281 + 2285 ], "__typename": [ 78 @@ -42491,13 +42401,13 @@ export default { 3 ], "cancels_at": [ - 4024 + 4028 ], "clutches": [ - 4591, + 4595, { "distinct_on": [ - 4607, + 4611, "[v_match_clutches_select_column!]" ], "limit": [ @@ -42507,19 +42417,19 @@ export default { 38 ], "order_by": [ - 4606, + 4610, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4604 ] } ], "clutches_aggregate": [ - 4592, + 4596, { "distinct_on": [ - 4607, + 4611, "[v_match_clutches_select_column!]" ], "limit": [ @@ -42529,11 +42439,11 @@ export default { 38 ], "order_by": [ - 4606, + 4610, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4604 ] } ], @@ -42544,10 +42454,10 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "current_match_map_id": [ - 4462 + 4466 ], "demos": [ 2018, @@ -42641,16 +42551,16 @@ export default { 794 ], "e_region": [ - 3526 + 3530 ], "effective_at": [ - 4024 + 4028 ], "elo_changes": [ - 4788, + 4792, { "distinct_on": [ - 4814, + 4818, "[v_player_elo_select_column!]" ], "limit": [ @@ -42660,19 +42570,19 @@ export default { 38 ], "order_by": [ - 4813, + 4817, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 4811 ] } ], "elo_changes_aggregate": [ - 4789, + 4793, { "distinct_on": [ - 4814, + 4818, "[v_player_elo_select_column!]" ], "limit": [ @@ -42682,22 +42592,22 @@ export default { 38 ], "order_by": [ - 4813, + 4817, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 4811 ] } ], "ended_at": [ - 4024 + 4028 ], "external_id": [ 78 ], "id": [ - 4462 + 4466 ], "invite_code": [ 78 @@ -42733,13 +42643,13 @@ export default { 1976 ], "lineup_1_id": [ - 4462 + 4466 ], "lineup_2": [ 1976 ], "lineup_2_id": [ - 4462 + 4466 ], "lineup_counts": [ 1350, @@ -42750,7 +42660,7 @@ export default { } ], "map_veto_picking_lineup_id": [ - 4462 + 4466 ], "map_veto_picks": [ 2110, @@ -42803,7 +42713,7 @@ export default { 2134, { "distinct_on": [ - 2156, + 2158, "[match_maps_select_column!]" ], "limit": [ @@ -42813,11 +42723,11 @@ export default { 38 ], "order_by": [ - 2154, + 2156, "[match_maps_order_by!]" ], "where": [ - 2143 + 2145 ] } ], @@ -42825,7 +42735,7 @@ export default { 2135, { "distinct_on": [ - 2156, + 2158, "[match_maps_select_column!]" ], "limit": [ @@ -42835,16 +42745,16 @@ export default { 38 ], "order_by": [ - 2154, + 2156, "[match_maps_order_by!]" ], "where": [ - 2143 + 2145 ] } ], "match_options_id": [ - 4462 + 4466 ], "max_players_per_lineup": [ 38 @@ -42853,10 +42763,10 @@ export default { 38 ], "opening_duels": [ - 4719, + 4723, { "distinct_on": [ - 4735, + 4739, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -42866,19 +42776,19 @@ export default { 38 ], "order_by": [ - 4734, + 4738, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 4732 ] } ], "opening_duels_aggregate": [ - 4720, + 4724, { "distinct_on": [ - 4735, + 4739, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -42888,19 +42798,19 @@ export default { 38 ], "order_by": [ - 4734, + 4738, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 4732 ] } ], "options": [ - 2176 + 2180 ], "organizer": [ - 3439 + 3443 ], "organizer_steam_id": [ 180 @@ -42909,10 +42819,10 @@ export default { 78 ], "player_assists": [ - 2619, + 2623, { "distinct_on": [ - 2642, + 2646, "[player_assists_select_column!]" ], "limit": [ @@ -42922,19 +42832,19 @@ export default { 38 ], "order_by": [ - 2640, + 2644, "[player_assists_order_by!]" ], "where": [ - 2630 + 2634 ] } ], "player_assists_aggregate": [ - 2620, + 2624, { "distinct_on": [ - 2642, + 2646, "[player_assists_select_column!]" ], "limit": [ @@ -42944,19 +42854,19 @@ export default { 38 ], "order_by": [ - 2640, + 2644, "[player_assists_order_by!]" ], "where": [ - 2630 + 2634 ] } ], "player_damages": [ - 2682, + 2686, { "distinct_on": [ - 2703, + 2707, "[player_damages_select_column!]" ], "limit": [ @@ -42966,19 +42876,19 @@ export default { 38 ], "order_by": [ - 2701, + 2705, "[player_damages_order_by!]" ], "where": [ - 2691 + 2695 ] } ], "player_damages_aggregate": [ - 2683, + 2687, { "distinct_on": [ - 2703, + 2707, "[player_damages_select_column!]" ], "limit": [ @@ -42988,19 +42898,19 @@ export default { 38 ], "order_by": [ - 2701, + 2705, "[player_damages_order_by!]" ], "where": [ - 2691 + 2695 ] } ], "player_flashes": [ - 2791, + 2795, { "distinct_on": [ - 2814, + 2818, "[player_flashes_select_column!]" ], "limit": [ @@ -43010,19 +42920,19 @@ export default { 38 ], "order_by": [ - 2812, + 2816, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2806 ] } ], "player_flashes_aggregate": [ - 2792, + 2796, { "distinct_on": [ - 2814, + 2818, "[player_flashes_select_column!]" ], "limit": [ @@ -43032,19 +42942,19 @@ export default { 38 ], "order_by": [ - 2812, + 2816, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2806 ] } ], "player_kills": [ - 2836, + 2840, { "distinct_on": [ - 2900, + 2904, "[player_kills_select_column!]" ], "limit": [ @@ -43054,19 +42964,19 @@ export default { 38 ], "order_by": [ - 2898, + 2902, "[player_kills_order_by!]" ], "where": [ - 2847 + 2851 ] } ], "player_kills_aggregate": [ - 2837, + 2841, { "distinct_on": [ - 2900, + 2904, "[player_kills_select_column!]" ], "limit": [ @@ -43076,19 +42986,19 @@ export default { 38 ], "order_by": [ - 2898, + 2902, "[player_kills_order_by!]" ], "where": [ - 2847 + 2851 ] } ], "player_objectives": [ - 3037, + 3041, { "distinct_on": [ - 3058, + 3062, "[player_objectives_select_column!]" ], "limit": [ @@ -43098,19 +43008,19 @@ export default { 38 ], "order_by": [ - 3056, + 3060, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3050 ] } ], "player_objectives_aggregate": [ - 3038, + 3042, { "distinct_on": [ - 3058, + 3062, "[player_objectives_select_column!]" ], "limit": [ @@ -43120,19 +43030,19 @@ export default { 38 ], "order_by": [ - 3056, + 3060, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3050 ] } ], "player_unused_utilities": [ - 3324, + 3328, { "distinct_on": [ - 3345, + 3349, "[player_unused_utility_select_column!]" ], "limit": [ @@ -43142,19 +43052,19 @@ export default { 38 ], "order_by": [ - 3343, + 3347, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3337 ] } ], "player_unused_utilities_aggregate": [ - 3325, + 3329, { "distinct_on": [ - 3345, + 3349, "[player_unused_utility_select_column!]" ], "limit": [ @@ -43164,19 +43074,19 @@ export default { 38 ], "order_by": [ - 3343, + 3347, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3337 ] } ], "player_utility": [ - 3365, + 3369, { "distinct_on": [ - 3386, + 3390, "[player_utility_select_column!]" ], "limit": [ @@ -43186,19 +43096,19 @@ export default { 38 ], "order_by": [ - 3384, + 3388, "[player_utility_order_by!]" ], "where": [ - 3374 + 3378 ] } ], "player_utility_aggregate": [ - 3366, + 3370, { "distinct_on": [ - 3386, + 3390, "[player_utility_select_column!]" ], "limit": [ @@ -43208,11 +43118,11 @@ export default { 38 ], "order_by": [ - 3384, + 3388, "[player_utility_order_by!]" ], "where": [ - 3374 + 3378 ] } ], @@ -43220,13 +43130,13 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4462 + 4466 ], "region_veto_picks": [ - 2204, + 2208, { "distinct_on": [ - 2222, + 2226, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -43236,19 +43146,19 @@ export default { 38 ], "order_by": [ - 2220, + 2224, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2215 ] } ], "region_veto_picks_aggregate": [ - 2205, + 2209, { "distinct_on": [ - 2222, + 2226, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -43258,11 +43168,11 @@ export default { 38 ], "order_by": [ - 2220, + 2224, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2215 ] } ], @@ -43270,16 +43180,16 @@ export default { 3 ], "scheduled_at": [ - 4024 + 4028 ], "server": [ - 3553 + 3557 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4466 ], "server_region": [ 78 @@ -43291,16 +43201,16 @@ export default { 78 ], "started_at": [ - 4024 + 4028 ], "status": [ 799 ], "streams": [ - 2228, + 2232, { "distinct_on": [ - 2256, + 2260, "[match_streams_select_column!]" ], "limit": [ @@ -43310,19 +43220,19 @@ export default { 38 ], "order_by": [ - 2253, + 2257, "[match_streams_order_by!]" ], "where": [ - 2240 + 2244 ] } ], "streams_aggregate": [ - 2229, + 2233, { "distinct_on": [ - 2256, + 2260, "[match_streams_select_column!]" ], "limit": [ @@ -43332,19 +43242,19 @@ export default { 38 ], "order_by": [ - 2253, + 2257, "[match_streams_order_by!]" ], "where": [ - 2240 + 2244 ] } ], "teams": [ - 3981, + 3985, { "distinct_on": [ - 4003, + 4007, "[teams_select_column!]" ], "limit": [ @@ -43354,19 +43264,19 @@ export default { 38 ], "order_by": [ - 4001, + 4005, "[teams_order_by!]" ], "where": [ - 3990 + 3994 ] } ], "tournament_brackets": [ - 4026, + 4030, { "distinct_on": [ - 4050, + 4054, "[tournament_brackets_select_column!]" ], "limit": [ @@ -43376,19 +43286,19 @@ export default { 38 ], "order_by": [ - 4048, + 4052, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4041 ] } ], "tournament_brackets_aggregate": [ - 4027, + 4031, { "distinct_on": [ - 4050, + 4054, "[tournament_brackets_select_column!]" ], "limit": [ @@ -43398,11 +43308,11 @@ export default { 38 ], "order_by": [ - 4048, + 4052, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4041 ] } ], @@ -43413,7 +43323,7 @@ export default { 1976 ], "winning_lineup_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -43421,10 +43331,10 @@ export default { }, "matches_aggregate": { "aggregate": [ - 2300 + 2304 ], "nodes": [ - 2296 + 2300 ], "__typename": [ 78 @@ -43432,7 +43342,7 @@ export default { }, "matches_aggregate_bool_exp": { "count": [ - 2299 + 2303 ], "__typename": [ 78 @@ -43440,13 +43350,13 @@ export default { }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2318 + 2322 ], "distinct": [ 3 ], "filter": [ - 2305 + 2309 ], "predicate": [ 39 @@ -43457,13 +43367,13 @@ export default { }, "matches_aggregate_fields": { "avg": [ - 2303 + 2307 ], "count": [ 38, { "columns": [ - 2318, + 2322, "[matches_select_column!]" ], "distinct": [ @@ -43472,31 +43382,31 @@ export default { } ], "max": [ - 2309 + 2313 ], "min": [ - 2311 + 2315 ], "stddev": [ - 2320 + 2324 ], "stddev_pop": [ - 2322 + 2326 ], "stddev_samp": [ - 2324 + 2328 ], "sum": [ - 2328 + 2332 ], "var_pop": [ - 2332 + 2336 ], "var_samp": [ - 2334 + 2338 ], "variance": [ - 2336 + 2340 ], "__typename": [ 78 @@ -43504,37 +43414,37 @@ export default { }, "matches_aggregate_order_by": { "avg": [ - 2304 + 2308 ], "count": [ - 2481 + 2485 ], "max": [ - 2310 + 2314 ], "min": [ - 2312 + 2316 ], "stddev": [ - 2321 + 2325 ], "stddev_pop": [ - 2323 + 2327 ], "stddev_samp": [ - 2325 + 2329 ], "sum": [ - 2329 + 2333 ], "var_pop": [ - 2333 + 2337 ], "var_samp": [ - 2335 + 2339 ], "variance": [ - 2337 + 2341 ], "__typename": [ 78 @@ -43542,10 +43452,10 @@ export default { }, "matches_arr_rel_insert_input": { "data": [ - 2308 + 2312 ], "on_conflict": [ - 2315 + 2319 ], "__typename": [ 78 @@ -43567,7 +43477,7 @@ export default { }, "matches_avg_order_by": { "organizer_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -43575,13 +43485,13 @@ export default { }, "matches_bool_exp": { "_and": [ - 2305 + 2309 ], "_not": [ - 2305 + 2309 ], "_or": [ - 2305 + 2309 ], "can_assign_server": [ 4 @@ -43608,13 +43518,13 @@ export default { 4 ], "cancels_at": [ - 4025 + 4029 ], "clutches": [ - 4600 + 4604 ], "clutches_aggregate": [ - 4593 + 4597 ], "connection_link": [ 80 @@ -43623,10 +43533,10 @@ export default { 80 ], "created_at": [ - 4025 + 4029 ], "current_match_map_id": [ - 4464 + 4468 ], "demos": [ 2030 @@ -43644,25 +43554,25 @@ export default { 797 ], "e_region": [ - 3530 + 3534 ], "effective_at": [ - 4025 + 4029 ], "elo_changes": [ - 4807 + 4811 ], "elo_changes_aggregate": [ - 4790 + 4794 ], "ended_at": [ - 4025 + 4029 ], "external_id": [ 80 ], "id": [ - 4464 + 4468 ], "invite_code": [ 80 @@ -43698,19 +43608,19 @@ export default { 1985 ], "lineup_1_id": [ - 4464 + 4468 ], "lineup_2": [ 1985 ], "lineup_2_id": [ - 4464 + 4468 ], "lineup_counts": [ 1351 ], "map_veto_picking_lineup_id": [ - 4464 + 4468 ], "map_veto_picks": [ 2117 @@ -43722,13 +43632,13 @@ export default { 80 ], "match_maps": [ - 2143 + 2145 ], "match_maps_aggregate": [ 2136 ], "match_options_id": [ - 4464 + 4468 ], "max_players_per_lineup": [ 39 @@ -43737,16 +43647,16 @@ export default { 39 ], "opening_duels": [ - 4728 + 4732 ], "opening_duels_aggregate": [ - 4721 + 4725 ], "options": [ - 2180 + 2184 ], "organizer": [ - 3443 + 3447 ], "organizer_steam_id": [ 182 @@ -43755,73 +43665,73 @@ export default { 80 ], "player_assists": [ - 2630 + 2634 ], "player_assists_aggregate": [ - 2621 + 2625 ], "player_damages": [ - 2691 + 2695 ], "player_damages_aggregate": [ - 2684 + 2688 ], "player_flashes": [ - 2802 + 2806 ], "player_flashes_aggregate": [ - 2793 + 2797 ], "player_kills": [ - 2847 + 2851 ], "player_kills_aggregate": [ - 2838 + 2842 ], "player_objectives": [ - 3046 + 3050 ], "player_objectives_aggregate": [ - 3039 + 3043 ], "player_unused_utilities": [ - 3333 + 3337 ], "player_unused_utilities_aggregate": [ - 3326 + 3330 ], "player_utility": [ - 3374 + 3378 ], "player_utility_aggregate": [ - 3367 + 3371 ], "region": [ 80 ], "region_veto_picking_lineup_id": [ - 4464 + 4468 ], "region_veto_picks": [ - 2211 + 2215 ], "region_veto_picks_aggregate": [ - 2206 + 2210 ], "requested_organizer": [ 4 ], "scheduled_at": [ - 4025 + 4029 ], "server": [ - 3564 + 3568 ], "server_error": [ 80 ], "server_id": [ - 4464 + 4468 ], "server_region": [ 80 @@ -43833,25 +43743,25 @@ export default { 80 ], "started_at": [ - 4025 + 4029 ], "status": [ 800 ], "streams": [ - 2240 + 2244 ], "streams_aggregate": [ - 2230 + 2234 ], "teams": [ - 3990 + 3994 ], "tournament_brackets": [ - 4037 + 4041 ], "tournament_brackets_aggregate": [ - 4028 + 4032 ], "tv_connection_string": [ 80 @@ -43860,7 +43770,7 @@ export default { 1985 ], "winning_lineup_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -43877,13 +43787,13 @@ export default { }, "matches_insert_input": { "cancels_at": [ - 4024 + 4028 ], "clutches": [ - 4597 + 4601 ], "created_at": [ - 4024 + 4028 ], "demos": [ 2027 @@ -43895,19 +43805,19 @@ export default { 805 ], "e_region": [ - 3536 + 3540 ], "elo_changes": [ - 4804 + 4808 ], "ended_at": [ - 4024 + 4028 ], "external_id": [ 78 ], "id": [ - 4462 + 4466 ], "label": [ 78 @@ -43916,31 +43826,31 @@ export default { 1994 ], "lineup_1_id": [ - 4462 + 4466 ], "lineup_2": [ 1994 ], "lineup_2_id": [ - 4462 + 4466 ], "map_veto_picks": [ 2116 ], "match_maps": [ - 2140 + 2142 ], "match_options_id": [ - 4462 + 4466 ], "opening_duels": [ - 4725 + 4729 ], "options": [ - 2187 + 2191 ], "organizer": [ - 3450 + 3454 ], "organizer_steam_id": [ 180 @@ -43949,64 +43859,64 @@ export default { 78 ], "player_assists": [ - 2627 + 2631 ], "player_damages": [ - 2688 + 2692 ], "player_flashes": [ - 2799 + 2803 ], "player_kills": [ - 2844 + 2848 ], "player_objectives": [ - 3043 + 3047 ], "player_unused_utilities": [ - 3330 + 3334 ], "player_utility": [ - 3371 + 3375 ], "region": [ 78 ], "region_veto_picks": [ - 2210 + 2214 ], "scheduled_at": [ - 4024 + 4028 ], "server": [ - 3573 + 3577 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4466 ], "source": [ 78 ], "started_at": [ - 4024 + 4028 ], "status": [ 799 ], "streams": [ - 2237 + 2241 ], "tournament_brackets": [ - 4034 + 4038 ], "winner": [ 1994 ], "winning_lineup_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -44014,7 +43924,7 @@ export default { }, "matches_max_fields": { "cancels_at": [ - 4024 + 4028 ], "connection_link": [ 78 @@ -44023,22 +43933,22 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "current_match_map_id": [ - 4462 + 4466 ], "effective_at": [ - 4024 + 4028 ], "ended_at": [ - 4024 + 4028 ], "external_id": [ 78 ], "id": [ - 4462 + 4466 ], "invite_code": [ 78 @@ -44047,19 +43957,19 @@ export default { 78 ], "lineup_1_id": [ - 4462 + 4466 ], "lineup_2_id": [ - 4462 + 4466 ], "map_veto_picking_lineup_id": [ - 4462 + 4466 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4462 + 4466 ], "max_players_per_lineup": [ 38 @@ -44077,16 +43987,16 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4462 + 4466 ], "scheduled_at": [ - 4024 + 4028 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4466 ], "server_region": [ 78 @@ -44098,13 +44008,13 @@ export default { 78 ], "started_at": [ - 4024 + 4028 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -44112,61 +44022,61 @@ export default { }, "matches_max_order_by": { "cancels_at": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "effective_at": [ - 2481 + 2485 ], "ended_at": [ - 2481 + 2485 ], "external_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "lineup_1_id": [ - 2481 + 2485 ], "lineup_2_id": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "organizer_steam_id": [ - 2481 + 2485 ], "password": [ - 2481 + 2485 ], "region": [ - 2481 + 2485 ], "scheduled_at": [ - 2481 + 2485 ], "server_error": [ - 2481 + 2485 ], "server_id": [ - 2481 + 2485 ], "source": [ - 2481 + 2485 ], "started_at": [ - 2481 + 2485 ], "winning_lineup_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -44174,7 +44084,7 @@ export default { }, "matches_min_fields": { "cancels_at": [ - 4024 + 4028 ], "connection_link": [ 78 @@ -44183,22 +44093,22 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "current_match_map_id": [ - 4462 + 4466 ], "effective_at": [ - 4024 + 4028 ], "ended_at": [ - 4024 + 4028 ], "external_id": [ 78 ], "id": [ - 4462 + 4466 ], "invite_code": [ 78 @@ -44207,19 +44117,19 @@ export default { 78 ], "lineup_1_id": [ - 4462 + 4466 ], "lineup_2_id": [ - 4462 + 4466 ], "map_veto_picking_lineup_id": [ - 4462 + 4466 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4462 + 4466 ], "max_players_per_lineup": [ 38 @@ -44237,16 +44147,16 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4462 + 4466 ], "scheduled_at": [ - 4024 + 4028 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4466 ], "server_region": [ 78 @@ -44258,13 +44168,13 @@ export default { 78 ], "started_at": [ - 4024 + 4028 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -44272,61 +44182,61 @@ export default { }, "matches_min_order_by": { "cancels_at": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "effective_at": [ - 2481 + 2485 ], "ended_at": [ - 2481 + 2485 ], "external_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "lineup_1_id": [ - 2481 + 2485 ], "lineup_2_id": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "organizer_steam_id": [ - 2481 + 2485 ], "password": [ - 2481 + 2485 ], "region": [ - 2481 + 2485 ], "scheduled_at": [ - 2481 + 2485 ], "server_error": [ - 2481 + 2485 ], "server_id": [ - 2481 + 2485 ], "source": [ - 2481 + 2485 ], "started_at": [ - 2481 + 2485 ], "winning_lineup_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -44337,7 +44247,7 @@ export default { 38 ], "returning": [ - 2296 + 2300 ], "__typename": [ 78 @@ -44345,10 +44255,10 @@ export default { }, "matches_obj_rel_insert_input": { "data": [ - 2308 + 2312 ], "on_conflict": [ - 2315 + 2319 ], "__typename": [ 78 @@ -44356,13 +44266,13 @@ export default { }, "matches_on_conflict": { "constraint": [ - 2306 + 2310 ], "update_columns": [ - 2330 + 2334 ], "where": [ - 2305 + 2309 ], "__typename": [ 78 @@ -44370,46 +44280,46 @@ export default { }, "matches_order_by": { "can_assign_server": [ - 2481 + 2485 ], "can_cancel": [ - 2481 + 2485 ], "can_check_in": [ - 2481 + 2485 ], "can_reassign_winner": [ - 2481 + 2485 ], "can_schedule": [ - 2481 + 2485 ], "can_start": [ - 2481 + 2485 ], "can_stream_live": [ - 2481 + 2485 ], "can_stream_tv": [ - 2481 + 2485 ], "cancels_at": [ - 2481 + 2485 ], "clutches_aggregate": [ - 4596 + 4600 ], "connection_link": [ - 2481 + 2485 ], "connection_string": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "current_match_map_id": [ - 2481 + 2485 ], "demos_aggregate": [ 2025 @@ -44421,181 +44331,181 @@ export default { 807 ], "e_region": [ - 3538 + 3542 ], "effective_at": [ - 2481 + 2485 ], "elo_changes_aggregate": [ - 4803 + 4807 ], "ended_at": [ - 2481 + 2485 ], "external_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "invite_code": [ - 2481 + 2485 ], "is_captain": [ - 2481 + 2485 ], "is_coach": [ - 2481 + 2485 ], "is_friend_in_match_lineup": [ - 2481 + 2485 ], "is_in_lineup": [ - 2481 + 2485 ], "is_match_server_available": [ - 2481 + 2485 ], "is_organizer": [ - 2481 + 2485 ], "is_server_online": [ - 2481 + 2485 ], "is_tournament_match": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "lineup_1": [ 1996 ], "lineup_1_id": [ - 2481 + 2485 ], "lineup_2": [ 1996 ], "lineup_2_id": [ - 2481 + 2485 ], "lineup_counts": [ - 2481 + 2485 ], "map_veto_picking_lineup_id": [ - 2481 + 2485 ], "map_veto_picks_aggregate": [ 2115 ], "map_veto_type": [ - 2481 + 2485 ], "match_maps_aggregate": [ - 2139 + 2141 ], "match_options_id": [ - 2481 + 2485 ], "max_players_per_lineup": [ - 2481 + 2485 ], "min_players_per_lineup": [ - 2481 + 2485 ], "opening_duels_aggregate": [ - 4724 + 4728 ], "options": [ - 2189 + 2193 ], "organizer": [ - 3452 + 3456 ], "organizer_steam_id": [ - 2481 + 2485 ], "password": [ - 2481 + 2485 ], "player_assists_aggregate": [ - 2626 + 2630 ], "player_damages_aggregate": [ - 2687 + 2691 ], "player_flashes_aggregate": [ - 2798 + 2802 ], "player_kills_aggregate": [ - 2843 + 2847 ], "player_objectives_aggregate": [ - 3042 + 3046 ], "player_unused_utilities_aggregate": [ - 3329 + 3333 ], "player_utility_aggregate": [ - 3370 + 3374 ], "region": [ - 2481 + 2485 ], "region_veto_picking_lineup_id": [ - 2481 + 2485 ], "region_veto_picks_aggregate": [ - 2209 + 2213 ], "requested_organizer": [ - 2481 + 2485 ], "scheduled_at": [ - 2481 + 2485 ], "server": [ - 3575 + 3579 ], "server_error": [ - 2481 + 2485 ], "server_id": [ - 2481 + 2485 ], "server_region": [ - 2481 + 2485 ], "server_type": [ - 2481 + 2485 ], "source": [ - 2481 + 2485 ], "started_at": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "streams_aggregate": [ - 2235 + 2239 ], "teams_aggregate": [ - 3986 + 3990 ], "tournament_brackets_aggregate": [ - 4033 + 4037 ], "tv_connection_string": [ - 2481 + 2485 ], "winner": [ 1996 ], "winning_lineup_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -44603,7 +44513,7 @@ export default { }, "matches_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -44612,31 +44522,31 @@ export default { "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 4024 + 4028 ], "created_at": [ - 4024 + 4028 ], "ended_at": [ - 4024 + 4028 ], "external_id": [ 78 ], "id": [ - 4462 + 4466 ], "label": [ 78 ], "lineup_1_id": [ - 4462 + 4466 ], "lineup_2_id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "organizer_steam_id": [ 180 @@ -44648,25 +44558,25 @@ export default { 78 ], "scheduled_at": [ - 4024 + 4028 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4466 ], "source": [ 78 ], "started_at": [ - 4024 + 4028 ], "status": [ 799 ], "winning_lineup_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -44688,7 +44598,7 @@ export default { }, "matches_stddev_order_by": { "organizer_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -44710,7 +44620,7 @@ export default { }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -44732,7 +44642,7 @@ export default { }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -44740,7 +44650,7 @@ export default { }, "matches_stream_cursor_input": { "initial_value": [ - 2327 + 2331 ], "ordering": [ 236 @@ -44751,34 +44661,34 @@ export default { }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4024 + 4028 ], "created_at": [ - 4024 + 4028 ], "effective_at": [ - 4024 + 4028 ], "ended_at": [ - 4024 + 4028 ], "external_id": [ 78 ], "id": [ - 4462 + 4466 ], "label": [ 78 ], "lineup_1_id": [ - 4462 + 4466 ], "lineup_2_id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "organizer_steam_id": [ 180 @@ -44790,25 +44700,25 @@ export default { 78 ], "scheduled_at": [ - 4024 + 4028 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4466 ], "source": [ 78 ], "started_at": [ - 4024 + 4028 ], "status": [ 799 ], "winning_lineup_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -44830,7 +44740,7 @@ export default { }, "matches_sum_order_by": { "organizer_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -44839,13 +44749,13 @@ export default { "matches_update_column": {}, "matches_updates": { "_inc": [ - 2307 + 2311 ], "_set": [ - 2319 + 2323 ], "where": [ - 2305 + 2309 ], "__typename": [ 78 @@ -44867,7 +44777,7 @@ export default { }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -44889,7 +44799,7 @@ export default { }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -44911,7 +44821,7 @@ export default { }, "matches_variance_order_by": { "organizer_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -44930,10 +44840,10 @@ export default { }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2340 + 2344 ], "nodes": [ - 2338 + 2342 ], "__typename": [ 78 @@ -44944,7 +44854,7 @@ export default { 38, { "columns": [ - 2350, + 2354, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -44953,10 +44863,10 @@ export default { } ], "max": [ - 2344 + 2348 ], "min": [ - 2345 + 2349 ], "__typename": [ 78 @@ -44964,13 +44874,13 @@ export default { }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2341 + 2345 ], "_not": [ - 2341 + 2345 ], "_or": [ - 2341 + 2345 ], "hash": [ 80 @@ -45021,7 +44931,7 @@ export default { 38 ], "returning": [ - 2338 + 2342 ], "__typename": [ 78 @@ -45029,13 +44939,13 @@ export default { }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2342 + 2346 ], "update_columns": [ - 2354 + 2358 ], "where": [ - 2341 + 2345 ], "__typename": [ 78 @@ -45043,10 +44953,10 @@ export default { }, "migration_hashes_hashes_order_by": { "hash": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "__typename": [ 78 @@ -45074,7 +44984,7 @@ export default { }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2353 + 2357 ], "ordering": [ 236 @@ -45097,10 +45007,10 @@ export default { "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2351 + 2355 ], "where": [ - 2341 + 2345 ], "__typename": [ 78 @@ -45114,7 +45024,7 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "custom_avatar_url": [ 78 @@ -45145,8 +45055,11 @@ export default { "faceit_skill_level": [ 38 ], + "faceit_synced_at": [ + 4028 + ], "faceit_updated_at": [ - 4024 + 4028 ], "faceit_url": [ 78 @@ -45172,10 +45085,10 @@ export default { } ], "last_read_news_at": [ - 4024 + 4028 ], "last_sign_in_at": [ - 4024 + 4028 ], "name": [ 78 @@ -45184,16 +45097,16 @@ export default { 3 ], "player": [ - 3439 + 3443 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4024 + 4028 ], "presence_updated_at": [ - 4024 + 4028 ], "profile_url": [ 78 @@ -45211,7 +45124,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -45228,10 +45141,10 @@ export default { }, "my_friends_aggregate": { "aggregate": [ - 2362 + 2366 ], "nodes": [ - 2356 + 2360 ], "__typename": [ 78 @@ -45239,13 +45152,13 @@ export default { }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2359 + 2363 ], "bool_or": [ - 2360 + 2364 ], "count": [ - 2361 + 2365 ], "__typename": [ 78 @@ -45253,13 +45166,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2382 + 2386 ], "distinct": [ 3 ], "filter": [ - 2368 + 2372 ], "predicate": [ 4 @@ -45270,13 +45183,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2383 + 2387 ], "distinct": [ 3 ], "filter": [ - 2368 + 2372 ], "predicate": [ 4 @@ -45287,13 +45200,13 @@ export default { }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2381 + 2385 ], "distinct": [ 3 ], "filter": [ - 2368 + 2372 ], "predicate": [ 39 @@ -45304,13 +45217,13 @@ export default { }, "my_friends_aggregate_fields": { "avg": [ - 2366 + 2370 ], "count": [ 38, { "columns": [ - 2381, + 2385, "[my_friends_select_column!]" ], "distinct": [ @@ -45319,31 +45232,31 @@ export default { } ], "max": [ - 2374 + 2378 ], "min": [ - 2376 + 2380 ], "stddev": [ - 2385 + 2389 ], "stddev_pop": [ - 2387 + 2391 ], "stddev_samp": [ - 2389 + 2393 ], "sum": [ - 2393 + 2397 ], "var_pop": [ - 2396 + 2400 ], "var_samp": [ - 2398 + 2402 ], "variance": [ - 2400 + 2404 ], "__typename": [ 78 @@ -45351,37 +45264,37 @@ export default { }, "my_friends_aggregate_order_by": { "avg": [ - 2367 + 2371 ], "count": [ - 2481 + 2485 ], "max": [ - 2375 + 2379 ], "min": [ - 2377 + 2381 ], "stddev": [ - 2386 + 2390 ], "stddev_pop": [ - 2388 + 2392 ], "stddev_samp": [ - 2390 + 2394 ], "sum": [ - 2394 + 2398 ], "var_pop": [ - 2397 + 2401 ], "var_samp": [ - 2399 + 2403 ], "variance": [ - 2401 + 2405 ], "__typename": [ 78 @@ -45400,7 +45313,7 @@ export default { }, "my_friends_arr_rel_insert_input": { "data": [ - 2373 + 2377 ], "__typename": [ 78 @@ -45440,31 +45353,31 @@ export default { }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 2481 + 2485 ], "faceit_elo": [ - 2481 + 2485 ], "faceit_skill_level": [ - 2481 + 2485 ], "friend_steam_id": [ - 2481 + 2485 ], "game_ban_count": [ - 2481 + 2485 ], "invited_by_steam_id": [ - 2481 + 2485 ], "premier_rank": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "vac_ban_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -45472,13 +45385,13 @@ export default { }, "my_friends_bool_exp": { "_and": [ - 2368 + 2372 ], "_not": [ - 2368 + 2372 ], "_or": [ - 2368 + 2372 ], "avatar_url": [ 80 @@ -45487,7 +45400,7 @@ export default { 80 ], "created_at": [ - 4025 + 4029 ], "custom_avatar_url": [ 80 @@ -45513,8 +45426,11 @@ export default { "faceit_skill_level": [ 39 ], + "faceit_synced_at": [ + 4029 + ], "faceit_updated_at": [ - 4025 + 4029 ], "faceit_url": [ 80 @@ -45535,10 +45451,10 @@ export default { 1354 ], "last_read_news_at": [ - 4025 + 4029 ], "last_sign_in_at": [ - 4025 + 4029 ], "name": [ 80 @@ -45547,16 +45463,16 @@ export default { 4 ], "player": [ - 3443 + 3447 ], "premier_rank": [ 39 ], "premier_rank_updated_at": [ - 4025 + 4029 ], "presence_updated_at": [ - 4025 + 4029 ], "profile_url": [ 80 @@ -45574,7 +45490,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4025 + 4029 ], "steam_id": [ 182 @@ -45662,7 +45578,7 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "custom_avatar_url": [ 78 @@ -45688,8 +45604,11 @@ export default { "faceit_skill_level": [ 38 ], + "faceit_synced_at": [ + 4028 + ], "faceit_updated_at": [ - 4024 + 4028 ], "faceit_url": [ 78 @@ -45710,10 +45629,10 @@ export default { 1352 ], "last_read_news_at": [ - 4024 + 4028 ], "last_sign_in_at": [ - 4024 + 4028 ], "name": [ 78 @@ -45722,16 +45641,16 @@ export default { 3 ], "player": [ - 3450 + 3454 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4024 + 4028 ], "presence_updated_at": [ - 4024 + 4028 ], "profile_url": [ 78 @@ -45749,7 +45668,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -45772,7 +45691,7 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "custom_avatar_url": [ 78 @@ -45795,8 +45714,11 @@ export default { "faceit_skill_level": [ 38 ], + "faceit_synced_at": [ + 4028 + ], "faceit_updated_at": [ - 4024 + 4028 ], "faceit_url": [ 78 @@ -45814,10 +45736,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4028 ], "last_sign_in_at": [ - 4024 + 4028 ], "name": [ 78 @@ -45826,10 +45748,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4028 ], "presence_updated_at": [ - 4024 + 4028 ], "profile_url": [ 78 @@ -45844,7 +45766,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -45858,91 +45780,94 @@ export default { }, "my_friends_max_order_by": { "avatar_url": [ - 2481 + 2485 ], "country": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "custom_avatar_url": [ - 2481 + 2485 ], "days_since_last_ban": [ - 2481 + 2485 ], "discord_id": [ - 2481 + 2485 ], "faceit_elo": [ - 2481 + 2485 ], "faceit_nickname": [ - 2481 + 2485 ], "faceit_player_id": [ - 2481 + 2485 ], "faceit_skill_level": [ - 2481 + 2485 + ], + "faceit_synced_at": [ + 2485 ], "faceit_updated_at": [ - 2481 + 2485 ], "faceit_url": [ - 2481 + 2485 ], "friend_steam_id": [ - 2481 + 2485 ], "game_ban_count": [ - 2481 + 2485 ], "invited_by_steam_id": [ - 2481 + 2485 ], "language": [ - 2481 + 2485 ], "last_read_news_at": [ - 2481 + 2485 ], "last_sign_in_at": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "premier_rank": [ - 2481 + 2485 ], "premier_rank_updated_at": [ - 2481 + 2485 ], "presence_updated_at": [ - 2481 + 2485 ], "profile_url": [ - 2481 + 2485 ], "role": [ - 2481 + 2485 ], "roster_image_url": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "steam_bans_checked_at": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "vac_ban_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -45956,7 +45881,7 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "custom_avatar_url": [ 78 @@ -45979,8 +45904,11 @@ export default { "faceit_skill_level": [ 38 ], + "faceit_synced_at": [ + 4028 + ], "faceit_updated_at": [ - 4024 + 4028 ], "faceit_url": [ 78 @@ -45998,10 +45926,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4028 ], "last_sign_in_at": [ - 4024 + 4028 ], "name": [ 78 @@ -46010,10 +45938,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4028 ], "presence_updated_at": [ - 4024 + 4028 ], "profile_url": [ 78 @@ -46028,7 +45956,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -46042,91 +45970,94 @@ export default { }, "my_friends_min_order_by": { "avatar_url": [ - 2481 + 2485 ], "country": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "custom_avatar_url": [ - 2481 + 2485 ], "days_since_last_ban": [ - 2481 + 2485 ], "discord_id": [ - 2481 + 2485 ], "faceit_elo": [ - 2481 + 2485 ], "faceit_nickname": [ - 2481 + 2485 ], "faceit_player_id": [ - 2481 + 2485 ], "faceit_skill_level": [ - 2481 + 2485 + ], + "faceit_synced_at": [ + 2485 ], "faceit_updated_at": [ - 2481 + 2485 ], "faceit_url": [ - 2481 + 2485 ], "friend_steam_id": [ - 2481 + 2485 ], "game_ban_count": [ - 2481 + 2485 ], "invited_by_steam_id": [ - 2481 + 2485 ], "language": [ - 2481 + 2485 ], "last_read_news_at": [ - 2481 + 2485 ], "last_sign_in_at": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "premier_rank": [ - 2481 + 2485 ], "premier_rank_updated_at": [ - 2481 + 2485 ], "presence_updated_at": [ - 2481 + 2485 ], "profile_url": [ - 2481 + 2485 ], "role": [ - 2481 + 2485 ], "roster_image_url": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "steam_bans_checked_at": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "vac_ban_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -46137,7 +46068,7 @@ export default { 38 ], "returning": [ - 2356 + 2360 ], "__typename": [ 78 @@ -46145,109 +46076,112 @@ export default { }, "my_friends_order_by": { "avatar_url": [ - 2481 + 2485 ], "country": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "custom_avatar_url": [ - 2481 + 2485 ], "days_since_last_ban": [ - 2481 + 2485 ], "discord_id": [ - 2481 + 2485 ], "elo": [ - 2481 + 2485 ], "faceit_elo": [ - 2481 + 2485 ], "faceit_nickname": [ - 2481 + 2485 ], "faceit_player_id": [ - 2481 + 2485 ], "faceit_skill_level": [ - 2481 + 2485 + ], + "faceit_synced_at": [ + 2485 ], "faceit_updated_at": [ - 2481 + 2485 ], "faceit_url": [ - 2481 + 2485 ], "friend_steam_id": [ - 2481 + 2485 ], "game_ban_count": [ - 2481 + 2485 ], "invited_by_steam_id": [ - 2481 + 2485 ], "language": [ - 2481 + 2485 ], "last_presence_state": [ - 2481 + 2485 ], "last_read_news_at": [ - 2481 + 2485 ], "last_sign_in_at": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "name_registered": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "premier_rank": [ - 2481 + 2485 ], "premier_rank_updated_at": [ - 2481 + 2485 ], "presence_updated_at": [ - 2481 + 2485 ], "profile_url": [ - 2481 + 2485 ], "role": [ - 2481 + 2485 ], "roster_image_url": [ - 2481 + 2485 ], "show_match_ready_modal": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "steam_bans_checked_at": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "vac_ban_count": [ - 2481 + 2485 ], "vac_banned": [ - 2481 + 2485 ], "__typename": [ 78 @@ -46275,7 +46209,7 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "custom_avatar_url": [ 78 @@ -46301,8 +46235,11 @@ export default { "faceit_skill_level": [ 38 ], + "faceit_synced_at": [ + 4028 + ], "faceit_updated_at": [ - 4024 + 4028 ], "faceit_url": [ 78 @@ -46323,10 +46260,10 @@ export default { 1352 ], "last_read_news_at": [ - 4024 + 4028 ], "last_sign_in_at": [ - 4024 + 4028 ], "name": [ 78 @@ -46338,10 +46275,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4028 ], "presence_updated_at": [ - 4024 + 4028 ], "profile_url": [ 78 @@ -46359,7 +46296,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -46408,31 +46345,31 @@ export default { }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 2481 + 2485 ], "faceit_elo": [ - 2481 + 2485 ], "faceit_skill_level": [ - 2481 + 2485 ], "friend_steam_id": [ - 2481 + 2485 ], "game_ban_count": [ - 2481 + 2485 ], "invited_by_steam_id": [ - 2481 + 2485 ], "premier_rank": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "vac_ban_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -46472,31 +46409,31 @@ export default { }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 2481 + 2485 ], "faceit_elo": [ - 2481 + 2485 ], "faceit_skill_level": [ - 2481 + 2485 ], "friend_steam_id": [ - 2481 + 2485 ], "game_ban_count": [ - 2481 + 2485 ], "invited_by_steam_id": [ - 2481 + 2485 ], "premier_rank": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "vac_ban_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -46536,31 +46473,31 @@ export default { }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 2481 + 2485 ], "faceit_elo": [ - 2481 + 2485 ], "faceit_skill_level": [ - 2481 + 2485 ], "friend_steam_id": [ - 2481 + 2485 ], "game_ban_count": [ - 2481 + 2485 ], "invited_by_steam_id": [ - 2481 + 2485 ], "premier_rank": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "vac_ban_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -46568,7 +46505,7 @@ export default { }, "my_friends_stream_cursor_input": { "initial_value": [ - 2392 + 2396 ], "ordering": [ 236 @@ -46585,7 +46522,7 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "custom_avatar_url": [ 78 @@ -46611,8 +46548,11 @@ export default { "faceit_skill_level": [ 38 ], + "faceit_synced_at": [ + 4028 + ], "faceit_updated_at": [ - 4024 + 4028 ], "faceit_url": [ 78 @@ -46633,10 +46573,10 @@ export default { 1352 ], "last_read_news_at": [ - 4024 + 4028 ], "last_sign_in_at": [ - 4024 + 4028 ], "name": [ 78 @@ -46648,10 +46588,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4028 ], "presence_updated_at": [ - 4024 + 4028 ], "profile_url": [ 78 @@ -46669,7 +46609,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -46718,31 +46658,31 @@ export default { }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 2481 + 2485 ], "faceit_elo": [ - 2481 + 2485 ], "faceit_skill_level": [ - 2481 + 2485 ], "friend_steam_id": [ - 2481 + 2485 ], "game_ban_count": [ - 2481 + 2485 ], "invited_by_steam_id": [ - 2481 + 2485 ], "premier_rank": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "vac_ban_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -46750,28 +46690,28 @@ export default { }, "my_friends_updates": { "_append": [ - 2364 + 2368 ], "_delete_at_path": [ - 2369 + 2373 ], "_delete_elem": [ - 2370 + 2374 ], "_delete_key": [ - 2371 + 2375 ], "_inc": [ - 2372 + 2376 ], "_prepend": [ - 2380 + 2384 ], "_set": [ - 2384 + 2388 ], "where": [ - 2368 + 2372 ], "__typename": [ 78 @@ -46811,31 +46751,31 @@ export default { }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 2481 + 2485 ], "faceit_elo": [ - 2481 + 2485 ], "faceit_skill_level": [ - 2481 + 2485 ], "friend_steam_id": [ - 2481 + 2485 ], "game_ban_count": [ - 2481 + 2485 ], "invited_by_steam_id": [ - 2481 + 2485 ], "premier_rank": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "vac_ban_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -46875,31 +46815,31 @@ export default { }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 2481 + 2485 ], "faceit_elo": [ - 2481 + 2485 ], "faceit_skill_level": [ - 2481 + 2485 ], "friend_steam_id": [ - 2481 + 2485 ], "game_ban_count": [ - 2481 + 2485 ], "invited_by_steam_id": [ - 2481 + 2485 ], "premier_rank": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "vac_ban_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -46939,31 +46879,31 @@ export default { }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 2481 + 2485 ], "faceit_elo": [ - 2481 + 2485 ], "faceit_skill_level": [ - 2481 + 2485 ], "friend_steam_id": [ - 2481 + 2485 ], "game_ban_count": [ - 2481 + 2485 ], "invited_by_steam_id": [ - 2481 + 2485 ], "premier_rank": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "vac_ban_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -46971,7 +46911,7 @@ export default { }, "news_articles": { "author": [ - 3439 + 3443 ], "author_steam_id": [ 180 @@ -46983,13 +46923,13 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "published_at": [ - 4024 + 4028 ], "slug": [ 78 @@ -47004,7 +46944,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "view_count": [ 180 @@ -47015,10 +46955,10 @@ export default { }, "news_articles_aggregate": { "aggregate": [ - 2404 + 2408 ], "nodes": [ - 2402 + 2406 ], "__typename": [ 78 @@ -47026,13 +46966,13 @@ export default { }, "news_articles_aggregate_fields": { "avg": [ - 2405 + 2409 ], "count": [ 38, { "columns": [ - 2416, + 2420, "[news_articles_select_column!]" ], "distinct": [ @@ -47041,31 +46981,31 @@ export default { } ], "max": [ - 2410 + 2414 ], "min": [ - 2411 + 2415 ], "stddev": [ - 2418 + 2422 ], "stddev_pop": [ - 2419 + 2423 ], "stddev_samp": [ - 2420 + 2424 ], "sum": [ - 2423 + 2427 ], "var_pop": [ - 2426 + 2430 ], "var_samp": [ - 2427 + 2431 ], "variance": [ - 2428 + 2432 ], "__typename": [ 78 @@ -47084,16 +47024,16 @@ export default { }, "news_articles_bool_exp": { "_and": [ - 2406 + 2410 ], "_not": [ - 2406 + 2410 ], "_or": [ - 2406 + 2410 ], "author": [ - 3443 + 3447 ], "author_steam_id": [ 182 @@ -47105,13 +47045,13 @@ export default { 80 ], "created_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "published_at": [ - 4025 + 4029 ], "slug": [ 80 @@ -47126,7 +47066,7 @@ export default { 80 ], "updated_at": [ - 4025 + 4029 ], "view_count": [ 182 @@ -47149,7 +47089,7 @@ export default { }, "news_articles_insert_input": { "author": [ - 3450 + 3454 ], "author_steam_id": [ 180 @@ -47161,13 +47101,13 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "published_at": [ - 4024 + 4028 ], "slug": [ 78 @@ -47182,7 +47122,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "view_count": [ 180 @@ -47202,13 +47142,13 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "published_at": [ - 4024 + 4028 ], "slug": [ 78 @@ -47223,7 +47163,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "view_count": [ 180 @@ -47243,13 +47183,13 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "published_at": [ - 4024 + 4028 ], "slug": [ 78 @@ -47264,7 +47204,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "view_count": [ 180 @@ -47278,7 +47218,7 @@ export default { 38 ], "returning": [ - 2402 + 2406 ], "__typename": [ 78 @@ -47286,13 +47226,13 @@ export default { }, "news_articles_on_conflict": { "constraint": [ - 2407 + 2411 ], "update_columns": [ - 2424 + 2428 ], "where": [ - 2406 + 2410 ], "__typename": [ 78 @@ -47300,43 +47240,43 @@ export default { }, "news_articles_order_by": { "author": [ - 3452 + 3456 ], "author_steam_id": [ - 2481 + 2485 ], "content_markdown": [ - 2481 + 2485 ], "cover_image_url": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "published_at": [ - 2481 + 2485 ], "slug": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "teaser": [ - 2481 + 2485 ], "title": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "view_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -47344,7 +47284,7 @@ export default { }, "news_articles_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -47362,13 +47302,13 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "published_at": [ - 4024 + 4028 ], "slug": [ 78 @@ -47383,7 +47323,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "view_count": [ 180 @@ -47427,7 +47367,7 @@ export default { }, "news_articles_stream_cursor_input": { "initial_value": [ - 2422 + 2426 ], "ordering": [ 236 @@ -47447,13 +47387,13 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "published_at": [ - 4024 + 4028 ], "slug": [ 78 @@ -47468,7 +47408,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "view_count": [ 180 @@ -47491,13 +47431,13 @@ export default { "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2408 + 2412 ], "_set": [ - 2417 + 2421 ], "where": [ - 2406 + 2410 ], "__typename": [ 78 @@ -47546,19 +47486,19 @@ export default { } ], "created_at": [ - 4024 + 4028 ], "deletable": [ 3 ], "deleted_at": [ - 4024 + 4028 ], "entity_id": [ 78 ], "id": [ - 4462 + 4466 ], "is_read": [ 3 @@ -47567,7 +47507,7 @@ export default { 78 ], "player": [ - 3439 + 3443 ], "role": [ 881 @@ -47587,10 +47527,10 @@ export default { }, "notifications_aggregate": { "aggregate": [ - 2435 + 2439 ], "nodes": [ - 2429 + 2433 ], "__typename": [ 78 @@ -47598,13 +47538,13 @@ export default { }, "notifications_aggregate_bool_exp": { "bool_and": [ - 2432 + 2436 ], "bool_or": [ - 2433 + 2437 ], "count": [ - 2434 + 2438 ], "__typename": [ 78 @@ -47612,13 +47552,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 2458 + 2462 ], "distinct": [ 3 ], "filter": [ - 2441 + 2445 ], "predicate": [ 4 @@ -47629,13 +47569,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 2459 + 2463 ], "distinct": [ 3 ], "filter": [ - 2441 + 2445 ], "predicate": [ 4 @@ -47646,13 +47586,13 @@ export default { }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 2457 + 2461 ], "distinct": [ 3 ], "filter": [ - 2441 + 2445 ], "predicate": [ 39 @@ -47663,13 +47603,13 @@ export default { }, "notifications_aggregate_fields": { "avg": [ - 2439 + 2443 ], "count": [ 38, { "columns": [ - 2457, + 2461, "[notifications_select_column!]" ], "distinct": [ @@ -47678,31 +47618,31 @@ export default { } ], "max": [ - 2448 + 2452 ], "min": [ - 2450 + 2454 ], "stddev": [ - 2461 + 2465 ], "stddev_pop": [ - 2463 + 2467 ], "stddev_samp": [ - 2465 + 2469 ], "sum": [ - 2469 + 2473 ], "var_pop": [ - 2473 + 2477 ], "var_samp": [ - 2475 + 2479 ], "variance": [ - 2477 + 2481 ], "__typename": [ 78 @@ -47710,37 +47650,37 @@ export default { }, "notifications_aggregate_order_by": { "avg": [ - 2440 + 2444 ], "count": [ - 2481 + 2485 ], "max": [ - 2449 + 2453 ], "min": [ - 2451 + 2455 ], "stddev": [ - 2462 + 2466 ], "stddev_pop": [ - 2464 + 2468 ], "stddev_samp": [ - 2466 + 2470 ], "sum": [ - 2470 + 2474 ], "var_pop": [ - 2474 + 2478 ], "var_samp": [ - 2476 + 2480 ], "variance": [ - 2478 + 2482 ], "__typename": [ 78 @@ -47756,10 +47696,10 @@ export default { }, "notifications_arr_rel_insert_input": { "data": [ - 2447 + 2451 ], "on_conflict": [ - 2453 + 2457 ], "__typename": [ 78 @@ -47775,7 +47715,7 @@ export default { }, "notifications_avg_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -47783,31 +47723,31 @@ export default { }, "notifications_bool_exp": { "_and": [ - 2441 + 2445 ], "_not": [ - 2441 + 2445 ], "_or": [ - 2441 + 2445 ], "actions": [ 1354 ], "created_at": [ - 4025 + 4029 ], "deletable": [ 4 ], "deleted_at": [ - 4025 + 4029 ], "entity_id": [ 80 ], "id": [ - 4464 + 4468 ], "is_read": [ 4 @@ -47816,7 +47756,7 @@ export default { 80 ], "player": [ - 3443 + 3447 ], "role": [ 882 @@ -47872,19 +47812,19 @@ export default { 1352 ], "created_at": [ - 4024 + 4028 ], "deletable": [ 3 ], "deleted_at": [ - 4024 + 4028 ], "entity_id": [ 78 ], "id": [ - 4462 + 4466 ], "is_read": [ 3 @@ -47893,7 +47833,7 @@ export default { 78 ], "player": [ - 3450 + 3454 ], "role": [ 881 @@ -47913,16 +47853,16 @@ export default { }, "notifications_max_fields": { "created_at": [ - 4024 + 4028 ], "deleted_at": [ - 4024 + 4028 ], "entity_id": [ 78 ], "id": [ - 4462 + 4466 ], "message": [ 78 @@ -47939,25 +47879,25 @@ export default { }, "notifications_max_order_by": { "created_at": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "entity_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "message": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "title": [ - 2481 + 2485 ], "__typename": [ 78 @@ -47965,16 +47905,16 @@ export default { }, "notifications_min_fields": { "created_at": [ - 4024 + 4028 ], "deleted_at": [ - 4024 + 4028 ], "entity_id": [ 78 ], "id": [ - 4462 + 4466 ], "message": [ 78 @@ -47991,25 +47931,25 @@ export default { }, "notifications_min_order_by": { "created_at": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "entity_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "message": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "title": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48020,7 +47960,7 @@ export default { 38 ], "returning": [ - 2429 + 2433 ], "__typename": [ 78 @@ -48028,13 +47968,13 @@ export default { }, "notifications_on_conflict": { "constraint": [ - 2442 + 2446 ], "update_columns": [ - 2471 + 2475 ], "where": [ - 2441 + 2445 ], "__typename": [ 78 @@ -48042,43 +47982,43 @@ export default { }, "notifications_order_by": { "actions": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "deletable": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "entity_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "is_read": [ - 2481 + 2485 ], "message": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "role": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "title": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48086,7 +48026,7 @@ export default { }, "notifications_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -48108,19 +48048,19 @@ export default { 1352 ], "created_at": [ - 4024 + 4028 ], "deletable": [ 3 ], "deleted_at": [ - 4024 + 4028 ], "entity_id": [ 78 ], "id": [ - 4462 + 4466 ], "is_read": [ 3 @@ -48154,7 +48094,7 @@ export default { }, "notifications_stddev_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48170,7 +48110,7 @@ export default { }, "notifications_stddev_pop_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48186,7 +48126,7 @@ export default { }, "notifications_stddev_samp_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48194,7 +48134,7 @@ export default { }, "notifications_stream_cursor_input": { "initial_value": [ - 2468 + 2472 ], "ordering": [ 236 @@ -48208,19 +48148,19 @@ export default { 1352 ], "created_at": [ - 4024 + 4028 ], "deletable": [ 3 ], "deleted_at": [ - 4024 + 4028 ], "entity_id": [ 78 ], "id": [ - 4462 + 4466 ], "is_read": [ 3 @@ -48254,7 +48194,7 @@ export default { }, "notifications_sum_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48263,28 +48203,28 @@ export default { "notifications_update_column": {}, "notifications_updates": { "_append": [ - 2437 + 2441 ], "_delete_at_path": [ - 2443 + 2447 ], "_delete_elem": [ - 2444 + 2448 ], "_delete_key": [ - 2445 + 2449 ], "_inc": [ - 2446 + 2450 ], "_prepend": [ - 2456 + 2460 ], "_set": [ - 2460 + 2464 ], "where": [ - 2441 + 2445 ], "__typename": [ 78 @@ -48300,7 +48240,7 @@ export default { }, "notifications_var_pop_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48316,7 +48256,7 @@ export default { }, "notifications_var_samp_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48332,7 +48272,7 @@ export default { }, "notifications_variance_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48341,31 +48281,31 @@ export default { "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 2479 + 2483 ], "_gt": [ - 2479 + 2483 ], "_gte": [ - 2479 + 2483 ], "_in": [ - 2479 + 2483 ], "_is_null": [ 3 ], "_lt": [ - 2479 + 2483 ], "_lte": [ - 2479 + 2483 ], "_neq": [ - 2479 + 2483 ], "_nin": [ - 2479 + 2483 ], "__typename": [ 78 @@ -48374,19 +48314,19 @@ export default { "order_by": {}, "pending_match_import_players": { "created_at": [ - 4024 + 4028 ], "pending_match_import": [ - 2523 + 2527 ], "player": [ - 3439 + 3443 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -48394,10 +48334,10 @@ export default { }, "pending_match_import_players_aggregate": { "aggregate": [ - 2486 + 2490 ], "nodes": [ - 2482 + 2486 ], "__typename": [ 78 @@ -48405,7 +48345,7 @@ export default { }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 2485 + 2489 ], "__typename": [ 78 @@ -48413,13 +48353,13 @@ export default { }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 2503 + 2507 ], "distinct": [ 3 ], "filter": [ - 2491 + 2495 ], "predicate": [ 39 @@ -48430,13 +48370,13 @@ export default { }, "pending_match_import_players_aggregate_fields": { "avg": [ - 2489 + 2493 ], "count": [ 38, { "columns": [ - 2503, + 2507, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -48445,31 +48385,31 @@ export default { } ], "max": [ - 2495 + 2499 ], "min": [ - 2497 + 2501 ], "stddev": [ - 2505 + 2509 ], "stddev_pop": [ - 2507 + 2511 ], "stddev_samp": [ - 2509 + 2513 ], "sum": [ - 2513 + 2517 ], "var_pop": [ - 2517 + 2521 ], "var_samp": [ - 2519 + 2523 ], "variance": [ - 2521 + 2525 ], "__typename": [ 78 @@ -48477,37 +48417,37 @@ export default { }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 2490 + 2494 ], "count": [ - 2481 + 2485 ], "max": [ - 2496 + 2500 ], "min": [ - 2498 + 2502 ], "stddev": [ - 2506 + 2510 ], "stddev_pop": [ - 2508 + 2512 ], "stddev_samp": [ - 2510 + 2514 ], "sum": [ - 2514 + 2518 ], "var_pop": [ - 2518 + 2522 ], "var_samp": [ - 2520 + 2524 ], "variance": [ - 2522 + 2526 ], "__typename": [ 78 @@ -48515,10 +48455,10 @@ export default { }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 2494 + 2498 ], "on_conflict": [ - 2500 + 2504 ], "__typename": [ 78 @@ -48537,10 +48477,10 @@ export default { }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 2481 + 2485 ], "valve_match_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48548,28 +48488,28 @@ export default { }, "pending_match_import_players_bool_exp": { "_and": [ - 2491 + 2495 ], "_not": [ - 2491 + 2495 ], "_or": [ - 2491 + 2495 ], "created_at": [ - 4025 + 4029 ], "pending_match_import": [ - 2527 + 2531 ], "player": [ - 3443 + 3447 ], "steam_id": [ 182 ], "valve_match_id": [ - 2480 + 2484 ], "__typename": [ 78 @@ -48581,7 +48521,7 @@ export default { 180 ], "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -48589,19 +48529,19 @@ export default { }, "pending_match_import_players_insert_input": { "created_at": [ - 4024 + 4028 ], "pending_match_import": [ - 2534 + 2538 ], "player": [ - 3450 + 3454 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -48609,13 +48549,13 @@ export default { }, "pending_match_import_players_max_fields": { "created_at": [ - 4024 + 4028 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -48623,13 +48563,13 @@ export default { }, "pending_match_import_players_max_order_by": { "created_at": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "valve_match_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48637,13 +48577,13 @@ export default { }, "pending_match_import_players_min_fields": { "created_at": [ - 4024 + 4028 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -48651,13 +48591,13 @@ export default { }, "pending_match_import_players_min_order_by": { "created_at": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "valve_match_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48668,7 +48608,7 @@ export default { 38 ], "returning": [ - 2482 + 2486 ], "__typename": [ 78 @@ -48676,13 +48616,13 @@ export default { }, "pending_match_import_players_on_conflict": { "constraint": [ - 2492 + 2496 ], "update_columns": [ - 2515 + 2519 ], "where": [ - 2491 + 2495 ], "__typename": [ 78 @@ -48690,19 +48630,19 @@ export default { }, "pending_match_import_players_order_by": { "created_at": [ - 2481 + 2485 ], "pending_match_import": [ - 2536 + 2540 ], "player": [ - 3452 + 3456 ], "steam_id": [ - 2481 + 2485 ], "valve_match_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48713,7 +48653,7 @@ export default { 180 ], "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -48722,13 +48662,13 @@ export default { "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4024 + 4028 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -48747,10 +48687,10 @@ export default { }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 2481 + 2485 ], "valve_match_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48769,10 +48709,10 @@ export default { }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 2481 + 2485 ], "valve_match_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48791,10 +48731,10 @@ export default { }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 2481 + 2485 ], "valve_match_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48802,7 +48742,7 @@ export default { }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 2512 + 2516 ], "ordering": [ 236 @@ -48813,13 +48753,13 @@ export default { }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -48830,7 +48770,7 @@ export default { 180 ], "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -48838,10 +48778,10 @@ export default { }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 2481 + 2485 ], "valve_match_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48850,13 +48790,13 @@ export default { "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 2493 + 2497 ], "_set": [ - 2504 + 2508 ], "where": [ - 2491 + 2495 ], "__typename": [ 78 @@ -48875,10 +48815,10 @@ export default { }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 2481 + 2485 ], "valve_match_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48897,10 +48837,10 @@ export default { }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 2481 + 2485 ], "valve_match_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48919,10 +48859,10 @@ export default { }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 2481 + 2485 ], "valve_match_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -48930,7 +48870,7 @@ export default { }, "pending_match_imports": { "created_at": [ - 4024 + 4028 ], "demo_url": [ 78 @@ -48942,13 +48882,13 @@ export default { 78 ], "match_start_time": [ - 4024 + 4028 ], "players": [ - 2482, + 2486, { "distinct_on": [ - 2503, + 2507, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -48958,19 +48898,19 @@ export default { 38 ], "order_by": [ - 2501, + 2505, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2495 ] } ], "players_aggregate": [ - 2483, + 2487, { "distinct_on": [ - 2503, + 2507, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -48980,11 +48920,11 @@ export default { 38 ], "order_by": [ - 2501, + 2505, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2495 ] } ], @@ -48995,10 +48935,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -49006,10 +48946,10 @@ export default { }, "pending_match_imports_aggregate": { "aggregate": [ - 2525 + 2529 ], "nodes": [ - 2523 + 2527 ], "__typename": [ 78 @@ -49017,13 +48957,13 @@ export default { }, "pending_match_imports_aggregate_fields": { "avg": [ - 2526 + 2530 ], "count": [ 38, { "columns": [ - 2538, + 2542, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -49032,31 +48972,31 @@ export default { } ], "max": [ - 2531 + 2535 ], "min": [ - 2532 + 2536 ], "stddev": [ - 2540 + 2544 ], "stddev_pop": [ - 2541 + 2545 ], "stddev_samp": [ - 2542 + 2546 ], "sum": [ - 2545 + 2549 ], "var_pop": [ - 2548 + 2552 ], "var_samp": [ - 2549 + 2553 ], "variance": [ - 2550 + 2554 ], "__typename": [ 78 @@ -49072,16 +49012,16 @@ export default { }, "pending_match_imports_bool_exp": { "_and": [ - 2527 + 2531 ], "_not": [ - 2527 + 2531 ], "_or": [ - 2527 + 2531 ], "created_at": [ - 4025 + 4029 ], "demo_url": [ 80 @@ -49093,13 +49033,13 @@ export default { 80 ], "match_start_time": [ - 4025 + 4029 ], "players": [ - 2491 + 2495 ], "players_aggregate": [ - 2484 + 2488 ], "share_code": [ 80 @@ -49108,10 +49048,10 @@ export default { 80 ], "updated_at": [ - 4025 + 4029 ], "valve_match_id": [ - 2480 + 2484 ], "__typename": [ 78 @@ -49120,7 +49060,7 @@ export default { "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -49128,7 +49068,7 @@ export default { }, "pending_match_imports_insert_input": { "created_at": [ - 4024 + 4028 ], "demo_url": [ 78 @@ -49140,10 +49080,10 @@ export default { 78 ], "match_start_time": [ - 4024 + 4028 ], "players": [ - 2488 + 2492 ], "share_code": [ 78 @@ -49152,10 +49092,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -49163,7 +49103,7 @@ export default { }, "pending_match_imports_max_fields": { "created_at": [ - 4024 + 4028 ], "demo_url": [ 78 @@ -49175,7 +49115,7 @@ export default { 78 ], "match_start_time": [ - 4024 + 4028 ], "share_code": [ 78 @@ -49184,10 +49124,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -49195,7 +49135,7 @@ export default { }, "pending_match_imports_min_fields": { "created_at": [ - 4024 + 4028 ], "demo_url": [ 78 @@ -49207,7 +49147,7 @@ export default { 78 ], "match_start_time": [ - 4024 + 4028 ], "share_code": [ 78 @@ -49216,10 +49156,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -49230,7 +49170,7 @@ export default { 38 ], "returning": [ - 2523 + 2527 ], "__typename": [ 78 @@ -49238,10 +49178,10 @@ export default { }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 2530 + 2534 ], "on_conflict": [ - 2535 + 2539 ], "__typename": [ 78 @@ -49249,13 +49189,13 @@ export default { }, "pending_match_imports_on_conflict": { "constraint": [ - 2528 + 2532 ], "update_columns": [ - 2546 + 2550 ], "where": [ - 2527 + 2531 ], "__typename": [ 78 @@ -49263,34 +49203,34 @@ export default { }, "pending_match_imports_order_by": { "created_at": [ - 2481 + 2485 ], "demo_url": [ - 2481 + 2485 ], "error": [ - 2481 + 2485 ], "map_name": [ - 2481 + 2485 ], "match_start_time": [ - 2481 + 2485 ], "players_aggregate": [ - 2487 + 2491 ], "share_code": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "valve_match_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -49298,7 +49238,7 @@ export default { }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -49307,7 +49247,7 @@ export default { "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4024 + 4028 ], "demo_url": [ 78 @@ -49319,7 +49259,7 @@ export default { 78 ], "match_start_time": [ - 4024 + 4028 ], "share_code": [ 78 @@ -49328,10 +49268,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -49363,7 +49303,7 @@ export default { }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 2544 + 2548 ], "ordering": [ 236 @@ -49374,7 +49314,7 @@ export default { }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "demo_url": [ 78 @@ -49386,7 +49326,7 @@ export default { 78 ], "match_start_time": [ - 4024 + 4028 ], "share_code": [ 78 @@ -49395,10 +49335,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -49406,7 +49346,7 @@ export default { }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 2479 + 2483 ], "__typename": [ 78 @@ -49415,13 +49355,13 @@ export default { "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 2529 + 2533 ], "_set": [ - 2539 + 2543 ], "where": [ - 2527 + 2531 ], "__typename": [ 78 @@ -49453,7 +49393,7 @@ export default { }, "player_aim_stats_demo": { "attacker": [ - 3439 + 3443 ], "attacker_steam_id": [ 180 @@ -49468,7 +49408,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "first_bullet_hits": [ 38 @@ -49486,16 +49426,16 @@ export default { 38 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "non_awp_hits": [ 38 @@ -49516,7 +49456,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -49527,10 +49467,10 @@ export default { }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 2553 + 2557 ], "nodes": [ - 2551 + 2555 ], "__typename": [ 78 @@ -49538,13 +49478,13 @@ export default { }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 2554 + 2558 ], "count": [ 38, { "columns": [ - 2565, + 2569, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -49553,31 +49493,31 @@ export default { } ], "max": [ - 2559 + 2563 ], "min": [ - 2560 + 2564 ], "stddev": [ - 2567 + 2571 ], "stddev_pop": [ - 2568 + 2572 ], "stddev_samp": [ - 2569 + 2573 ], "sum": [ - 2572 + 2576 ], "var_pop": [ - 2575 + 2579 ], "var_samp": [ - 2576 + 2580 ], "variance": [ - 2577 + 2581 ], "__typename": [ 78 @@ -49644,16 +49584,16 @@ export default { }, "player_aim_stats_demo_bool_exp": { "_and": [ - 2555 + 2559 ], "_not": [ - 2555 + 2559 ], "_or": [ - 2555 + 2559 ], "attacker": [ - 3443 + 3447 ], "attacker_steam_id": [ 182 @@ -49668,7 +49608,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2480 + 2484 ], "first_bullet_hits": [ 39 @@ -49686,16 +49626,16 @@ export default { 39 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "non_awp_hits": [ 39 @@ -49716,7 +49656,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2480 + 2484 ], "total_engagement_frames": [ 39 @@ -49740,7 +49680,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "first_bullet_hits": [ 38 @@ -49776,7 +49716,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -49787,7 +49727,7 @@ export default { }, "player_aim_stats_demo_insert_input": { "attacker": [ - 3450 + 3454 ], "attacker_steam_id": [ 180 @@ -49802,7 +49742,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "first_bullet_hits": [ 38 @@ -49820,16 +49760,16 @@ export default { 38 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_map": [ - 2152 + 2154 ], "match_map_id": [ - 4462 + 4466 ], "non_awp_hits": [ 38 @@ -49850,7 +49790,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -49873,7 +49813,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "first_bullet_hits": [ 38 @@ -49891,10 +49831,10 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "non_awp_hits": [ 38 @@ -49915,7 +49855,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -49938,7 +49878,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "first_bullet_hits": [ 38 @@ -49956,10 +49896,10 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "non_awp_hits": [ 38 @@ -49980,7 +49920,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -49994,7 +49934,7 @@ export default { 38 ], "returning": [ - 2551 + 2555 ], "__typename": [ 78 @@ -50002,13 +49942,13 @@ export default { }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 2556 + 2560 ], "update_columns": [ - 2573 + 2577 ], "where": [ - 2555 + 2559 ], "__typename": [ 78 @@ -50016,73 +49956,73 @@ export default { }, "player_aim_stats_demo_order_by": { "attacker": [ - 3452 + 3456 ], "attacker_steam_id": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "crosshair_angle_count": [ - 2481 + 2485 ], "crosshair_angle_sum_deg": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "time_to_damage_count": [ - 2481 + 2485 ], "time_to_damage_sum_s": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "__typename": [ 78 @@ -50093,7 +50033,7 @@ export default { 180 ], "match_map_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -50114,7 +50054,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "first_bullet_hits": [ 38 @@ -50132,10 +50072,10 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "non_awp_hits": [ 38 @@ -50156,7 +50096,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -50344,7 +50284,7 @@ export default { }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 2571 + 2575 ], "ordering": [ 236 @@ -50367,7 +50307,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "first_bullet_hits": [ 38 @@ -50385,10 +50325,10 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "non_awp_hits": [ 38 @@ -50409,7 +50349,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -50432,7 +50372,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "first_bullet_hits": [ 38 @@ -50468,7 +50408,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -50480,13 +50420,13 @@ export default { "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 2557 + 2561 ], "_set": [ - 2566 + 2570 ], "where": [ - 2555 + 2559 ], "__typename": [ 78 @@ -50683,19 +50623,19 @@ export default { 38 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3439 + 3443 ], "shots": [ 38 @@ -50715,10 +50655,10 @@ export default { }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 2582 + 2586 ], "nodes": [ - 2578 + 2582 ], "__typename": [ 78 @@ -50726,7 +50666,7 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 2581 + 2585 ], "__typename": [ 78 @@ -50734,13 +50674,13 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 2599 + 2603 ], "distinct": [ 3 ], "filter": [ - 2587 + 2591 ], "predicate": [ 39 @@ -50751,13 +50691,13 @@ export default { }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 2585 + 2589 ], "count": [ 38, { "columns": [ - 2599, + 2603, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -50766,31 +50706,31 @@ export default { } ], "max": [ - 2591 + 2595 ], "min": [ - 2593 + 2597 ], "stddev": [ - 2601 + 2605 ], "stddev_pop": [ - 2603 + 2607 ], "stddev_samp": [ - 2605 + 2609 ], "sum": [ - 2609 + 2613 ], "var_pop": [ - 2613 + 2617 ], "var_samp": [ - 2615 + 2619 ], "variance": [ - 2617 + 2621 ], "__typename": [ 78 @@ -50798,37 +50738,37 @@ export default { }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 2586 + 2590 ], "count": [ - 2481 + 2485 ], "max": [ - 2592 + 2596 ], "min": [ - 2594 + 2598 ], "stddev": [ - 2602 + 2606 ], "stddev_pop": [ - 2604 + 2608 ], "stddev_samp": [ - 2606 + 2610 ], "sum": [ - 2610 + 2614 ], "var_pop": [ - 2614 + 2618 ], "var_samp": [ - 2616 + 2620 ], "variance": [ - 2618 + 2622 ], "__typename": [ 78 @@ -50836,10 +50776,10 @@ export default { }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 2590 + 2594 ], "on_conflict": [ - 2596 + 2600 ], "__typename": [ 78 @@ -50873,25 +50813,25 @@ export default { }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -50899,13 +50839,13 @@ export default { }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 2587 + 2591 ], "_not": [ - 2587 + 2591 ], "_or": [ - 2587 + 2591 ], "first_bullet_hits": [ 39 @@ -50920,19 +50860,19 @@ export default { 39 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "player": [ - 3443 + 3447 ], "shots": [ 39 @@ -50991,19 +50931,19 @@ export default { 38 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_map": [ - 2152 + 2154 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3450 + 3454 ], "shots": [ 38 @@ -51035,10 +50975,10 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "shots": [ 38 @@ -51058,34 +50998,34 @@ export default { }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "weapon_class": [ - 2481 + 2485 ], "__typename": [ 78 @@ -51105,10 +51045,10 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "shots": [ 38 @@ -51128,34 +51068,34 @@ export default { }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "weapon_class": [ - 2481 + 2485 ], "__typename": [ 78 @@ -51166,7 +51106,7 @@ export default { 38 ], "returning": [ - 2578 + 2582 ], "__typename": [ 78 @@ -51174,13 +51114,13 @@ export default { }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 2588 + 2592 ], "update_columns": [ - 2611 + 2615 ], "where": [ - 2587 + 2591 ], "__typename": [ 78 @@ -51188,43 +51128,43 @@ export default { }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "weapon_class": [ - 2481 + 2485 ], "__typename": [ 78 @@ -51232,7 +51172,7 @@ export default { }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 4462 + 4466 ], "steam_id": [ 180 @@ -51259,10 +51199,10 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "shots": [ 38 @@ -51308,25 +51248,25 @@ export default { }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -51360,25 +51300,25 @@ export default { }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -51412,25 +51352,25 @@ export default { }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -51438,7 +51378,7 @@ export default { }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 2608 + 2612 ], "ordering": [ 236 @@ -51461,10 +51401,10 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "shots": [ 38 @@ -51510,25 +51450,25 @@ export default { }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -51537,13 +51477,13 @@ export default { "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 2589 + 2593 ], "_set": [ - 2600 + 2604 ], "where": [ - 2587 + 2591 ], "__typename": [ 78 @@ -51577,25 +51517,25 @@ export default { }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -51629,25 +51569,25 @@ export default { }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -51681,25 +51621,25 @@ export default { }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -51707,7 +51647,7 @@ export default { }, "player_assists": { "attacked_player": [ - 3439 + 3443 ], "attacked_steam_id": [ 180 @@ -51722,7 +51662,7 @@ export default { 78 ], "deleted_at": [ - 4024 + 4028 ], "flash": [ 3 @@ -51731,25 +51671,25 @@ export default { 3 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3439 + 3443 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -51757,10 +51697,10 @@ export default { }, "player_assists_aggregate": { "aggregate": [ - 2625 + 2629 ], "nodes": [ - 2619 + 2623 ], "__typename": [ 78 @@ -51768,13 +51708,13 @@ export default { }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 2622 + 2626 ], "bool_or": [ - 2623 + 2627 ], "count": [ - 2624 + 2628 ], "__typename": [ 78 @@ -51782,13 +51722,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 2643 + 2647 ], "distinct": [ 3 ], "filter": [ - 2630 + 2634 ], "predicate": [ 4 @@ -51799,13 +51739,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 2644 + 2648 ], "distinct": [ 3 ], "filter": [ - 2630 + 2634 ], "predicate": [ 4 @@ -51816,13 +51756,13 @@ export default { }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 2642 + 2646 ], "distinct": [ 3 ], "filter": [ - 2630 + 2634 ], "predicate": [ 39 @@ -51833,13 +51773,13 @@ export default { }, "player_assists_aggregate_fields": { "avg": [ - 2628 + 2632 ], "count": [ 38, { "columns": [ - 2642, + 2646, "[player_assists_select_column!]" ], "distinct": [ @@ -51848,31 +51788,31 @@ export default { } ], "max": [ - 2634 + 2638 ], "min": [ - 2636 + 2640 ], "stddev": [ - 2646 + 2650 ], "stddev_pop": [ - 2648 + 2652 ], "stddev_samp": [ - 2650 + 2654 ], "sum": [ - 2654 + 2658 ], "var_pop": [ - 2658 + 2662 ], "var_samp": [ - 2660 + 2664 ], "variance": [ - 2662 + 2666 ], "__typename": [ 78 @@ -51880,37 +51820,37 @@ export default { }, "player_assists_aggregate_order_by": { "avg": [ - 2629 + 2633 ], "count": [ - 2481 + 2485 ], "max": [ - 2635 + 2639 ], "min": [ - 2637 + 2641 ], "stddev": [ - 2647 + 2651 ], "stddev_pop": [ - 2649 + 2653 ], "stddev_samp": [ - 2651 + 2655 ], "sum": [ - 2655 + 2659 ], "var_pop": [ - 2659 + 2663 ], "var_samp": [ - 2661 + 2665 ], "variance": [ - 2663 + 2667 ], "__typename": [ 78 @@ -51918,10 +51858,10 @@ export default { }, "player_assists_arr_rel_insert_input": { "data": [ - 2633 + 2637 ], "on_conflict": [ - 2639 + 2643 ], "__typename": [ 78 @@ -51943,13 +51883,13 @@ export default { }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -51957,16 +51897,16 @@ export default { }, "player_assists_bool_exp": { "_and": [ - 2630 + 2634 ], "_not": [ - 2630 + 2634 ], "_or": [ - 2630 + 2634 ], "attacked_player": [ - 3443 + 3447 ], "attacked_steam_id": [ 182 @@ -51981,7 +51921,7 @@ export default { 80 ], "deleted_at": [ - 4025 + 4029 ], "flash": [ 4 @@ -51990,25 +51930,25 @@ export default { 4 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "player": [ - 3443 + 3447 ], "round": [ 39 ], "time": [ - 4025 + 4029 ], "__typename": [ 78 @@ -52031,7 +51971,7 @@ export default { }, "player_assists_insert_input": { "attacked_player": [ - 3450 + 3454 ], "attacked_steam_id": [ 180 @@ -52046,31 +51986,31 @@ export default { 78 ], "deleted_at": [ - 4024 + 4028 ], "flash": [ 3 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_map": [ - 2152 + 2154 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3450 + 3454 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -52090,19 +52030,19 @@ export default { 78 ], "deleted_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -52110,31 +52050,31 @@ export default { }, "player_assists_max_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacked_team": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "attacker_team": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "__typename": [ 78 @@ -52154,19 +52094,19 @@ export default { 78 ], "deleted_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -52174,31 +52114,31 @@ export default { }, "player_assists_min_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacked_team": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "attacker_team": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "__typename": [ 78 @@ -52209,7 +52149,7 @@ export default { 38 ], "returning": [ - 2619 + 2623 ], "__typename": [ 78 @@ -52217,13 +52157,13 @@ export default { }, "player_assists_on_conflict": { "constraint": [ - 2631 + 2635 ], "update_columns": [ - 2656 + 2660 ], "where": [ - 2630 + 2634 ], "__typename": [ 78 @@ -52231,49 +52171,49 @@ export default { }, "player_assists_order_by": { "attacked_player": [ - 3452 + 3456 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacked_team": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "attacker_team": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "flash": [ - 2481 + 2485 ], "is_team_assist": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "__typename": [ 78 @@ -52287,10 +52227,10 @@ export default { 180 ], "match_map_id": [ - 4462 + 4466 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -52313,22 +52253,22 @@ export default { 78 ], "deleted_at": [ - 4024 + 4028 ], "flash": [ 3 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -52350,13 +52290,13 @@ export default { }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -52378,13 +52318,13 @@ export default { }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -52406,13 +52346,13 @@ export default { }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -52420,7 +52360,7 @@ export default { }, "player_assists_stream_cursor_input": { "initial_value": [ - 2653 + 2657 ], "ordering": [ 236 @@ -52443,22 +52383,22 @@ export default { 78 ], "deleted_at": [ - 4024 + 4028 ], "flash": [ 3 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -52480,13 +52420,13 @@ export default { }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -52495,13 +52435,13 @@ export default { "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 2632 + 2636 ], "_set": [ - 2645 + 2649 ], "where": [ - 2630 + 2634 ], "__typename": [ 78 @@ -52523,13 +52463,13 @@ export default { }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -52551,13 +52491,13 @@ export default { }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -52579,13 +52519,13 @@ export default { }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -52593,28 +52533,28 @@ export default { }, "player_career_stats_v": { "accuracy": [ - 2479 + 2483 ], "accuracy_spotted": [ - 2479 + 2483 ], "counter_strafe_pct": [ - 2479 + 2483 ], "crosshair_deg": [ - 2479 + 2483 ], "enemy_blind_pr": [ - 2479 + 2483 ], "flash_assists_pr": [ - 2479 + 2483 ], "hs_pct": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "maps": [ 38 @@ -52629,16 +52569,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2483 ], "time_to_damage_s": [ - 2479 + 2483 ], "traded_death_pct": [ - 2479 + 2483 ], "util_efficiency": [ - 2479 + 2483 ], "__typename": [ 78 @@ -52646,10 +52586,10 @@ export default { }, "player_career_stats_v_aggregate": { "aggregate": [ - 2666 + 2670 ], "nodes": [ - 2664 + 2668 ], "__typename": [ 78 @@ -52657,13 +52597,13 @@ export default { }, "player_career_stats_v_aggregate_fields": { "avg": [ - 2667 + 2671 ], "count": [ 38, { "columns": [ - 2672, + 2676, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -52672,31 +52612,31 @@ export default { } ], "max": [ - 2669 + 2673 ], "min": [ - 2670 + 2674 ], "stddev": [ - 2673 + 2677 ], "stddev_pop": [ - 2674 + 2678 ], "stddev_samp": [ - 2675 + 2679 ], "sum": [ - 2678 + 2682 ], "var_pop": [ - 2679 + 2683 ], "var_samp": [ - 2680 + 2684 ], "variance": [ - 2681 + 2685 ], "__typename": [ 78 @@ -52757,37 +52697,37 @@ export default { }, "player_career_stats_v_bool_exp": { "_and": [ - 2668 + 2672 ], "_not": [ - 2668 + 2672 ], "_or": [ - 2668 + 2672 ], "accuracy": [ - 2480 + 2484 ], "accuracy_spotted": [ - 2480 + 2484 ], "counter_strafe_pct": [ - 2480 + 2484 ], "crosshair_deg": [ - 2480 + 2484 ], "enemy_blind_pr": [ - 2480 + 2484 ], "flash_assists_pr": [ - 2480 + 2484 ], "hs_pct": [ - 2480 + 2484 ], "kast_pct": [ - 2480 + 2484 ], "maps": [ 39 @@ -52802,16 +52742,16 @@ export default { 182 ], "survival_pct": [ - 2480 + 2484 ], "time_to_damage_s": [ - 2480 + 2484 ], "traded_death_pct": [ - 2480 + 2484 ], "util_efficiency": [ - 2480 + 2484 ], "__typename": [ 78 @@ -52819,28 +52759,28 @@ export default { }, "player_career_stats_v_max_fields": { "accuracy": [ - 2479 + 2483 ], "accuracy_spotted": [ - 2479 + 2483 ], "counter_strafe_pct": [ - 2479 + 2483 ], "crosshair_deg": [ - 2479 + 2483 ], "enemy_blind_pr": [ - 2479 + 2483 ], "flash_assists_pr": [ - 2479 + 2483 ], "hs_pct": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "maps": [ 38 @@ -52855,16 +52795,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2483 ], "time_to_damage_s": [ - 2479 + 2483 ], "traded_death_pct": [ - 2479 + 2483 ], "util_efficiency": [ - 2479 + 2483 ], "__typename": [ 78 @@ -52872,28 +52812,28 @@ export default { }, "player_career_stats_v_min_fields": { "accuracy": [ - 2479 + 2483 ], "accuracy_spotted": [ - 2479 + 2483 ], "counter_strafe_pct": [ - 2479 + 2483 ], "crosshair_deg": [ - 2479 + 2483 ], "enemy_blind_pr": [ - 2479 + 2483 ], "flash_assists_pr": [ - 2479 + 2483 ], "hs_pct": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "maps": [ 38 @@ -52908,16 +52848,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2483 ], "time_to_damage_s": [ - 2479 + 2483 ], "traded_death_pct": [ - 2479 + 2483 ], "util_efficiency": [ - 2479 + 2483 ], "__typename": [ 78 @@ -52925,52 +52865,52 @@ export default { }, "player_career_stats_v_order_by": { "accuracy": [ - 2481 + 2485 ], "accuracy_spotted": [ - 2481 + 2485 ], "counter_strafe_pct": [ - 2481 + 2485 ], "crosshair_deg": [ - 2481 + 2485 ], "enemy_blind_pr": [ - 2481 + 2485 ], "flash_assists_pr": [ - 2481 + 2485 ], "hs_pct": [ - 2481 + 2485 ], "kast_pct": [ - 2481 + 2485 ], "maps": [ - 2481 + 2485 ], "premier_rank": [ - 2481 + 2485 ], "rounds": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "survival_pct": [ - 2481 + 2485 ], "time_to_damage_s": [ - 2481 + 2485 ], "traded_death_pct": [ - 2481 + 2485 ], "util_efficiency": [ - 2481 + 2485 ], "__typename": [ 78 @@ -53138,7 +53078,7 @@ export default { }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 2677 + 2681 ], "ordering": [ 236 @@ -53149,28 +53089,28 @@ export default { }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 2479 + 2483 ], "accuracy_spotted": [ - 2479 + 2483 ], "counter_strafe_pct": [ - 2479 + 2483 ], "crosshair_deg": [ - 2479 + 2483 ], "enemy_blind_pr": [ - 2479 + 2483 ], "flash_assists_pr": [ - 2479 + 2483 ], "hs_pct": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "maps": [ 38 @@ -53185,16 +53125,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2483 ], "time_to_damage_s": [ - 2479 + 2483 ], "traded_death_pct": [ - 2479 + 2483 ], "util_efficiency": [ - 2479 + 2483 ], "__typename": [ 78 @@ -53202,28 +53142,28 @@ export default { }, "player_career_stats_v_sum_fields": { "accuracy": [ - 2479 + 2483 ], "accuracy_spotted": [ - 2479 + 2483 ], "counter_strafe_pct": [ - 2479 + 2483 ], "crosshair_deg": [ - 2479 + 2483 ], "enemy_blind_pr": [ - 2479 + 2483 ], "flash_assists_pr": [ - 2479 + 2483 ], "hs_pct": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "maps": [ 38 @@ -53238,16 +53178,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2483 ], "time_to_damage_s": [ - 2479 + 2483 ], "traded_death_pct": [ - 2479 + 2483 ], "util_efficiency": [ - 2479 + 2483 ], "__typename": [ 78 @@ -53423,7 +53363,7 @@ export default { 78 ], "attacked_player": [ - 3439 + 3443 ], "attacked_steam_id": [ 180 @@ -53450,7 +53390,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4028 ], "health": [ 38 @@ -53459,31 +53399,31 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3439 + 3443 ], "round": [ - 2479 + 2483 ], "team_damage": [ 3 ], "time": [ - 4024 + 4028 ], "with": [ 78 @@ -53494,10 +53434,10 @@ export default { }, "player_damages_aggregate": { "aggregate": [ - 2686 + 2690 ], "nodes": [ - 2682 + 2686 ], "__typename": [ 78 @@ -53505,7 +53445,7 @@ export default { }, "player_damages_aggregate_bool_exp": { "count": [ - 2685 + 2689 ], "__typename": [ 78 @@ -53513,13 +53453,13 @@ export default { }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 2703 + 2707 ], "distinct": [ 3 ], "filter": [ - 2691 + 2695 ], "predicate": [ 39 @@ -53530,13 +53470,13 @@ export default { }, "player_damages_aggregate_fields": { "avg": [ - 2689 + 2693 ], "count": [ 38, { "columns": [ - 2703, + 2707, "[player_damages_select_column!]" ], "distinct": [ @@ -53545,31 +53485,31 @@ export default { } ], "max": [ - 2695 + 2699 ], "min": [ - 2697 + 2701 ], "stddev": [ - 2705 + 2709 ], "stddev_pop": [ - 2707 + 2711 ], "stddev_samp": [ - 2709 + 2713 ], "sum": [ - 2713 + 2717 ], "var_pop": [ - 2717 + 2721 ], "var_samp": [ - 2719 + 2723 ], "variance": [ - 2721 + 2725 ], "__typename": [ 78 @@ -53577,37 +53517,37 @@ export default { }, "player_damages_aggregate_order_by": { "avg": [ - 2690 + 2694 ], "count": [ - 2481 + 2485 ], "max": [ - 2696 + 2700 ], "min": [ - 2698 + 2702 ], "stddev": [ - 2706 + 2710 ], "stddev_pop": [ - 2708 + 2712 ], "stddev_samp": [ - 2710 + 2714 ], "sum": [ - 2714 + 2718 ], "var_pop": [ - 2718 + 2722 ], "var_samp": [ - 2720 + 2724 ], "variance": [ - 2722 + 2726 ], "__typename": [ 78 @@ -53615,10 +53555,10 @@ export default { }, "player_damages_arr_rel_insert_input": { "data": [ - 2694 + 2698 ], "on_conflict": [ - 2700 + 2704 ], "__typename": [ 78 @@ -53652,25 +53592,25 @@ export default { }, "player_damages_avg_order_by": { "armor": [ - 2481 + 2485 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_armor": [ - 2481 + 2485 ], "health": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -53678,13 +53618,13 @@ export default { }, "player_damages_bool_exp": { "_and": [ - 2691 + 2695 ], "_not": [ - 2691 + 2695 ], "_or": [ - 2691 + 2695 ], "armor": [ 39 @@ -53696,7 +53636,7 @@ export default { 80 ], "attacked_player": [ - 3443 + 3447 ], "attacked_steam_id": [ 182 @@ -53723,7 +53663,7 @@ export default { 39 ], "deleted_at": [ - 4025 + 4029 ], "health": [ 39 @@ -53732,31 +53672,31 @@ export default { 80 ], "id": [ - 4464 + 4468 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "player": [ - 3443 + 3447 ], "round": [ - 2480 + 2484 ], "team_damage": [ 4 ], "time": [ - 4025 + 4029 ], "with": [ 80 @@ -53786,7 +53726,7 @@ export default { 38 ], "round": [ - 2479 + 2483 ], "__typename": [ 78 @@ -53803,7 +53743,7 @@ export default { 78 ], "attacked_player": [ - 3450 + 3454 ], "attacked_steam_id": [ 180 @@ -53830,7 +53770,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4028 ], "health": [ 38 @@ -53839,28 +53779,28 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_map": [ - 2152 + 2154 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3450 + 3454 ], "round": [ - 2479 + 2483 ], "time": [ - 4024 + 4028 ], "with": [ 78 @@ -53904,7 +53844,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4028 ], "health": [ 38 @@ -53913,19 +53853,19 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ - 2479 + 2483 ], "time": [ - 4024 + 4028 ], "with": [ 78 @@ -53936,64 +53876,64 @@ export default { }, "player_damages_max_order_by": { "armor": [ - 2481 + 2485 ], "attacked_location": [ - 2481 + 2485 ], "attacked_location_coordinates": [ - 2481 + 2485 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacked_team": [ - 2481 + 2485 ], "attacker_location": [ - 2481 + 2485 ], "attacker_location_coordinates": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "attacker_team": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_armor": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "health": [ - 2481 + 2485 ], "hitgroup": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "with": [ - 2481 + 2485 ], "__typename": [ 78 @@ -54034,7 +53974,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4028 ], "health": [ 38 @@ -54043,19 +53983,19 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ - 2479 + 2483 ], "time": [ - 4024 + 4028 ], "with": [ 78 @@ -54066,64 +54006,64 @@ export default { }, "player_damages_min_order_by": { "armor": [ - 2481 + 2485 ], "attacked_location": [ - 2481 + 2485 ], "attacked_location_coordinates": [ - 2481 + 2485 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacked_team": [ - 2481 + 2485 ], "attacker_location": [ - 2481 + 2485 ], "attacker_location_coordinates": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "attacker_team": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_armor": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "health": [ - 2481 + 2485 ], "hitgroup": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "with": [ - 2481 + 2485 ], "__typename": [ 78 @@ -54134,7 +54074,7 @@ export default { 38 ], "returning": [ - 2682 + 2686 ], "__typename": [ 78 @@ -54142,13 +54082,13 @@ export default { }, "player_damages_on_conflict": { "constraint": [ - 2692 + 2696 ], "update_columns": [ - 2715 + 2719 ], "where": [ - 2691 + 2695 ], "__typename": [ 78 @@ -54156,79 +54096,79 @@ export default { }, "player_damages_order_by": { "armor": [ - 2481 + 2485 ], "attacked_location": [ - 2481 + 2485 ], "attacked_location_coordinates": [ - 2481 + 2485 ], "attacked_player": [ - 3452 + 3456 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacked_team": [ - 2481 + 2485 ], "attacker_location": [ - 2481 + 2485 ], "attacker_location_coordinates": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "attacker_team": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_armor": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "health": [ - 2481 + 2485 ], "hitgroup": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "round": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "with": [ - 2481 + 2485 ], "__typename": [ 78 @@ -54236,13 +54176,13 @@ export default { }, "player_damages_pk_columns_input": { "id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -54284,7 +54224,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4028 ], "health": [ 38 @@ -54293,19 +54233,19 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ - 2479 + 2483 ], "time": [ - 4024 + 4028 ], "with": [ 78 @@ -54342,25 +54282,25 @@ export default { }, "player_damages_stddev_order_by": { "armor": [ - 2481 + 2485 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_armor": [ - 2481 + 2485 ], "health": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -54394,25 +54334,25 @@ export default { }, "player_damages_stddev_pop_order_by": { "armor": [ - 2481 + 2485 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_armor": [ - 2481 + 2485 ], "health": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -54446,25 +54386,25 @@ export default { }, "player_damages_stddev_samp_order_by": { "armor": [ - 2481 + 2485 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_armor": [ - 2481 + 2485 ], "health": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -54472,7 +54412,7 @@ export default { }, "player_damages_stream_cursor_input": { "initial_value": [ - 2712 + 2716 ], "ordering": [ 236 @@ -54516,7 +54456,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4028 ], "health": [ 38 @@ -54525,19 +54465,19 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ - 2479 + 2483 ], "time": [ - 4024 + 4028 ], "with": [ 78 @@ -54566,7 +54506,7 @@ export default { 38 ], "round": [ - 2479 + 2483 ], "__typename": [ 78 @@ -54574,25 +54514,25 @@ export default { }, "player_damages_sum_order_by": { "armor": [ - 2481 + 2485 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_armor": [ - 2481 + 2485 ], "health": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -54601,13 +54541,13 @@ export default { "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 2693 + 2697 ], "_set": [ - 2704 + 2708 ], "where": [ - 2691 + 2695 ], "__typename": [ 78 @@ -54641,25 +54581,25 @@ export default { }, "player_damages_var_pop_order_by": { "armor": [ - 2481 + 2485 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_armor": [ - 2481 + 2485 ], "health": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -54693,25 +54633,25 @@ export default { }, "player_damages_var_samp_order_by": { "armor": [ - 2481 + 2485 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_armor": [ - 2481 + 2485 ], "health": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -54745,25 +54685,25 @@ export default { }, "player_damages_variance_order_by": { "armor": [ - 2481 + 2485 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_armor": [ - 2481 + 2485 ], "health": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -54777,13 +54717,13 @@ export default { 38 ], "change": [ - 2479 + 2483 ], "created_at": [ - 4024 + 4028 ], "current": [ - 2479 + 2483 ], "damage": [ 38 @@ -54798,7 +54738,7 @@ export default { 1200 ], "impact": [ - 2479 + 2483 ], "k_factor": [ 38 @@ -54816,10 +54756,10 @@ export default { 38 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "opponent_team_elo_avg": [ 1200 @@ -54828,16 +54768,16 @@ export default { 1200 ], "player": [ - 3439 + 3443 ], "player_team_elo_avg": [ 1200 ], "season": [ - 3498 + 3502 ], "season_id": [ - 4462 + 4466 ], "series_multiplier": [ 38 @@ -54857,10 +54797,10 @@ export default { }, "player_elo_aggregate": { "aggregate": [ - 2725 + 2729 ], "nodes": [ - 2723 + 2727 ], "__typename": [ 78 @@ -54868,13 +54808,13 @@ export default { }, "player_elo_aggregate_fields": { "avg": [ - 2726 + 2730 ], "count": [ 38, { "columns": [ - 2737, + 2741, "[player_elo_select_column!]" ], "distinct": [ @@ -54883,31 +54823,31 @@ export default { } ], "max": [ - 2731 + 2735 ], "min": [ - 2732 + 2736 ], "stddev": [ - 2739 + 2743 ], "stddev_pop": [ - 2740 + 2744 ], "stddev_samp": [ - 2741 + 2745 ], "sum": [ - 2744 + 2748 ], "var_pop": [ - 2747 + 2751 ], "var_samp": [ - 2748 + 2752 ], "variance": [ - 2749 + 2753 ], "__typename": [ 78 @@ -54980,13 +54920,13 @@ export default { }, "player_elo_bool_exp": { "_and": [ - 2727 + 2731 ], "_not": [ - 2727 + 2731 ], "_or": [ - 2727 + 2731 ], "actual_score": [ 1201 @@ -54995,13 +54935,13 @@ export default { 39 ], "change": [ - 2480 + 2484 ], "created_at": [ - 4025 + 4029 ], "current": [ - 2480 + 2484 ], "damage": [ 39 @@ -55016,7 +54956,7 @@ export default { 1201 ], "impact": [ - 2480 + 2484 ], "k_factor": [ 39 @@ -55034,10 +54974,10 @@ export default { 39 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "opponent_team_elo_avg": [ 1201 @@ -55046,16 +54986,16 @@ export default { 1201 ], "player": [ - 3443 + 3447 ], "player_team_elo_avg": [ 1201 ], "season": [ - 3502 + 3506 ], "season_id": [ - 4464 + 4468 ], "series_multiplier": [ 39 @@ -55082,10 +55022,10 @@ export default { 38 ], "change": [ - 2479 + 2483 ], "current": [ - 2479 + 2483 ], "damage": [ 38 @@ -55100,7 +55040,7 @@ export default { 1200 ], "impact": [ - 2479 + 2483 ], "k_factor": [ 38 @@ -55147,13 +55087,13 @@ export default { 38 ], "change": [ - 2479 + 2483 ], "created_at": [ - 4024 + 4028 ], "current": [ - 2479 + 2483 ], "damage": [ 38 @@ -55168,7 +55108,7 @@ export default { 1200 ], "impact": [ - 2479 + 2483 ], "k_factor": [ 38 @@ -55186,10 +55126,10 @@ export default { 38 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "opponent_team_elo_avg": [ 1200 @@ -55198,16 +55138,16 @@ export default { 1200 ], "player": [ - 3450 + 3454 ], "player_team_elo_avg": [ 1200 ], "season": [ - 3509 + 3513 ], "season_id": [ - 4462 + 4466 ], "series_multiplier": [ 38 @@ -55233,13 +55173,13 @@ export default { 38 ], "change": [ - 2479 + 2483 ], "created_at": [ - 4024 + 4028 ], "current": [ - 2479 + 2483 ], "damage": [ 38 @@ -55254,7 +55194,7 @@ export default { 1200 ], "impact": [ - 2479 + 2483 ], "k_factor": [ 38 @@ -55272,7 +55212,7 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "opponent_team_elo_avg": [ 1200 @@ -55284,7 +55224,7 @@ export default { 1200 ], "season_id": [ - 4462 + 4466 ], "series_multiplier": [ 38 @@ -55307,13 +55247,13 @@ export default { 38 ], "change": [ - 2479 + 2483 ], "created_at": [ - 4024 + 4028 ], "current": [ - 2479 + 2483 ], "damage": [ 38 @@ -55328,7 +55268,7 @@ export default { 1200 ], "impact": [ - 2479 + 2483 ], "k_factor": [ 38 @@ -55346,7 +55286,7 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "opponent_team_elo_avg": [ 1200 @@ -55358,7 +55298,7 @@ export default { 1200 ], "season_id": [ - 4462 + 4466 ], "series_multiplier": [ 38 @@ -55378,7 +55318,7 @@ export default { 38 ], "returning": [ - 2723 + 2727 ], "__typename": [ 78 @@ -55386,13 +55326,13 @@ export default { }, "player_elo_on_conflict": { "constraint": [ - 2728 + 2732 ], "update_columns": [ - 2745 + 2749 ], "where": [ - 2727 + 2731 ], "__typename": [ 78 @@ -55400,85 +55340,85 @@ export default { }, "player_elo_order_by": { "actual_score": [ - 2481 + 2485 ], "assists": [ - 2481 + 2485 ], "change": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "current": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_percent": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "expected_score": [ - 2481 + 2485 ], "impact": [ - 2481 + 2485 ], "k_factor": [ - 2481 + 2485 ], "kda": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "map_losses": [ - 2481 + 2485 ], "map_wins": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "opponent_team_elo_avg": [ - 2481 + 2485 ], "performance_multiplier": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "player_team_elo_avg": [ - 2481 + 2485 ], "season": [ - 3511 + 3515 ], "season_id": [ - 2481 + 2485 ], "series_multiplier": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_avg_kda": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "__typename": [ 78 @@ -55486,7 +55426,7 @@ export default { }, "player_elo_pk_columns_input": { "match_id": [ - 4462 + 4466 ], "steam_id": [ 180 @@ -55507,13 +55447,13 @@ export default { 38 ], "change": [ - 2479 + 2483 ], "created_at": [ - 4024 + 4028 ], "current": [ - 2479 + 2483 ], "damage": [ 38 @@ -55528,7 +55468,7 @@ export default { 1200 ], "impact": [ - 2479 + 2483 ], "k_factor": [ 38 @@ -55546,7 +55486,7 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "opponent_team_elo_avg": [ 1200 @@ -55558,7 +55498,7 @@ export default { 1200 ], "season_id": [ - 4462 + 4466 ], "series_multiplier": [ 38 @@ -55773,7 +55713,7 @@ export default { }, "player_elo_stream_cursor_input": { "initial_value": [ - 2743 + 2747 ], "ordering": [ 236 @@ -55790,13 +55730,13 @@ export default { 38 ], "change": [ - 2479 + 2483 ], "created_at": [ - 4024 + 4028 ], "current": [ - 2479 + 2483 ], "damage": [ 38 @@ -55811,7 +55751,7 @@ export default { 1200 ], "impact": [ - 2479 + 2483 ], "k_factor": [ 38 @@ -55829,7 +55769,7 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "opponent_team_elo_avg": [ 1200 @@ -55841,7 +55781,7 @@ export default { 1200 ], "season_id": [ - 4462 + 4466 ], "series_multiplier": [ 38 @@ -55867,10 +55807,10 @@ export default { 38 ], "change": [ - 2479 + 2483 ], "current": [ - 2479 + 2483 ], "damage": [ 38 @@ -55885,7 +55825,7 @@ export default { 1200 ], "impact": [ - 2479 + 2483 ], "k_factor": [ 38 @@ -55927,13 +55867,13 @@ export default { "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 2729 + 2733 ], "_set": [ - 2738 + 2742 ], "where": [ - 2727 + 2731 ], "__typename": [ 78 @@ -56139,19 +56079,19 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "observed_at": [ - 4024 + 4028 ], "player": [ - 3439 + 3443 ], "previous_rank": [ 38 @@ -56168,10 +56108,10 @@ export default { }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 2754 + 2758 ], "nodes": [ - 2750 + 2754 ], "__typename": [ 78 @@ -56179,7 +56119,7 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 2753 + 2757 ], "__typename": [ 78 @@ -56187,13 +56127,13 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 2771 + 2775 ], "distinct": [ 3 ], "filter": [ - 2759 + 2763 ], "predicate": [ 39 @@ -56204,13 +56144,13 @@ export default { }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 2757 + 2761 ], "count": [ 38, { "columns": [ - 2771, + 2775, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -56219,31 +56159,31 @@ export default { } ], "max": [ - 2763 + 2767 ], "min": [ - 2765 + 2769 ], "stddev": [ - 2773 + 2777 ], "stddev_pop": [ - 2775 + 2779 ], "stddev_samp": [ - 2777 + 2781 ], "sum": [ - 2781 + 2785 ], "var_pop": [ - 2785 + 2789 ], "var_samp": [ - 2787 + 2791 ], "variance": [ - 2789 + 2793 ], "__typename": [ 78 @@ -56251,37 +56191,37 @@ export default { }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 2758 + 2762 ], "count": [ - 2481 + 2485 ], "max": [ - 2764 + 2768 ], "min": [ - 2766 + 2770 ], "stddev": [ - 2774 + 2778 ], "stddev_pop": [ - 2776 + 2780 ], "stddev_samp": [ - 2778 + 2782 ], "sum": [ - 2782 + 2786 ], "var_pop": [ - 2786 + 2790 ], "var_samp": [ - 2788 + 2792 ], "variance": [ - 2790 + 2794 ], "__typename": [ 78 @@ -56289,10 +56229,10 @@ export default { }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 2762 + 2766 ], "on_conflict": [ - 2768 + 2772 ], "__typename": [ 78 @@ -56317,16 +56257,16 @@ export default { }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 2481 + 2485 ], "previous_rank": [ - 2481 + 2485 ], "skill_level": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -56334,31 +56274,31 @@ export default { }, "player_faceit_rank_history_bool_exp": { "_and": [ - 2759 + 2763 ], "_not": [ - 2759 + 2763 ], "_or": [ - 2759 + 2763 ], "elo": [ 39 ], "id": [ - 4464 + 4468 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "observed_at": [ - 4025 + 4029 ], "player": [ - 3443 + 3447 ], "previous_rank": [ 39 @@ -56396,19 +56336,19 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "observed_at": [ - 4024 + 4028 ], "player": [ - 3450 + 3454 ], "previous_rank": [ 38 @@ -56428,13 +56368,13 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "observed_at": [ - 4024 + 4028 ], "previous_rank": [ 38 @@ -56451,25 +56391,25 @@ export default { }, "player_faceit_rank_history_max_order_by": { "elo": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "observed_at": [ - 2481 + 2485 ], "previous_rank": [ - 2481 + 2485 ], "skill_level": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -56480,13 +56420,13 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "observed_at": [ - 4024 + 4028 ], "previous_rank": [ 38 @@ -56503,25 +56443,25 @@ export default { }, "player_faceit_rank_history_min_order_by": { "elo": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "observed_at": [ - 2481 + 2485 ], "previous_rank": [ - 2481 + 2485 ], "skill_level": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -56532,7 +56472,7 @@ export default { 38 ], "returning": [ - 2750 + 2754 ], "__typename": [ 78 @@ -56540,13 +56480,13 @@ export default { }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 2760 + 2764 ], "update_columns": [ - 2783 + 2787 ], "where": [ - 2759 + 2763 ], "__typename": [ 78 @@ -56554,31 +56494,31 @@ export default { }, "player_faceit_rank_history_order_by": { "elo": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "observed_at": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "previous_rank": [ - 2481 + 2485 ], "skill_level": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -56586,7 +56526,7 @@ export default { }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -56598,13 +56538,13 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "observed_at": [ - 4024 + 4028 ], "previous_rank": [ 38 @@ -56638,16 +56578,16 @@ export default { }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 2481 + 2485 ], "previous_rank": [ - 2481 + 2485 ], "skill_level": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -56672,16 +56612,16 @@ export default { }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 2481 + 2485 ], "previous_rank": [ - 2481 + 2485 ], "skill_level": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -56706,16 +56646,16 @@ export default { }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 2481 + 2485 ], "previous_rank": [ - 2481 + 2485 ], "skill_level": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -56723,7 +56663,7 @@ export default { }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 2780 + 2784 ], "ordering": [ 236 @@ -56737,13 +56677,13 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "observed_at": [ - 4024 + 4028 ], "previous_rank": [ 38 @@ -56777,16 +56717,16 @@ export default { }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 2481 + 2485 ], "previous_rank": [ - 2481 + 2485 ], "skill_level": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -56795,13 +56735,13 @@ export default { "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 2761 + 2765 ], "_set": [ - 2772 + 2776 ], "where": [ - 2759 + 2763 ], "__typename": [ 78 @@ -56826,16 +56766,16 @@ export default { }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 2481 + 2485 ], "previous_rank": [ - 2481 + 2485 ], "skill_level": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -56860,16 +56800,16 @@ export default { }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 2481 + 2485 ], "previous_rank": [ - 2481 + 2485 ], "skill_level": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -56894,16 +56834,16 @@ export default { }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 2481 + 2485 ], "previous_rank": [ - 2481 + 2485 ], "skill_level": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -56917,25 +56857,25 @@ export default { 180 ], "blinded": [ - 3439 + 3443 ], "deleted_at": [ - 4024 + 4028 ], "duration": [ - 2479 + 2483 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 @@ -56944,10 +56884,10 @@ export default { 3 ], "thrown_by": [ - 3439 + 3443 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -56955,10 +56895,10 @@ export default { }, "player_flashes_aggregate": { "aggregate": [ - 2797 + 2801 ], "nodes": [ - 2791 + 2795 ], "__typename": [ 78 @@ -56966,13 +56906,13 @@ export default { }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 2794 + 2798 ], "bool_or": [ - 2795 + 2799 ], "count": [ - 2796 + 2800 ], "__typename": [ 78 @@ -56980,13 +56920,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 2815 + 2819 ], "distinct": [ 3 ], "filter": [ - 2802 + 2806 ], "predicate": [ 4 @@ -56997,13 +56937,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 2816 + 2820 ], "distinct": [ 3 ], "filter": [ - 2802 + 2806 ], "predicate": [ 4 @@ -57014,13 +56954,13 @@ export default { }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 2814 + 2818 ], "distinct": [ 3 ], "filter": [ - 2802 + 2806 ], "predicate": [ 39 @@ -57031,13 +56971,13 @@ export default { }, "player_flashes_aggregate_fields": { "avg": [ - 2800 + 2804 ], "count": [ 38, { "columns": [ - 2814, + 2818, "[player_flashes_select_column!]" ], "distinct": [ @@ -57046,31 +56986,31 @@ export default { } ], "max": [ - 2806 + 2810 ], "min": [ - 2808 + 2812 ], "stddev": [ - 2818 + 2822 ], "stddev_pop": [ - 2820 + 2824 ], "stddev_samp": [ - 2822 + 2826 ], "sum": [ - 2826 + 2830 ], "var_pop": [ - 2830 + 2834 ], "var_samp": [ - 2832 + 2836 ], "variance": [ - 2834 + 2838 ], "__typename": [ 78 @@ -57078,37 +57018,37 @@ export default { }, "player_flashes_aggregate_order_by": { "avg": [ - 2801 + 2805 ], "count": [ - 2481 + 2485 ], "max": [ - 2807 + 2811 ], "min": [ - 2809 + 2813 ], "stddev": [ - 2819 + 2823 ], "stddev_pop": [ - 2821 + 2825 ], "stddev_samp": [ - 2823 + 2827 ], "sum": [ - 2827 + 2831 ], "var_pop": [ - 2831 + 2835 ], "var_samp": [ - 2833 + 2837 ], "variance": [ - 2835 + 2839 ], "__typename": [ 78 @@ -57116,10 +57056,10 @@ export default { }, "player_flashes_arr_rel_insert_input": { "data": [ - 2805 + 2809 ], "on_conflict": [ - 2811 + 2815 ], "__typename": [ 78 @@ -57144,16 +57084,16 @@ export default { }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "duration": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -57161,13 +57101,13 @@ export default { }, "player_flashes_bool_exp": { "_and": [ - 2802 + 2806 ], "_not": [ - 2802 + 2806 ], "_or": [ - 2802 + 2806 ], "attacked_steam_id": [ 182 @@ -57176,25 +57116,25 @@ export default { 182 ], "blinded": [ - 3443 + 3447 ], "deleted_at": [ - 4025 + 4029 ], "duration": [ - 2480 + 2484 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "round": [ 39 @@ -57203,10 +57143,10 @@ export default { 4 ], "thrown_by": [ - 3443 + 3447 ], "time": [ - 4025 + 4029 ], "__typename": [ 78 @@ -57221,7 +57161,7 @@ export default { 180 ], "duration": [ - 2479 + 2483 ], "round": [ 38 @@ -57238,25 +57178,25 @@ export default { 180 ], "blinded": [ - 3450 + 3454 ], "deleted_at": [ - 4024 + 4028 ], "duration": [ - 2479 + 2483 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_map": [ - 2152 + 2154 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 @@ -57265,10 +57205,10 @@ export default { 3 ], "thrown_by": [ - 3450 + 3454 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -57282,22 +57222,22 @@ export default { 180 ], "deleted_at": [ - 4024 + 4028 ], "duration": [ - 2479 + 2483 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -57305,28 +57245,28 @@ export default { }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "duration": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "__typename": [ 78 @@ -57340,22 +57280,22 @@ export default { 180 ], "deleted_at": [ - 4024 + 4028 ], "duration": [ - 2479 + 2483 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -57363,28 +57303,28 @@ export default { }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "duration": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "__typename": [ 78 @@ -57395,7 +57335,7 @@ export default { 38 ], "returning": [ - 2791 + 2795 ], "__typename": [ 78 @@ -57403,13 +57343,13 @@ export default { }, "player_flashes_on_conflict": { "constraint": [ - 2803 + 2807 ], "update_columns": [ - 2828 + 2832 ], "where": [ - 2802 + 2806 ], "__typename": [ 78 @@ -57417,43 +57357,43 @@ export default { }, "player_flashes_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "blinded": [ - 3452 + 3456 ], "deleted_at": [ - 2481 + 2485 ], "duration": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "team_flash": [ - 2481 + 2485 ], "thrown_by": [ - 3452 + 3456 ], "time": [ - 2481 + 2485 ], "__typename": [ 78 @@ -57467,10 +57407,10 @@ export default { 180 ], "match_map_id": [ - 4462 + 4466 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -57487,16 +57427,16 @@ export default { 180 ], "deleted_at": [ - 4024 + 4028 ], "duration": [ - 2479 + 2483 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 @@ -57505,7 +57445,7 @@ export default { 3 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -57530,16 +57470,16 @@ export default { }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "duration": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -57564,16 +57504,16 @@ export default { }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "duration": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -57598,16 +57538,16 @@ export default { }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "duration": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -57615,7 +57555,7 @@ export default { }, "player_flashes_stream_cursor_input": { "initial_value": [ - 2825 + 2829 ], "ordering": [ 236 @@ -57632,16 +57572,16 @@ export default { 180 ], "deleted_at": [ - 4024 + 4028 ], "duration": [ - 2479 + 2483 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 @@ -57650,7 +57590,7 @@ export default { 3 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -57664,7 +57604,7 @@ export default { 180 ], "duration": [ - 2479 + 2483 ], "round": [ 38 @@ -57675,16 +57615,16 @@ export default { }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "duration": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -57693,13 +57633,13 @@ export default { "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 2804 + 2808 ], "_set": [ - 2817 + 2821 ], "where": [ - 2802 + 2806 ], "__typename": [ 78 @@ -57724,16 +57664,16 @@ export default { }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "duration": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -57758,16 +57698,16 @@ export default { }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "duration": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -57792,16 +57732,16 @@ export default { }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "duration": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -57818,7 +57758,7 @@ export default { 78 ], "attacked_player": [ - 3439 + 3443 ], "attacked_steam_id": [ 180 @@ -57842,7 +57782,7 @@ export default { 3 ], "deleted_at": [ - 4024 + 4028 ], "headshot": [ 3 @@ -57857,22 +57797,22 @@ export default { 3 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "no_scope": [ 3 ], "player": [ - 3439 + 3443 ], "round": [ 38 @@ -57887,7 +57827,7 @@ export default { 3 ], "time": [ - 4024 + 4028 ], "with": [ 78 @@ -57898,10 +57838,10 @@ export default { }, "player_kills_aggregate": { "aggregate": [ - 2842 + 2846 ], "nodes": [ - 2836 + 2840 ], "__typename": [ 78 @@ -57909,13 +57849,13 @@ export default { }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 2839 + 2843 ], "bool_or": [ - 2840 + 2844 ], "count": [ - 2841 + 2845 ], "__typename": [ 78 @@ -57923,13 +57863,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 2901 + 2905 ], "distinct": [ 3 ], "filter": [ - 2847 + 2851 ], "predicate": [ 4 @@ -57940,13 +57880,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 2902 + 2906 ], "distinct": [ 3 ], "filter": [ - 2847 + 2851 ], "predicate": [ 4 @@ -57957,13 +57897,13 @@ export default { }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 2900 + 2904 ], "distinct": [ 3 ], "filter": [ - 2847 + 2851 ], "predicate": [ 39 @@ -57974,13 +57914,13 @@ export default { }, "player_kills_aggregate_fields": { "avg": [ - 2845 + 2849 ], "count": [ 38, { "columns": [ - 2900, + 2904, "[player_kills_select_column!]" ], "distinct": [ @@ -57989,31 +57929,31 @@ export default { } ], "max": [ - 2892 + 2896 ], "min": [ - 2894 + 2898 ], "stddev": [ - 2904 + 2908 ], "stddev_pop": [ - 2906 + 2910 ], "stddev_samp": [ - 2908 + 2912 ], "sum": [ - 2912 + 2916 ], "var_pop": [ - 2916 + 2920 ], "var_samp": [ - 2918 + 2922 ], "variance": [ - 2920 + 2924 ], "__typename": [ 78 @@ -58021,37 +57961,37 @@ export default { }, "player_kills_aggregate_order_by": { "avg": [ - 2846 + 2850 ], "count": [ - 2481 + 2485 ], "max": [ - 2893 + 2897 ], "min": [ - 2895 + 2899 ], "stddev": [ - 2905 + 2909 ], "stddev_pop": [ - 2907 + 2911 ], "stddev_samp": [ - 2909 + 2913 ], "sum": [ - 2913 + 2917 ], "var_pop": [ - 2917 + 2921 ], "var_samp": [ - 2919 + 2923 ], "variance": [ - 2921 + 2925 ], "__typename": [ 78 @@ -58059,10 +57999,10 @@ export default { }, "player_kills_arr_rel_insert_input": { "data": [ - 2891 + 2895 ], "on_conflict": [ - 2897 + 2901 ], "__typename": [ 78 @@ -58084,13 +58024,13 @@ export default { }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -58098,13 +58038,13 @@ export default { }, "player_kills_bool_exp": { "_and": [ - 2847 + 2851 ], "_not": [ - 2847 + 2851 ], "_or": [ - 2847 + 2851 ], "assisted": [ 4 @@ -58116,7 +58056,7 @@ export default { 80 ], "attacked_player": [ - 3443 + 3447 ], "attacked_steam_id": [ 182 @@ -58140,7 +58080,7 @@ export default { 4 ], "deleted_at": [ - 4025 + 4029 ], "headshot": [ 4 @@ -58155,22 +58095,22 @@ export default { 4 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "no_scope": [ 4 ], "player": [ - 3443 + 3447 ], "round": [ 39 @@ -58185,7 +58125,7 @@ export default { 4 ], "time": [ - 4025 + 4029 ], "with": [ 80 @@ -58199,7 +58139,7 @@ export default { 180 ], "player": [ - 3439 + 3443 ], "player_steam_id": [ 180 @@ -58213,10 +58153,10 @@ export default { }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 2852 + 2856 ], "nodes": [ - 2848 + 2852 ], "__typename": [ 78 @@ -58224,7 +58164,7 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 2851 + 2855 ], "__typename": [ 78 @@ -58232,13 +58172,13 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 2869 + 2873 ], "distinct": [ 3 ], "filter": [ - 2857 + 2861 ], "predicate": [ 39 @@ -58249,13 +58189,13 @@ export default { }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 2855 + 2859 ], "count": [ 38, { "columns": [ - 2869, + 2873, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -58264,31 +58204,31 @@ export default { } ], "max": [ - 2861 + 2865 ], "min": [ - 2863 + 2867 ], "stddev": [ - 2871 + 2875 ], "stddev_pop": [ - 2873 + 2877 ], "stddev_samp": [ - 2875 + 2879 ], "sum": [ - 2879 + 2883 ], "var_pop": [ - 2883 + 2887 ], "var_samp": [ - 2885 + 2889 ], "variance": [ - 2887 + 2891 ], "__typename": [ 78 @@ -58296,37 +58236,37 @@ export default { }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 2856 + 2860 ], "count": [ - 2481 + 2485 ], "max": [ - 2862 + 2866 ], "min": [ - 2864 + 2868 ], "stddev": [ - 2872 + 2876 ], "stddev_pop": [ - 2874 + 2878 ], "stddev_samp": [ - 2876 + 2880 ], "sum": [ - 2880 + 2884 ], "var_pop": [ - 2884 + 2888 ], "var_samp": [ - 2886 + 2890 ], "variance": [ - 2888 + 2892 ], "__typename": [ 78 @@ -58334,10 +58274,10 @@ export default { }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 2860 + 2864 ], "on_conflict": [ - 2866 + 2870 ], "__typename": [ 78 @@ -58356,10 +58296,10 @@ export default { }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -58367,19 +58307,19 @@ export default { }, "player_kills_by_weapon_bool_exp": { "_and": [ - 2857 + 2861 ], "_not": [ - 2857 + 2861 ], "_or": [ - 2857 + 2861 ], "kill_count": [ 182 ], "player": [ - 3443 + 3447 ], "player_steam_id": [ 182 @@ -58408,7 +58348,7 @@ export default { 180 ], "player": [ - 3450 + 3454 ], "player_steam_id": [ 180 @@ -58436,13 +58376,13 @@ export default { }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "with": [ - 2481 + 2485 ], "__typename": [ 78 @@ -58464,13 +58404,13 @@ export default { }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "with": [ - 2481 + 2485 ], "__typename": [ 78 @@ -58481,7 +58421,7 @@ export default { 38 ], "returning": [ - 2848 + 2852 ], "__typename": [ 78 @@ -58489,13 +58429,13 @@ export default { }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 2858 + 2862 ], "update_columns": [ - 2881 + 2885 ], "where": [ - 2857 + 2861 ], "__typename": [ 78 @@ -58503,16 +58443,16 @@ export default { }, "player_kills_by_weapon_order_by": { "kill_count": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "player_steam_id": [ - 2481 + 2485 ], "with": [ - 2481 + 2485 ], "__typename": [ 78 @@ -58557,10 +58497,10 @@ export default { }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -58579,10 +58519,10 @@ export default { }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -58601,10 +58541,10 @@ export default { }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -58612,7 +58552,7 @@ export default { }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 2878 + 2882 ], "ordering": [ 236 @@ -58648,10 +58588,10 @@ export default { }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -58660,13 +58600,13 @@ export default { "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 2859 + 2863 ], "_set": [ - 2870 + 2874 ], "where": [ - 2857 + 2861 ], "__typename": [ 78 @@ -58685,10 +58625,10 @@ export default { }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -58707,10 +58647,10 @@ export default { }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -58729,10 +58669,10 @@ export default { }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -58764,7 +58704,7 @@ export default { 78 ], "attacked_player": [ - 3450 + 3454 ], "attacked_steam_id": [ 180 @@ -58788,7 +58728,7 @@ export default { 3 ], "deleted_at": [ - 4024 + 4028 ], "headshot": [ 3 @@ -58800,22 +58740,22 @@ export default { 3 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_map": [ - 2152 + 2154 ], "match_map_id": [ - 4462 + 4466 ], "no_scope": [ 3 ], "player": [ - 3450 + 3454 ], "round": [ 38 @@ -58827,7 +58767,7 @@ export default { 3 ], "time": [ - 4024 + 4028 ], "with": [ 78 @@ -58862,22 +58802,22 @@ export default { 78 ], "deleted_at": [ - 4024 + 4028 ], "hitgroup": [ 78 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "with": [ 78 @@ -58888,49 +58828,49 @@ export default { }, "player_kills_max_order_by": { "attacked_location": [ - 2481 + 2485 ], "attacked_location_coordinates": [ - 2481 + 2485 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacked_team": [ - 2481 + 2485 ], "attacker_location": [ - 2481 + 2485 ], "attacker_location_coordinates": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "attacker_team": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "hitgroup": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "with": [ - 2481 + 2485 ], "__typename": [ 78 @@ -58962,22 +58902,22 @@ export default { 78 ], "deleted_at": [ - 4024 + 4028 ], "hitgroup": [ 78 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "with": [ 78 @@ -58988,49 +58928,49 @@ export default { }, "player_kills_min_order_by": { "attacked_location": [ - 2481 + 2485 ], "attacked_location_coordinates": [ - 2481 + 2485 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacked_team": [ - 2481 + 2485 ], "attacker_location": [ - 2481 + 2485 ], "attacker_location_coordinates": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "attacker_team": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "hitgroup": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "with": [ - 2481 + 2485 ], "__typename": [ 78 @@ -59041,7 +58981,7 @@ export default { 38 ], "returning": [ - 2836 + 2840 ], "__typename": [ 78 @@ -59049,13 +58989,13 @@ export default { }, "player_kills_on_conflict": { "constraint": [ - 2889 + 2893 ], "update_columns": [ - 2914 + 2918 ], "where": [ - 2847 + 2851 ], "__typename": [ 78 @@ -59063,88 +59003,88 @@ export default { }, "player_kills_order_by": { "assisted": [ - 2481 + 2485 ], "attacked_location": [ - 2481 + 2485 ], "attacked_location_coordinates": [ - 2481 + 2485 ], "attacked_player": [ - 3452 + 3456 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacked_team": [ - 2481 + 2485 ], "attacker_location": [ - 2481 + 2485 ], "attacker_location_coordinates": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "attacker_team": [ - 2481 + 2485 ], "blinded": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "headshot": [ - 2481 + 2485 ], "hitgroup": [ - 2481 + 2485 ], "in_air": [ - 2481 + 2485 ], "is_suicide": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "no_scope": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "round": [ - 2481 + 2485 ], "team_kill": [ - 2481 + 2485 ], "thru_smoke": [ - 2481 + 2485 ], "thru_wall": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "with": [ - 2481 + 2485 ], "__typename": [ 78 @@ -59158,10 +59098,10 @@ export default { 180 ], "match_map_id": [ - 4462 + 4466 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -59202,7 +59142,7 @@ export default { 3 ], "deleted_at": [ - 4024 + 4028 ], "headshot": [ 3 @@ -59214,10 +59154,10 @@ export default { 3 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "no_scope": [ 3 @@ -59232,7 +59172,7 @@ export default { 3 ], "time": [ - 4024 + 4028 ], "with": [ 78 @@ -59257,13 +59197,13 @@ export default { }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -59285,13 +59225,13 @@ export default { }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -59313,13 +59253,13 @@ export default { }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -59327,7 +59267,7 @@ export default { }, "player_kills_stream_cursor_input": { "initial_value": [ - 2911 + 2915 ], "ordering": [ 236 @@ -59368,7 +59308,7 @@ export default { 3 ], "deleted_at": [ - 4024 + 4028 ], "headshot": [ 3 @@ -59380,10 +59320,10 @@ export default { 3 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "no_scope": [ 3 @@ -59398,7 +59338,7 @@ export default { 3 ], "time": [ - 4024 + 4028 ], "with": [ 78 @@ -59423,13 +59363,13 @@ export default { }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -59438,13 +59378,13 @@ export default { "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 2890 + 2894 ], "_set": [ - 2903 + 2907 ], "where": [ - 2847 + 2851 ], "__typename": [ 78 @@ -59466,13 +59406,13 @@ export default { }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -59494,13 +59434,13 @@ export default { }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -59522,13 +59462,13 @@ export default { }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -59553,10 +59493,10 @@ export default { }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 2924 + 2928 ], "nodes": [ - 2922 + 2926 ], "__typename": [ 78 @@ -59564,13 +59504,13 @@ export default { }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 2925 + 2929 ], "count": [ 38, { "columns": [ - 2933, + 2937, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -59579,31 +59519,31 @@ export default { } ], "max": [ - 2929 + 2933 ], "min": [ - 2930 + 2934 ], "stddev": [ - 2935 + 2939 ], "stddev_pop": [ - 2936 + 2940 ], "stddev_samp": [ - 2937 + 2941 ], "sum": [ - 2940 + 2944 ], "var_pop": [ - 2942 + 2946 ], "var_samp": [ - 2943 + 2947 ], "variance": [ - 2944 + 2948 ], "__typename": [ 78 @@ -59625,13 +59565,13 @@ export default { }, "player_leaderboard_rank_bool_exp": { "_and": [ - 2926 + 2930 ], "_not": [ - 2926 + 2930 ], "_or": [ - 2926 + 2930 ], "player_steam_id": [ 80 @@ -59719,7 +59659,7 @@ export default { 38 ], "returning": [ - 2922 + 2926 ], "__typename": [ 78 @@ -59727,16 +59667,16 @@ export default { }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "total": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -59804,7 +59744,7 @@ export default { }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 2939 + 2943 ], "ordering": [ 236 @@ -59846,13 +59786,13 @@ export default { }, "player_leaderboard_rank_updates": { "_inc": [ - 2927 + 2931 ], "_set": [ - 2934 + 2938 ], "where": [ - 2926 + 2930 ], "__typename": [ 78 @@ -59920,7 +59860,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "damage": [ 38 @@ -59962,7 +59902,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2483 ], "flashes_thrown": [ 38 @@ -60016,16 +59956,16 @@ export default { 38 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "molotov_damage": [ 38 @@ -60040,7 +59980,7 @@ export default { 38 ], "player": [ - 3439 + 3443 ], "rounds_ct": [ 38 @@ -60088,7 +60028,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -60118,7 +60058,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4028 ], "util_on_death_count": [ 38 @@ -60138,10 +60078,10 @@ export default { }, "player_match_map_stats_aggregate": { "aggregate": [ - 2949 + 2953 ], "nodes": [ - 2945 + 2949 ], "__typename": [ 78 @@ -60149,7 +60089,7 @@ export default { }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 2948 + 2952 ], "__typename": [ 78 @@ -60157,13 +60097,13 @@ export default { }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 2966 + 2970 ], "distinct": [ 3 ], "filter": [ - 2954 + 2958 ], "predicate": [ 39 @@ -60174,13 +60114,13 @@ export default { }, "player_match_map_stats_aggregate_fields": { "avg": [ - 2952 + 2956 ], "count": [ 38, { "columns": [ - 2966, + 2970, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -60189,31 +60129,31 @@ export default { } ], "max": [ - 2958 + 2962 ], "min": [ - 2960 + 2964 ], "stddev": [ - 2968 + 2972 ], "stddev_pop": [ - 2970 + 2974 ], "stddev_samp": [ - 2972 + 2976 ], "sum": [ - 2976 + 2980 ], "var_pop": [ - 2980 + 2984 ], "var_samp": [ - 2982 + 2986 ], "variance": [ - 2984 + 2988 ], "__typename": [ 78 @@ -60221,37 +60161,37 @@ export default { }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 2953 + 2957 ], "count": [ - 2481 + 2485 ], "max": [ - 2959 + 2963 ], "min": [ - 2961 + 2965 ], "stddev": [ - 2969 + 2973 ], "stddev_pop": [ - 2971 + 2975 ], "stddev_samp": [ - 2973 + 2977 ], "sum": [ - 2977 + 2981 ], "var_pop": [ - 2981 + 2985 ], "var_samp": [ - 2983 + 2987 ], "variance": [ - 2985 + 2989 ], "__typename": [ 78 @@ -60259,10 +60199,10 @@ export default { }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 2957 + 2961 ], "on_conflict": [ - 2963 + 2967 ], "__typename": [ 78 @@ -60488,217 +60428,217 @@ export default { }, "player_match_map_stats_avg_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "crosshair_angle_count": [ - 2481 + 2485 ], "crosshair_angle_sum_deg": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flash_duration_count": [ - 2481 + 2485 ], "flash_duration_sum": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kast_rounds": [ - 2481 + 2485 ], "kast_total_rounds": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "time_to_damage_count": [ - 2481 + 2485 ], "time_to_damage_sum_s": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "util_on_death_count": [ - 2481 + 2485 ], "util_on_death_sum": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -60706,13 +60646,13 @@ export default { }, "player_match_map_stats_bool_exp": { "_and": [ - 2954 + 2958 ], "_not": [ - 2954 + 2958 ], "_or": [ - 2954 + 2958 ], "assists": [ 39 @@ -60733,7 +60673,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2480 + 2484 ], "damage": [ 39 @@ -60775,7 +60715,7 @@ export default { 39 ], "flash_duration_sum": [ - 2480 + 2484 ], "flashes_thrown": [ 39 @@ -60829,16 +60769,16 @@ export default { 39 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "molotov_damage": [ 39 @@ -60853,7 +60793,7 @@ export default { 39 ], "player": [ - 3443 + 3447 ], "rounds_ct": [ 39 @@ -60901,7 +60841,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2480 + 2484 ], "total_engagement_frames": [ 39 @@ -60931,7 +60871,7 @@ export default { 39 ], "updated_at": [ - 4025 + 4029 ], "util_on_death_count": [ 39 @@ -60970,7 +60910,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "damage": [ 38 @@ -61012,7 +60952,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2483 ], "flashes_thrown": [ 38 @@ -61123,7 +61063,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -61188,7 +61128,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "damage": [ 38 @@ -61230,7 +61170,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2483 ], "flashes_thrown": [ 38 @@ -61284,16 +61224,16 @@ export default { 38 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_map": [ - 2152 + 2154 ], "match_map_id": [ - 4462 + 4466 ], "molotov_damage": [ 38 @@ -61308,7 +61248,7 @@ export default { 38 ], "player": [ - 3450 + 3454 ], "rounds_ct": [ 38 @@ -61356,7 +61296,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -61386,7 +61326,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4028 ], "util_on_death_count": [ 38 @@ -61424,7 +61364,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "damage": [ 38 @@ -61466,7 +61406,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2483 ], "flashes_thrown": [ 38 @@ -61520,10 +61460,10 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "molotov_damage": [ 38 @@ -61583,7 +61523,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -61613,7 +61553,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4028 ], "util_on_death_count": [ 38 @@ -61633,226 +61573,226 @@ export default { }, "player_match_map_stats_max_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "crosshair_angle_count": [ - 2481 + 2485 ], "crosshair_angle_sum_deg": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flash_duration_count": [ - 2481 + 2485 ], "flash_duration_sum": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kast_rounds": [ - 2481 + 2485 ], "kast_total_rounds": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "time_to_damage_count": [ - 2481 + 2485 ], "time_to_damage_sum_s": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "util_on_death_count": [ - 2481 + 2485 ], "util_on_death_sum": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -61878,7 +61818,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "damage": [ 38 @@ -61920,7 +61860,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2483 ], "flashes_thrown": [ 38 @@ -61974,10 +61914,10 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "molotov_damage": [ 38 @@ -62037,7 +61977,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -62067,7 +62007,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4028 ], "util_on_death_count": [ 38 @@ -62087,226 +62027,226 @@ export default { }, "player_match_map_stats_min_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "crosshair_angle_count": [ - 2481 + 2485 ], "crosshair_angle_sum_deg": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flash_duration_count": [ - 2481 + 2485 ], "flash_duration_sum": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kast_rounds": [ - 2481 + 2485 ], "kast_total_rounds": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "time_to_damage_count": [ - 2481 + 2485 ], "time_to_damage_sum_s": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "util_on_death_count": [ - 2481 + 2485 ], "util_on_death_sum": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -62317,7 +62257,7 @@ export default { 38 ], "returning": [ - 2945 + 2949 ], "__typename": [ 78 @@ -62325,13 +62265,13 @@ export default { }, "player_match_map_stats_on_conflict": { "constraint": [ - 2955 + 2959 ], "update_columns": [ - 2978 + 2982 ], "where": [ - 2954 + 2958 ], "__typename": [ 78 @@ -62339,235 +62279,235 @@ export default { }, "player_match_map_stats_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "crosshair_angle_count": [ - 2481 + 2485 ], "crosshair_angle_sum_deg": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flash_duration_count": [ - 2481 + 2485 ], "flash_duration_sum": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kast_rounds": [ - 2481 + 2485 ], "kast_total_rounds": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "time_to_damage_count": [ - 2481 + 2485 ], "time_to_damage_sum_s": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "util_on_death_count": [ - 2481 + 2485 ], "util_on_death_sum": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -62575,7 +62515,7 @@ export default { }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 4462 + 4466 ], "steam_id": [ 180 @@ -62605,7 +62545,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "damage": [ 38 @@ -62647,7 +62587,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2483 ], "flashes_thrown": [ 38 @@ -62701,10 +62641,10 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "molotov_damage": [ 38 @@ -62764,7 +62704,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -62794,7 +62734,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4028 ], "util_on_death_count": [ 38 @@ -63032,217 +62972,217 @@ export default { }, "player_match_map_stats_stddev_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "crosshair_angle_count": [ - 2481 + 2485 ], "crosshair_angle_sum_deg": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flash_duration_count": [ - 2481 + 2485 ], "flash_duration_sum": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kast_rounds": [ - 2481 + 2485 ], "kast_total_rounds": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "time_to_damage_count": [ - 2481 + 2485 ], "time_to_damage_sum_s": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "util_on_death_count": [ - 2481 + 2485 ], "util_on_death_sum": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -63468,217 +63408,217 @@ export default { }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "crosshair_angle_count": [ - 2481 + 2485 ], "crosshair_angle_sum_deg": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flash_duration_count": [ - 2481 + 2485 ], "flash_duration_sum": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kast_rounds": [ - 2481 + 2485 ], "kast_total_rounds": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "time_to_damage_count": [ - 2481 + 2485 ], "time_to_damage_sum_s": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "util_on_death_count": [ - 2481 + 2485 ], "util_on_death_sum": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -63904,217 +63844,217 @@ export default { }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "crosshair_angle_count": [ - 2481 + 2485 ], "crosshair_angle_sum_deg": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flash_duration_count": [ - 2481 + 2485 ], "flash_duration_sum": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kast_rounds": [ - 2481 + 2485 ], "kast_total_rounds": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "time_to_damage_count": [ - 2481 + 2485 ], "time_to_damage_sum_s": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "util_on_death_count": [ - 2481 + 2485 ], "util_on_death_sum": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -64122,7 +64062,7 @@ export default { }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 2975 + 2979 ], "ordering": [ 236 @@ -64151,7 +64091,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "damage": [ 38 @@ -64193,7 +64133,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2483 ], "flashes_thrown": [ 38 @@ -64247,10 +64187,10 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "molotov_damage": [ 38 @@ -64310,7 +64250,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -64340,7 +64280,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4028 ], "util_on_death_count": [ 38 @@ -64378,7 +64318,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2483 ], "damage": [ 38 @@ -64420,7 +64360,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2483 ], "flashes_thrown": [ 38 @@ -64531,7 +64471,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2483 ], "total_engagement_frames": [ 38 @@ -64578,217 +64518,217 @@ export default { }, "player_match_map_stats_sum_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "crosshair_angle_count": [ - 2481 + 2485 ], "crosshair_angle_sum_deg": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flash_duration_count": [ - 2481 + 2485 ], "flash_duration_sum": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kast_rounds": [ - 2481 + 2485 ], "kast_total_rounds": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "time_to_damage_count": [ - 2481 + 2485 ], "time_to_damage_sum_s": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "util_on_death_count": [ - 2481 + 2485 ], "util_on_death_sum": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -64797,13 +64737,13 @@ export default { "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 2956 + 2960 ], "_set": [ - 2967 + 2971 ], "where": [ - 2954 + 2958 ], "__typename": [ 78 @@ -65029,217 +64969,217 @@ export default { }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "crosshair_angle_count": [ - 2481 + 2485 ], "crosshair_angle_sum_deg": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flash_duration_count": [ - 2481 + 2485 ], "flash_duration_sum": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kast_rounds": [ - 2481 + 2485 ], "kast_total_rounds": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "time_to_damage_count": [ - 2481 + 2485 ], "time_to_damage_sum_s": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "util_on_death_count": [ - 2481 + 2485 ], "util_on_death_sum": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -65465,217 +65405,217 @@ export default { }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "crosshair_angle_count": [ - 2481 + 2485 ], "crosshair_angle_sum_deg": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flash_duration_count": [ - 2481 + 2485 ], "flash_duration_sum": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kast_rounds": [ - 2481 + 2485 ], "kast_total_rounds": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "time_to_damage_count": [ - 2481 + 2485 ], "time_to_damage_sum_s": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "util_on_death_count": [ - 2481 + 2485 ], "util_on_death_sum": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -65901,217 +65841,217 @@ export default { }, "player_match_map_stats_variance_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "crosshair_angle_count": [ - 2481 + 2485 ], "crosshair_angle_sum_deg": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flash_duration_count": [ - 2481 + 2485 ], "flash_duration_sum": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kast_rounds": [ - 2481 + 2485 ], "kast_total_rounds": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "time_to_damage_count": [ - 2481 + 2485 ], "time_to_damage_sum_s": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "util_on_death_count": [ - 2481 + 2485 ], "util_on_death_sum": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -66119,37 +66059,37 @@ export default { }, "player_match_performance_v": { "accuracy": [ - 2479 + 2483 ], "accuracy_spotted": [ - 2479 + 2483 ], "aim_rating": [ 1200 ], "counter_strafe_pct": [ - 2479 + 2483 ], "enemy_blind_pr": [ - 2479 + 2483 ], "flash_assists_pr": [ - 2479 + 2483 ], "hs_pct": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "match_id": [ - 4462 + 4466 ], "overall_rating": [ 1200 ], "played_at": [ - 4024 + 4028 ], "positioning_rating": [ 1200 @@ -66164,13 +66104,13 @@ export default { 180 ], "survival_pct": [ - 2479 + 2483 ], "traded_death_pct": [ - 2479 + 2483 ], "util_efficiency": [ - 2479 + 2483 ], "utility_rating": [ 1200 @@ -66181,10 +66121,10 @@ export default { }, "player_match_performance_v_aggregate": { "aggregate": [ - 2988 + 2992 ], "nodes": [ - 2986 + 2990 ], "__typename": [ 78 @@ -66192,13 +66132,13 @@ export default { }, "player_match_performance_v_aggregate_fields": { "avg": [ - 2989 + 2993 ], "count": [ 38, { "columns": [ - 2994, + 2998, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -66207,31 +66147,31 @@ export default { } ], "max": [ - 2991 + 2995 ], "min": [ - 2992 + 2996 ], "stddev": [ - 2995 + 2999 ], "stddev_pop": [ - 2996 + 3000 ], "stddev_samp": [ - 2997 + 3001 ], "sum": [ - 3000 + 3004 ], "var_pop": [ - 3001 + 3005 ], "var_samp": [ - 3002 + 3006 ], "variance": [ - 3003 + 3007 ], "__typename": [ 78 @@ -66292,46 +66232,46 @@ export default { }, "player_match_performance_v_bool_exp": { "_and": [ - 2990 + 2994 ], "_not": [ - 2990 + 2994 ], "_or": [ - 2990 + 2994 ], "accuracy": [ - 2480 + 2484 ], "accuracy_spotted": [ - 2480 + 2484 ], "aim_rating": [ 1201 ], "counter_strafe_pct": [ - 2480 + 2484 ], "enemy_blind_pr": [ - 2480 + 2484 ], "flash_assists_pr": [ - 2480 + 2484 ], "hs_pct": [ - 2480 + 2484 ], "kast_pct": [ - 2480 + 2484 ], "match_id": [ - 4464 + 4468 ], "overall_rating": [ 1201 ], "played_at": [ - 4025 + 4029 ], "positioning_rating": [ 1201 @@ -66346,13 +66286,13 @@ export default { 182 ], "survival_pct": [ - 2480 + 2484 ], "traded_death_pct": [ - 2480 + 2484 ], "util_efficiency": [ - 2480 + 2484 ], "utility_rating": [ 1201 @@ -66363,37 +66303,37 @@ export default { }, "player_match_performance_v_max_fields": { "accuracy": [ - 2479 + 2483 ], "accuracy_spotted": [ - 2479 + 2483 ], "aim_rating": [ 1200 ], "counter_strafe_pct": [ - 2479 + 2483 ], "enemy_blind_pr": [ - 2479 + 2483 ], "flash_assists_pr": [ - 2479 + 2483 ], "hs_pct": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "match_id": [ - 4462 + 4466 ], "overall_rating": [ 1200 ], "played_at": [ - 4024 + 4028 ], "positioning_rating": [ 1200 @@ -66408,13 +66348,13 @@ export default { 180 ], "survival_pct": [ - 2479 + 2483 ], "traded_death_pct": [ - 2479 + 2483 ], "util_efficiency": [ - 2479 + 2483 ], "utility_rating": [ 1200 @@ -66425,37 +66365,37 @@ export default { }, "player_match_performance_v_min_fields": { "accuracy": [ - 2479 + 2483 ], "accuracy_spotted": [ - 2479 + 2483 ], "aim_rating": [ 1200 ], "counter_strafe_pct": [ - 2479 + 2483 ], "enemy_blind_pr": [ - 2479 + 2483 ], "flash_assists_pr": [ - 2479 + 2483 ], "hs_pct": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "match_id": [ - 4462 + 4466 ], "overall_rating": [ 1200 ], "played_at": [ - 4024 + 4028 ], "positioning_rating": [ 1200 @@ -66470,13 +66410,13 @@ export default { 180 ], "survival_pct": [ - 2479 + 2483 ], "traded_death_pct": [ - 2479 + 2483 ], "util_efficiency": [ - 2479 + 2483 ], "utility_rating": [ 1200 @@ -66487,61 +66427,61 @@ export default { }, "player_match_performance_v_order_by": { "accuracy": [ - 2481 + 2485 ], "accuracy_spotted": [ - 2481 + 2485 ], "aim_rating": [ - 2481 + 2485 ], "counter_strafe_pct": [ - 2481 + 2485 ], "enemy_blind_pr": [ - 2481 + 2485 ], "flash_assists_pr": [ - 2481 + 2485 ], "hs_pct": [ - 2481 + 2485 ], "kast_pct": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "overall_rating": [ - 2481 + 2485 ], "played_at": [ - 2481 + 2485 ], "positioning_rating": [ - 2481 + 2485 ], "rounds": [ - 2481 + 2485 ], "source": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "survival_pct": [ - 2481 + 2485 ], "traded_death_pct": [ - 2481 + 2485 ], "util_efficiency": [ - 2481 + 2485 ], "utility_rating": [ - 2481 + 2485 ], "__typename": [ 78 @@ -66709,7 +66649,7 @@ export default { }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 2999 + 3003 ], "ordering": [ 236 @@ -66720,37 +66660,37 @@ export default { }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 2479 + 2483 ], "accuracy_spotted": [ - 2479 + 2483 ], "aim_rating": [ 1200 ], "counter_strafe_pct": [ - 2479 + 2483 ], "enemy_blind_pr": [ - 2479 + 2483 ], "flash_assists_pr": [ - 2479 + 2483 ], "hs_pct": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "match_id": [ - 4462 + 4466 ], "overall_rating": [ 1200 ], "played_at": [ - 4024 + 4028 ], "positioning_rating": [ 1200 @@ -66765,13 +66705,13 @@ export default { 180 ], "survival_pct": [ - 2479 + 2483 ], "traded_death_pct": [ - 2479 + 2483 ], "util_efficiency": [ - 2479 + 2483 ], "utility_rating": [ 1200 @@ -66782,28 +66722,28 @@ export default { }, "player_match_performance_v_sum_fields": { "accuracy": [ - 2479 + 2483 ], "accuracy_spotted": [ - 2479 + 2483 ], "aim_rating": [ 1200 ], "counter_strafe_pct": [ - 2479 + 2483 ], "enemy_blind_pr": [ - 2479 + 2483 ], "flash_assists_pr": [ - 2479 + 2483 ], "hs_pct": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "overall_rating": [ 1200 @@ -66818,13 +66758,13 @@ export default { 180 ], "survival_pct": [ - 2479 + 2483 ], "traded_death_pct": [ - 2479 + 2483 ], "util_efficiency": [ - 2479 + 2483 ], "utility_rating": [ 1200 @@ -67003,13 +66943,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2483 ], "avg_flash_duration": [ - 2479 + 2483 ], "avg_time_to_damage_s": [ - 2479 + 2483 ], "counter_strafe_eligible_shots": [ 38 @@ -67099,7 +67039,7 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "molotov_damage": [ 38 @@ -67183,7 +67123,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2483 ], "wasted_magazine_shots": [ 38 @@ -67197,10 +67137,10 @@ export default { }, "player_match_stats_v_aggregate": { "aggregate": [ - 3008 + 3012 ], "nodes": [ - 3004 + 3008 ], "__typename": [ 78 @@ -67208,7 +67148,7 @@ export default { }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3007 + 3011 ], "__typename": [ 78 @@ -67216,13 +67156,13 @@ export default { }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3020 + 3024 ], "distinct": [ 3 ], "filter": [ - 3013 + 3017 ], "predicate": [ 39 @@ -67233,13 +67173,13 @@ export default { }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3011 + 3015 ], "count": [ 38, { "columns": [ - 3020, + 3024, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -67248,31 +67188,31 @@ export default { } ], "max": [ - 3015 + 3019 ], "min": [ - 3017 + 3021 ], "stddev": [ - 3021 + 3025 ], "stddev_pop": [ - 3023 + 3027 ], "stddev_samp": [ - 3025 + 3029 ], "sum": [ - 3029 + 3033 ], "var_pop": [ - 3031 + 3035 ], "var_samp": [ - 3033 + 3037 ], "variance": [ - 3035 + 3039 ], "__typename": [ 78 @@ -67280,37 +67220,37 @@ export default { }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3012 + 3016 ], "count": [ - 2481 + 2485 ], "max": [ - 3016 + 3020 ], "min": [ - 3018 + 3022 ], "stddev": [ - 3022 + 3026 ], "stddev_pop": [ - 3024 + 3028 ], "stddev_samp": [ - 3026 + 3030 ], "sum": [ - 3030 + 3034 ], "var_pop": [ - 3032 + 3036 ], "var_samp": [ - 3034 + 3038 ], "variance": [ - 3036 + 3040 ], "__typename": [ 78 @@ -67318,7 +67258,7 @@ export default { }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3014 + 3018 ], "__typename": [ 78 @@ -67526,199 +67466,199 @@ export default { }, "player_match_stats_v_avg_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "avg_crosshair_angle_deg": [ - 2481 + 2485 ], "avg_flash_duration": [ - 2481 + 2485 ], "avg_time_to_damage_s": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "utility_on_death": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -67726,13 +67666,13 @@ export default { }, "player_match_stats_v_bool_exp": { "_and": [ - 3013 + 3017 ], "_not": [ - 3013 + 3017 ], "_or": [ - 3013 + 3017 ], "assists": [ 39 @@ -67744,13 +67684,13 @@ export default { 39 ], "avg_crosshair_angle_deg": [ - 2480 + 2484 ], "avg_flash_duration": [ - 2480 + 2484 ], "avg_time_to_damage_s": [ - 2480 + 2484 ], "counter_strafe_eligible_shots": [ 39 @@ -67840,7 +67780,7 @@ export default { 39 ], "match_id": [ - 4464 + 4468 ], "molotov_damage": [ 39 @@ -67924,7 +67864,7 @@ export default { 39 ], "utility_on_death": [ - 2480 + 2484 ], "wasted_magazine_shots": [ 39 @@ -67947,13 +67887,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2483 ], "avg_flash_duration": [ - 2479 + 2483 ], "avg_time_to_damage_s": [ - 2479 + 2483 ], "counter_strafe_eligible_shots": [ 38 @@ -68043,7 +67983,7 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "molotov_damage": [ 38 @@ -68127,7 +68067,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2483 ], "wasted_magazine_shots": [ 38 @@ -68150,13 +68090,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2483 ], "avg_flash_duration": [ - 2479 + 2483 ], "avg_time_to_damage_s": [ - 2479 + 2483 ], "counter_strafe_eligible_shots": [ 38 @@ -68246,7 +68186,7 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "molotov_damage": [ 38 @@ -68330,7 +68270,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2483 ], "wasted_magazine_shots": [ 38 @@ -68344,202 +68284,202 @@ export default { }, "player_match_stats_v_max_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "avg_crosshair_angle_deg": [ - 2481 + 2485 ], "avg_flash_duration": [ - 2481 + 2485 ], "avg_time_to_damage_s": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "utility_on_death": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -68556,13 +68496,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2483 ], "avg_flash_duration": [ - 2479 + 2483 ], "avg_time_to_damage_s": [ - 2479 + 2483 ], "counter_strafe_eligible_shots": [ 38 @@ -68652,7 +68592,7 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "molotov_damage": [ 38 @@ -68736,7 +68676,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2483 ], "wasted_magazine_shots": [ 38 @@ -68750,202 +68690,202 @@ export default { }, "player_match_stats_v_min_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "avg_crosshair_angle_deg": [ - 2481 + 2485 ], "avg_flash_duration": [ - 2481 + 2485 ], "avg_time_to_damage_s": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "utility_on_death": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -68953,202 +68893,202 @@ export default { }, "player_match_stats_v_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "avg_crosshair_angle_deg": [ - 2481 + 2485 ], "avg_flash_duration": [ - 2481 + 2485 ], "avg_time_to_damage_s": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "utility_on_death": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -69357,199 +69297,199 @@ export default { }, "player_match_stats_v_stddev_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "avg_crosshair_angle_deg": [ - 2481 + 2485 ], "avg_flash_duration": [ - 2481 + 2485 ], "avg_time_to_damage_s": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "utility_on_death": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -69757,199 +69697,199 @@ export default { }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "avg_crosshair_angle_deg": [ - 2481 + 2485 ], "avg_flash_duration": [ - 2481 + 2485 ], "avg_time_to_damage_s": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "utility_on_death": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -70157,199 +70097,199 @@ export default { }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "avg_crosshair_angle_deg": [ - 2481 + 2485 ], "avg_flash_duration": [ - 2481 + 2485 ], "avg_time_to_damage_s": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "utility_on_death": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -70357,7 +70297,7 @@ export default { }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3028 + 3032 ], "ordering": [ 236 @@ -70377,13 +70317,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2483 ], "avg_flash_duration": [ - 2479 + 2483 ], "avg_time_to_damage_s": [ - 2479 + 2483 ], "counter_strafe_eligible_shots": [ 38 @@ -70473,7 +70413,7 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "molotov_damage": [ 38 @@ -70557,7 +70497,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2483 ], "wasted_magazine_shots": [ 38 @@ -70580,13 +70520,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2483 ], "avg_flash_duration": [ - 2479 + 2483 ], "avg_time_to_damage_s": [ - 2479 + 2483 ], "counter_strafe_eligible_shots": [ 38 @@ -70757,7 +70697,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2483 ], "wasted_magazine_shots": [ 38 @@ -70771,199 +70711,199 @@ export default { }, "player_match_stats_v_sum_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "avg_crosshair_angle_deg": [ - 2481 + 2485 ], "avg_flash_duration": [ - 2481 + 2485 ], "avg_time_to_damage_s": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "utility_on_death": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -71171,199 +71111,199 @@ export default { }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "avg_crosshair_angle_deg": [ - 2481 + 2485 ], "avg_flash_duration": [ - 2481 + 2485 ], "avg_time_to_damage_s": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "utility_on_death": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -71571,199 +71511,199 @@ export default { }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "avg_crosshair_angle_deg": [ - 2481 + 2485 ], "avg_flash_duration": [ - 2481 + 2485 ], "avg_time_to_damage_s": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "utility_on_death": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -71971,199 +71911,199 @@ export default { }, "player_match_stats_v_variance_order_by": { "assists": [ - 2481 + 2485 ], "assists_ct": [ - 2481 + 2485 ], "assists_t": [ - 2481 + 2485 ], "avg_crosshair_angle_deg": [ - 2481 + 2485 ], "avg_flash_duration": [ - 2481 + 2485 ], "avg_time_to_damage_s": [ - 2481 + 2485 ], "counter_strafe_eligible_shots": [ - 2481 + 2485 ], "counter_strafed_shots": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_ct": [ - 2481 + 2485 ], "damage_t": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "deaths_ct": [ - 2481 + 2485 ], "deaths_t": [ - 2481 + 2485 ], "decoy_throws": [ - 2481 + 2485 ], "enemies_flashed": [ - 2481 + 2485 ], "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "five_kill_rounds": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "flashes_thrown": [ - 2481 + 2485 ], "four_kill_rounds": [ - 2481 + 2485 ], "he_damage": [ - 2481 + 2485 ], "he_team_damage": [ - 2481 + 2485 ], "he_throws": [ - 2481 + 2485 ], "headshot_hits": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_at_spotted": [ - 2481 + 2485 ], "hs_kills": [ - 2481 + 2485 ], "hs_kills_ct": [ - 2481 + 2485 ], "hs_kills_t": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kills_ct": [ - 2481 + 2485 ], "kills_t": [ - 2481 + 2485 ], "knife_kills": [ - 2481 + 2485 ], "molotov_damage": [ - 2481 + 2485 ], "molotov_throws": [ - 2481 + 2485 ], "non_awp_hits": [ - 2481 + 2485 ], "on_target_frames": [ - 2481 + 2485 ], "rounds_ct": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "rounds_t": [ - 2481 + 2485 ], "shots_at_spotted": [ - 2481 + 2485 ], "shots_fired": [ - 2481 + 2485 ], "smoke_throws": [ - 2481 + 2485 ], "spotted_count": [ - 2481 + 2485 ], "spotted_with_damage_count": [ - 2481 + 2485 ], "spray_hits": [ - 2481 + 2485 ], "spray_shots": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_damage": [ - 2481 + 2485 ], "team_flashed": [ - 2481 + 2485 ], "three_kill_rounds": [ - 2481 + 2485 ], "total_engagement_frames": [ - 2481 + 2485 ], "trade_kill_attempts": [ - 2481 + 2485 ], "trade_kill_opportunities": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_attempts": [ - 2481 + 2485 ], "traded_death_opportunities": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "two_kill_rounds": [ - 2481 + 2485 ], "unused_utility_value": [ - 2481 + 2485 ], "utility_on_death": [ - 2481 + 2485 ], "wasted_magazine_shots": [ - 2481 + 2485 ], "zeus_kills": [ - 2481 + 2485 ], "__typename": [ 78 @@ -72171,22 +72111,22 @@ export default { }, "player_objectives": { "deleted_at": [ - 4024 + 4028 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3439 + 3443 ], "player_steam_id": [ 180 @@ -72195,7 +72135,7 @@ export default { 38 ], "time": [ - 4024 + 4028 ], "type": [ 861 @@ -72206,10 +72146,10 @@ export default { }, "player_objectives_aggregate": { "aggregate": [ - 3041 + 3045 ], "nodes": [ - 3037 + 3041 ], "__typename": [ 78 @@ -72217,7 +72157,7 @@ export default { }, "player_objectives_aggregate_bool_exp": { "count": [ - 3040 + 3044 ], "__typename": [ 78 @@ -72225,13 +72165,13 @@ export default { }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3058 + 3062 ], "distinct": [ 3 ], "filter": [ - 3046 + 3050 ], "predicate": [ 39 @@ -72242,13 +72182,13 @@ export default { }, "player_objectives_aggregate_fields": { "avg": [ - 3044 + 3048 ], "count": [ 38, { "columns": [ - 3058, + 3062, "[player_objectives_select_column!]" ], "distinct": [ @@ -72257,31 +72197,31 @@ export default { } ], "max": [ - 3050 + 3054 ], "min": [ - 3052 + 3056 ], "stddev": [ - 3060 + 3064 ], "stddev_pop": [ - 3062 + 3066 ], "stddev_samp": [ - 3064 + 3068 ], "sum": [ - 3068 + 3072 ], "var_pop": [ - 3072 + 3076 ], "var_samp": [ - 3074 + 3078 ], "variance": [ - 3076 + 3080 ], "__typename": [ 78 @@ -72289,37 +72229,37 @@ export default { }, "player_objectives_aggregate_order_by": { "avg": [ - 3045 + 3049 ], "count": [ - 2481 + 2485 ], "max": [ - 3051 + 3055 ], "min": [ - 3053 + 3057 ], "stddev": [ - 3061 + 3065 ], "stddev_pop": [ - 3063 + 3067 ], "stddev_samp": [ - 3065 + 3069 ], "sum": [ - 3069 + 3073 ], "var_pop": [ - 3073 + 3077 ], "var_samp": [ - 3075 + 3079 ], "variance": [ - 3077 + 3081 ], "__typename": [ 78 @@ -72327,10 +72267,10 @@ export default { }, "player_objectives_arr_rel_insert_input": { "data": [ - 3049 + 3053 ], "on_conflict": [ - 3055 + 3059 ], "__typename": [ 78 @@ -72349,10 +72289,10 @@ export default { }, "player_objectives_avg_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -72360,31 +72300,31 @@ export default { }, "player_objectives_bool_exp": { "_and": [ - 3046 + 3050 ], "_not": [ - 3046 + 3050 ], "_or": [ - 3046 + 3050 ], "deleted_at": [ - 4025 + 4029 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "player": [ - 3443 + 3447 ], "player_steam_id": [ 182 @@ -72393,7 +72333,7 @@ export default { 39 ], "time": [ - 4025 + 4029 ], "type": [ 862 @@ -72416,22 +72356,22 @@ export default { }, "player_objectives_insert_input": { "deleted_at": [ - 4024 + 4028 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_map": [ - 2152 + 2154 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3450 + 3454 ], "player_steam_id": [ 180 @@ -72440,7 +72380,7 @@ export default { 38 ], "time": [ - 4024 + 4028 ], "type": [ 861 @@ -72451,13 +72391,13 @@ export default { }, "player_objectives_max_fields": { "deleted_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "player_steam_id": [ 180 @@ -72466,7 +72406,7 @@ export default { 38 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -72474,22 +72414,22 @@ export default { }, "player_objectives_max_order_by": { "deleted_at": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "__typename": [ 78 @@ -72497,13 +72437,13 @@ export default { }, "player_objectives_min_fields": { "deleted_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "player_steam_id": [ 180 @@ -72512,7 +72452,7 @@ export default { 38 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -72520,22 +72460,22 @@ export default { }, "player_objectives_min_order_by": { "deleted_at": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "__typename": [ 78 @@ -72546,7 +72486,7 @@ export default { 38 ], "returning": [ - 3037 + 3041 ], "__typename": [ 78 @@ -72554,13 +72494,13 @@ export default { }, "player_objectives_on_conflict": { "constraint": [ - 3047 + 3051 ], "update_columns": [ - 3070 + 3074 ], "where": [ - 3046 + 3050 ], "__typename": [ 78 @@ -72568,34 +72508,34 @@ export default { }, "player_objectives_order_by": { "deleted_at": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "__typename": [ 78 @@ -72603,13 +72543,13 @@ export default { }, "player_objectives_pk_columns_input": { "match_map_id": [ - 4462 + 4466 ], "player_steam_id": [ 180 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -72618,13 +72558,13 @@ export default { "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "player_steam_id": [ 180 @@ -72633,7 +72573,7 @@ export default { 38 ], "time": [ - 4024 + 4028 ], "type": [ 861 @@ -72655,10 +72595,10 @@ export default { }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -72677,10 +72617,10 @@ export default { }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -72699,10 +72639,10 @@ export default { }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -72710,7 +72650,7 @@ export default { }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3067 + 3071 ], "ordering": [ 236 @@ -72721,13 +72661,13 @@ export default { }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "player_steam_id": [ 180 @@ -72736,7 +72676,7 @@ export default { 38 ], "time": [ - 4024 + 4028 ], "type": [ 861 @@ -72758,10 +72698,10 @@ export default { }, "player_objectives_sum_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -72770,13 +72710,13 @@ export default { "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3048 + 3052 ], "_set": [ - 3059 + 3063 ], "where": [ - 3046 + 3050 ], "__typename": [ 78 @@ -72795,10 +72735,10 @@ export default { }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -72817,10 +72757,10 @@ export default { }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -72839,10 +72779,10 @@ export default { }, "player_objectives_variance_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -72927,10 +72867,10 @@ export default { }, "player_performance_v_aggregate": { "aggregate": [ - 3080 + 3084 ], "nodes": [ - 3078 + 3082 ], "__typename": [ 78 @@ -72938,13 +72878,13 @@ export default { }, "player_performance_v_aggregate_fields": { "avg": [ - 3081 + 3085 ], "count": [ 38, { "columns": [ - 3086, + 3090, "[player_performance_v_select_column!]" ], "distinct": [ @@ -72953,31 +72893,31 @@ export default { } ], "max": [ - 3083 + 3087 ], "min": [ - 3084 + 3088 ], "stddev": [ - 3087 + 3091 ], "stddev_pop": [ - 3088 + 3092 ], "stddev_samp": [ - 3089 + 3093 ], "sum": [ - 3092 + 3096 ], "var_pop": [ - 3093 + 3097 ], "var_samp": [ - 3094 + 3098 ], "variance": [ - 3095 + 3099 ], "__typename": [ 78 @@ -73062,13 +73002,13 @@ export default { }, "player_performance_v_bool_exp": { "_and": [ - 3082 + 3086 ], "_not": [ - 3082 + 3086 ], "_or": [ - 3082 + 3086 ], "accuracy_score": [ 1201 @@ -73302,76 +73242,76 @@ export default { }, "player_performance_v_order_by": { "accuracy_score": [ - 2481 + 2485 ], "aim_goal": [ - 2481 + 2485 ], "aim_rating": [ - 2481 + 2485 ], "band": [ - 2481 + 2485 ], "band_sample": [ - 2481 + 2485 ], "blind_score": [ - 2481 + 2485 ], "counter_strafe_score": [ - 2481 + 2485 ], "crosshair_score": [ - 2481 + 2485 ], "flash_assists_score": [ - 2481 + 2485 ], "hs_score": [ - 2481 + 2485 ], "kast_score": [ - 2481 + 2485 ], "maps": [ - 2481 + 2485 ], "positioning_goal": [ - 2481 + 2485 ], "positioning_rating": [ - 2481 + 2485 ], "premier_rank": [ - 2481 + 2485 ], "rounds": [ - 2481 + 2485 ], "spotted_score": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "survival_score": [ - 2481 + 2485 ], "traded_score": [ - 2481 + 2485 ], "ttd_score": [ - 2481 + 2485 ], "util_eff_score": [ - 2481 + 2485 ], "utility_goal": [ - 2481 + 2485 ], "utility_rating": [ - 2481 + 2485 ], "__typename": [ 78 @@ -73611,7 +73551,7 @@ export default { }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3091 + 3095 ], "ordering": [ 236 @@ -74007,25 +73947,25 @@ export default { }, "player_premier_rank_history": { "id": [ - 4462 + 4466 ], "map": [ 1814 ], "map_id": [ - 4462 + 4466 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "observed_at": [ - 4024 + 4028 ], "player": [ - 3439 + 3443 ], "previous_rank": [ 38 @@ -74045,10 +73985,10 @@ export default { }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3100 + 3104 ], "nodes": [ - 3096 + 3100 ], "__typename": [ 78 @@ -74056,7 +73996,7 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3099 + 3103 ], "__typename": [ 78 @@ -74064,13 +74004,13 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3117 + 3121 ], "distinct": [ 3 ], "filter": [ - 3105 + 3109 ], "predicate": [ 39 @@ -74081,13 +74021,13 @@ export default { }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3103 + 3107 ], "count": [ 38, { "columns": [ - 3117, + 3121, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -74096,31 +74036,31 @@ export default { } ], "max": [ - 3109 + 3113 ], "min": [ - 3111 + 3115 ], "stddev": [ - 3119 + 3123 ], "stddev_pop": [ - 3121 + 3125 ], "stddev_samp": [ - 3123 + 3127 ], "sum": [ - 3127 + 3131 ], "var_pop": [ - 3131 + 3135 ], "var_samp": [ - 3133 + 3137 ], "variance": [ - 3135 + 3139 ], "__typename": [ 78 @@ -74128,37 +74068,37 @@ export default { }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 3104 + 3108 ], "count": [ - 2481 + 2485 ], "max": [ - 3110 + 3114 ], "min": [ - 3112 + 3116 ], "stddev": [ - 3120 + 3124 ], "stddev_pop": [ - 3122 + 3126 ], "stddev_samp": [ - 3124 + 3128 ], "sum": [ - 3128 + 3132 ], "var_pop": [ - 3132 + 3136 ], "var_samp": [ - 3134 + 3138 ], "variance": [ - 3136 + 3140 ], "__typename": [ 78 @@ -74166,10 +74106,10 @@ export default { }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3108 + 3112 ], "on_conflict": [ - 3114 + 3118 ], "__typename": [ 78 @@ -74194,16 +74134,16 @@ export default { }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rank_type": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -74211,34 +74151,34 @@ export default { }, "player_premier_rank_history_bool_exp": { "_and": [ - 3105 + 3109 ], "_not": [ - 3105 + 3109 ], "_or": [ - 3105 + 3109 ], "id": [ - 4464 + 4468 ], "map": [ 1823 ], "map_id": [ - 4464 + 4468 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "observed_at": [ - 4025 + 4029 ], "player": [ - 3443 + 3447 ], "previous_rank": [ 39 @@ -74276,25 +74216,25 @@ export default { }, "player_premier_rank_history_insert_input": { "id": [ - 4462 + 4466 ], "map": [ 1831 ], "map_id": [ - 4462 + 4466 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "observed_at": [ - 4024 + 4028 ], "player": [ - 3450 + 3454 ], "previous_rank": [ 38 @@ -74314,16 +74254,16 @@ export default { }, "player_premier_rank_history_max_fields": { "id": [ - 4462 + 4466 ], "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "observed_at": [ - 4024 + 4028 ], "previous_rank": [ 38 @@ -74343,28 +74283,28 @@ export default { }, "player_premier_rank_history_max_order_by": { "id": [ - 2481 + 2485 ], "map_id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "observed_at": [ - 2481 + 2485 ], "previous_rank": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rank_type": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -74372,16 +74312,16 @@ export default { }, "player_premier_rank_history_min_fields": { "id": [ - 4462 + 4466 ], "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "observed_at": [ - 4024 + 4028 ], "previous_rank": [ 38 @@ -74401,28 +74341,28 @@ export default { }, "player_premier_rank_history_min_order_by": { "id": [ - 2481 + 2485 ], "map_id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "observed_at": [ - 2481 + 2485 ], "previous_rank": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rank_type": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -74433,7 +74373,7 @@ export default { 38 ], "returning": [ - 3096 + 3100 ], "__typename": [ 78 @@ -74441,13 +74381,13 @@ export default { }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3106 + 3110 ], "update_columns": [ - 3129 + 3133 ], "where": [ - 3105 + 3109 ], "__typename": [ 78 @@ -74455,37 +74395,37 @@ export default { }, "player_premier_rank_history_order_by": { "id": [ - 2481 + 2485 ], "map": [ 1833 ], "map_id": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "observed_at": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "previous_rank": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rank_type": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -74493,7 +74433,7 @@ export default { }, "player_premier_rank_history_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -74502,16 +74442,16 @@ export default { "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 4462 + 4466 ], "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "observed_at": [ - 4024 + 4028 ], "previous_rank": [ 38 @@ -74548,16 +74488,16 @@ export default { }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rank_type": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -74582,16 +74522,16 @@ export default { }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rank_type": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -74616,16 +74556,16 @@ export default { }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rank_type": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -74633,7 +74573,7 @@ export default { }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3126 + 3130 ], "ordering": [ 236 @@ -74644,16 +74584,16 @@ export default { }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 4462 + 4466 ], "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "observed_at": [ - 4024 + 4028 ], "previous_rank": [ 38 @@ -74690,16 +74630,16 @@ export default { }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rank_type": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -74708,13 +74648,13 @@ export default { "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3107 + 3111 ], "_set": [ - 3118 + 3122 ], "where": [ - 3105 + 3109 ], "__typename": [ 78 @@ -74739,16 +74679,16 @@ export default { }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rank_type": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -74773,16 +74713,16 @@ export default { }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rank_type": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -74807,16 +74747,16 @@ export default { }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rank_type": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -74824,19 +74764,19 @@ export default { }, "player_sanctions": { "created_at": [ - 4024 + 4028 ], "deleted_at": [ - 4024 + 4028 ], "e_sanction_type": [ 936 ], "id": [ - 4462 + 4466 ], "player": [ - 3439 + 3443 ], "player_steam_id": [ 180 @@ -74845,10 +74785,10 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4028 ], "sanctioned_by": [ - 3439 + 3443 ], "sanctioned_by_steam_id": [ 180 @@ -74862,10 +74802,10 @@ export default { }, "player_sanctions_aggregate": { "aggregate": [ - 3141 + 3145 ], "nodes": [ - 3137 + 3141 ], "__typename": [ 78 @@ -74873,7 +74813,7 @@ export default { }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3140 + 3144 ], "__typename": [ 78 @@ -74881,13 +74821,13 @@ export default { }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3158 + 3162 ], "distinct": [ 3 ], "filter": [ - 3146 + 3150 ], "predicate": [ 39 @@ -74898,13 +74838,13 @@ export default { }, "player_sanctions_aggregate_fields": { "avg": [ - 3144 + 3148 ], "count": [ 38, { "columns": [ - 3158, + 3162, "[player_sanctions_select_column!]" ], "distinct": [ @@ -74913,31 +74853,31 @@ export default { } ], "max": [ - 3150 + 3154 ], "min": [ - 3152 + 3156 ], "stddev": [ - 3160 + 3164 ], "stddev_pop": [ - 3162 + 3166 ], "stddev_samp": [ - 3164 + 3168 ], "sum": [ - 3168 + 3172 ], "var_pop": [ - 3172 + 3176 ], "var_samp": [ - 3174 + 3178 ], "variance": [ - 3176 + 3180 ], "__typename": [ 78 @@ -74945,37 +74885,37 @@ export default { }, "player_sanctions_aggregate_order_by": { "avg": [ - 3145 + 3149 ], "count": [ - 2481 + 2485 ], "max": [ - 3151 + 3155 ], "min": [ - 3153 + 3157 ], "stddev": [ - 3161 + 3165 ], "stddev_pop": [ - 3163 + 3167 ], "stddev_samp": [ - 3165 + 3169 ], "sum": [ - 3169 + 3173 ], "var_pop": [ - 3173 + 3177 ], "var_samp": [ - 3175 + 3179 ], "variance": [ - 3177 + 3181 ], "__typename": [ 78 @@ -74983,10 +74923,10 @@ export default { }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3149 + 3153 ], "on_conflict": [ - 3155 + 3159 ], "__typename": [ 78 @@ -75005,10 +74945,10 @@ export default { }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 2481 + 2485 ], "sanctioned_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -75016,28 +74956,28 @@ export default { }, "player_sanctions_bool_exp": { "_and": [ - 3146 + 3150 ], "_not": [ - 3146 + 3150 ], "_or": [ - 3146 + 3150 ], "created_at": [ - 4025 + 4029 ], "deleted_at": [ - 4025 + 4029 ], "e_sanction_type": [ 939 ], "id": [ - 4464 + 4468 ], "player": [ - 3443 + 3447 ], "player_steam_id": [ 182 @@ -75046,10 +74986,10 @@ export default { 80 ], "remove_sanction_date": [ - 4025 + 4029 ], "sanctioned_by": [ - 3443 + 3447 ], "sanctioned_by_steam_id": [ 182 @@ -75075,19 +75015,19 @@ export default { }, "player_sanctions_insert_input": { "created_at": [ - 4024 + 4028 ], "deleted_at": [ - 4024 + 4028 ], "e_sanction_type": [ 947 ], "id": [ - 4462 + 4466 ], "player": [ - 3450 + 3454 ], "player_steam_id": [ 180 @@ -75096,10 +75036,10 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4028 ], "sanctioned_by": [ - 3450 + 3454 ], "sanctioned_by_steam_id": [ 180 @@ -75113,13 +75053,13 @@ export default { }, "player_sanctions_max_fields": { "created_at": [ - 4024 + 4028 ], "deleted_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "player_steam_id": [ 180 @@ -75128,7 +75068,7 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4028 ], "sanctioned_by_steam_id": [ 180 @@ -75139,25 +75079,25 @@ export default { }, "player_sanctions_max_order_by": { "created_at": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "reason": [ - 2481 + 2485 ], "remove_sanction_date": [ - 2481 + 2485 ], "sanctioned_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -75165,13 +75105,13 @@ export default { }, "player_sanctions_min_fields": { "created_at": [ - 4024 + 4028 ], "deleted_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "player_steam_id": [ 180 @@ -75180,7 +75120,7 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4028 ], "sanctioned_by_steam_id": [ 180 @@ -75191,25 +75131,25 @@ export default { }, "player_sanctions_min_order_by": { "created_at": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "reason": [ - 2481 + 2485 ], "remove_sanction_date": [ - 2481 + 2485 ], "sanctioned_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -75220,7 +75160,7 @@ export default { 38 ], "returning": [ - 3137 + 3141 ], "__typename": [ 78 @@ -75228,13 +75168,13 @@ export default { }, "player_sanctions_on_conflict": { "constraint": [ - 3147 + 3151 ], "update_columns": [ - 3170 + 3174 ], "where": [ - 3146 + 3150 ], "__typename": [ 78 @@ -75242,37 +75182,37 @@ export default { }, "player_sanctions_order_by": { "created_at": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "e_sanction_type": [ 949 ], "id": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "player_steam_id": [ - 2481 + 2485 ], "reason": [ - 2481 + 2485 ], "remove_sanction_date": [ - 2481 + 2485 ], "sanctioned_by": [ - 3452 + 3456 ], "sanctioned_by_steam_id": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "__typename": [ 78 @@ -75280,10 +75220,10 @@ export default { }, "player_sanctions_pk_columns_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -75292,13 +75232,13 @@ export default { "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4024 + 4028 ], "deleted_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "player_steam_id": [ 180 @@ -75307,7 +75247,7 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4028 ], "sanctioned_by_steam_id": [ 180 @@ -75332,10 +75272,10 @@ export default { }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 2481 + 2485 ], "sanctioned_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -75354,10 +75294,10 @@ export default { }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2485 ], "sanctioned_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -75376,10 +75316,10 @@ export default { }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2485 ], "sanctioned_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -75387,7 +75327,7 @@ export default { }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3167 + 3171 ], "ordering": [ 236 @@ -75398,13 +75338,13 @@ export default { }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "deleted_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "player_steam_id": [ 180 @@ -75413,7 +75353,7 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4028 ], "sanctioned_by_steam_id": [ 180 @@ -75438,10 +75378,10 @@ export default { }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 2481 + 2485 ], "sanctioned_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -75450,13 +75390,13 @@ export default { "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3148 + 3152 ], "_set": [ - 3159 + 3163 ], "where": [ - 3146 + 3150 ], "__typename": [ 78 @@ -75475,10 +75415,10 @@ export default { }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 2481 + 2485 ], "sanctioned_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -75497,10 +75437,10 @@ export default { }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 2481 + 2485 ], "sanctioned_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -75519,10 +75459,10 @@ export default { }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 2481 + 2485 ], "sanctioned_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -75545,16 +75485,16 @@ export default { 180 ], "player": [ - 3439 + 3443 ], "player_steam_id": [ 180 ], "season": [ - 3498 + 3502 ], "season_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -75562,10 +75502,10 @@ export default { }, "player_season_stats_aggregate": { "aggregate": [ - 3192 + 3196 ], "nodes": [ - 3178 + 3182 ], "__typename": [ 78 @@ -75573,31 +75513,31 @@ export default { }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3181 + 3185 ], "corr": [ - 3182 + 3186 ], "count": [ - 3184 + 3188 ], "covar_samp": [ - 3185 + 3189 ], "max": [ - 3187 + 3191 ], "min": [ - 3188 + 3192 ], "stddev_samp": [ - 3189 + 3193 ], "sum": [ - 3190 + 3194 ], "var_samp": [ - 3191 + 3195 ], "__typename": [ 78 @@ -75605,13 +75545,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3210 + 3214 ], "distinct": [ 3 ], "filter": [ - 3197 + 3201 ], "predicate": [ 1201 @@ -75622,13 +75562,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3183 + 3187 ], "distinct": [ 3 ], "filter": [ - 3197 + 3201 ], "predicate": [ 1201 @@ -75639,10 +75579,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3211 + 3215 ], "Y": [ - 3211 + 3215 ], "__typename": [ 78 @@ -75650,13 +75590,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3209 + 3213 ], "distinct": [ 3 ], "filter": [ - 3197 + 3201 ], "predicate": [ 39 @@ -75667,13 +75607,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3186 + 3190 ], "distinct": [ 3 ], "filter": [ - 3197 + 3201 ], "predicate": [ 1201 @@ -75684,10 +75624,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3212 + 3216 ], "Y": [ - 3212 + 3216 ], "__typename": [ 78 @@ -75695,13 +75635,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3213 + 3217 ], "distinct": [ 3 ], "filter": [ - 3197 + 3201 ], "predicate": [ 1201 @@ -75712,13 +75652,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3214 + 3218 ], "distinct": [ 3 ], "filter": [ - 3197 + 3201 ], "predicate": [ 1201 @@ -75729,13 +75669,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3215 + 3219 ], "distinct": [ 3 ], "filter": [ - 3197 + 3201 ], "predicate": [ 1201 @@ -75746,13 +75686,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3216 + 3220 ], "distinct": [ 3 ], "filter": [ - 3197 + 3201 ], "predicate": [ 1201 @@ -75763,13 +75703,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3217 + 3221 ], "distinct": [ 3 ], "filter": [ - 3197 + 3201 ], "predicate": [ 1201 @@ -75780,13 +75720,13 @@ export default { }, "player_season_stats_aggregate_fields": { "avg": [ - 3195 + 3199 ], "count": [ 38, { "columns": [ - 3209, + 3213, "[player_season_stats_select_column!]" ], "distinct": [ @@ -75795,31 +75735,31 @@ export default { } ], "max": [ - 3201 + 3205 ], "min": [ - 3203 + 3207 ], "stddev": [ - 3219 + 3223 ], "stddev_pop": [ - 3221 + 3225 ], "stddev_samp": [ - 3223 + 3227 ], "sum": [ - 3227 + 3231 ], "var_pop": [ - 3231 + 3235 ], "var_samp": [ - 3233 + 3237 ], "variance": [ - 3235 + 3239 ], "__typename": [ 78 @@ -75827,37 +75767,37 @@ export default { }, "player_season_stats_aggregate_order_by": { "avg": [ - 3196 + 3200 ], "count": [ - 2481 + 2485 ], "max": [ - 3202 + 3206 ], "min": [ - 3204 + 3208 ], "stddev": [ - 3220 + 3224 ], "stddev_pop": [ - 3222 + 3226 ], "stddev_samp": [ - 3224 + 3228 ], "sum": [ - 3228 + 3232 ], "var_pop": [ - 3232 + 3236 ], "var_samp": [ - 3234 + 3238 ], "variance": [ - 3236 + 3240 ], "__typename": [ 78 @@ -75865,10 +75805,10 @@ export default { }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3200 + 3204 ], "on_conflict": [ - 3206 + 3210 ], "__typename": [ 78 @@ -75899,22 +75839,22 @@ export default { }, "player_season_stats_avg_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -75922,13 +75862,13 @@ export default { }, "player_season_stats_bool_exp": { "_and": [ - 3197 + 3201 ], "_not": [ - 3197 + 3201 ], "_or": [ - 3197 + 3201 ], "assists": [ 182 @@ -75946,16 +75886,16 @@ export default { 182 ], "player": [ - 3443 + 3447 ], "player_steam_id": [ 182 ], "season": [ - 3502 + 3506 ], "season_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -76002,16 +75942,16 @@ export default { 180 ], "player": [ - 3450 + 3454 ], "player_steam_id": [ 180 ], "season": [ - 3509 + 3513 ], "season_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -76037,7 +75977,7 @@ export default { 180 ], "season_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -76045,25 +75985,25 @@ export default { }, "player_season_stats_max_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "season_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -76089,7 +76029,7 @@ export default { 180 ], "season_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -76097,25 +76037,25 @@ export default { }, "player_season_stats_min_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "season_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -76126,7 +76066,7 @@ export default { 38 ], "returning": [ - 3178 + 3182 ], "__typename": [ 78 @@ -76134,13 +76074,13 @@ export default { }, "player_season_stats_on_conflict": { "constraint": [ - 3198 + 3202 ], "update_columns": [ - 3229 + 3233 ], "where": [ - 3197 + 3201 ], "__typename": [ 78 @@ -76148,31 +76088,31 @@ export default { }, "player_season_stats_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "player_steam_id": [ - 2481 + 2485 ], "season": [ - 3511 + 3515 ], "season_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -76183,7 +76123,7 @@ export default { 180 ], "season_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -76218,7 +76158,7 @@ export default { 180 ], "season_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -76249,22 +76189,22 @@ export default { }, "player_season_stats_stddev_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -76295,22 +76235,22 @@ export default { }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -76341,22 +76281,22 @@ export default { }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -76364,7 +76304,7 @@ export default { }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3226 + 3230 ], "ordering": [ 236 @@ -76393,7 +76333,7 @@ export default { 180 ], "season_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -76424,22 +76364,22 @@ export default { }, "player_season_stats_sum_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -76448,13 +76388,13 @@ export default { "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3199 + 3203 ], "_set": [ - 3218 + 3222 ], "where": [ - 3197 + 3201 ], "__typename": [ 78 @@ -76485,22 +76425,22 @@ export default { }, "player_season_stats_var_pop_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -76531,22 +76471,22 @@ export default { }, "player_season_stats_var_samp_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -76577,22 +76517,22 @@ export default { }, "player_season_stats_variance_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -76615,7 +76555,7 @@ export default { 180 ], "player": [ - 3439 + 3443 ], "player_steam_id": [ 180 @@ -76626,10 +76566,10 @@ export default { }, "player_stats_aggregate": { "aggregate": [ - 3239 + 3243 ], "nodes": [ - 3237 + 3241 ], "__typename": [ 78 @@ -76637,13 +76577,13 @@ export default { }, "player_stats_aggregate_fields": { "avg": [ - 3240 + 3244 ], "count": [ 38, { "columns": [ - 3252, + 3256, "[player_stats_select_column!]" ], "distinct": [ @@ -76652,31 +76592,31 @@ export default { } ], "max": [ - 3245 + 3249 ], "min": [ - 3246 + 3250 ], "stddev": [ - 3254 + 3258 ], "stddev_pop": [ - 3255 + 3259 ], "stddev_samp": [ - 3256 + 3260 ], "sum": [ - 3259 + 3263 ], "var_pop": [ - 3262 + 3266 ], "var_samp": [ - 3263 + 3267 ], "variance": [ - 3264 + 3268 ], "__typename": [ 78 @@ -76707,13 +76647,13 @@ export default { }, "player_stats_bool_exp": { "_and": [ - 3241 + 3245 ], "_not": [ - 3241 + 3245 ], "_or": [ - 3241 + 3245 ], "assists": [ 182 @@ -76731,7 +76671,7 @@ export default { 182 ], "player": [ - 3443 + 3447 ], "player_steam_id": [ 182 @@ -76781,7 +76721,7 @@ export default { 180 ], "player": [ - 3450 + 3454 ], "player_steam_id": [ 180 @@ -76841,7 +76781,7 @@ export default { 38 ], "returning": [ - 3237 + 3241 ], "__typename": [ 78 @@ -76849,10 +76789,10 @@ export default { }, "player_stats_obj_rel_insert_input": { "data": [ - 3244 + 3248 ], "on_conflict": [ - 3249 + 3253 ], "__typename": [ 78 @@ -76860,13 +76800,13 @@ export default { }, "player_stats_on_conflict": { "constraint": [ - 3242 + 3246 ], "update_columns": [ - 3260 + 3264 ], "where": [ - 3241 + 3245 ], "__typename": [ 78 @@ -76874,25 +76814,25 @@ export default { }, "player_stats_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -77001,7 +76941,7 @@ export default { }, "player_stats_stream_cursor_input": { "initial_value": [ - 3258 + 3262 ], "ordering": [ 236 @@ -77059,13 +76999,13 @@ export default { "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3243 + 3247 ], "_set": [ - 3253 + 3257 ], "where": [ - 3241 + 3245 ], "__typename": [ 78 @@ -77142,16 +77082,16 @@ export default { }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 4462 + 4466 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4028 ], "friended_at": [ - 4024 + 4028 ], "last_presence_state": [ 1352, @@ -77162,7 +77102,7 @@ export default { } ], "player": [ - 3439 + 3443 ], "status": [ 78 @@ -77171,7 +77111,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -77179,10 +77119,10 @@ export default { }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3267 + 3271 ], "nodes": [ - 3265 + 3269 ], "__typename": [ 78 @@ -77190,13 +77130,13 @@ export default { }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3269 + 3273 ], "count": [ 38, { "columns": [ - 3284, + 3288, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -77205,31 +77145,31 @@ export default { } ], "max": [ - 3277 + 3281 ], "min": [ - 3278 + 3282 ], "stddev": [ - 3286 + 3290 ], "stddev_pop": [ - 3287 + 3291 ], "stddev_samp": [ - 3288 + 3292 ], "sum": [ - 3291 + 3295 ], "var_pop": [ - 3294 + 3298 ], "var_samp": [ - 3295 + 3299 ], "variance": [ - 3296 + 3300 ], "__typename": [ 78 @@ -77256,31 +77196,31 @@ export default { }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3270 + 3274 ], "_not": [ - 3270 + 3274 ], "_or": [ - 3270 + 3274 ], "bot_steam_account_id": [ - 4464 + 4468 ], "bot_steamid64": [ 182 ], "created_at": [ - 4025 + 4029 ], "friended_at": [ - 4025 + 4029 ], "last_presence_state": [ 1354 ], "player": [ - 3443 + 3447 ], "status": [ 80 @@ -77289,7 +77229,7 @@ export default { 182 ], "updated_at": [ - 4025 + 4029 ], "__typename": [ 78 @@ -77333,22 +77273,22 @@ export default { }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 4462 + 4466 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4028 ], "friended_at": [ - 4024 + 4028 ], "last_presence_state": [ 1352 ], "player": [ - 3450 + 3454 ], "status": [ 78 @@ -77357,7 +77297,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -77365,16 +77305,16 @@ export default { }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 4462 + 4466 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4028 ], "friended_at": [ - 4024 + 4028 ], "status": [ 78 @@ -77383,7 +77323,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -77391,16 +77331,16 @@ export default { }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 4462 + 4466 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4028 ], "friended_at": [ - 4024 + 4028 ], "status": [ 78 @@ -77409,7 +77349,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -77420,7 +77360,7 @@ export default { 38 ], "returning": [ - 3265 + 3269 ], "__typename": [ 78 @@ -77428,13 +77368,13 @@ export default { }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3271 + 3275 ], "update_columns": [ - 3292 + 3296 ], "where": [ - 3270 + 3274 ], "__typename": [ 78 @@ -77442,31 +77382,31 @@ export default { }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 2481 + 2485 ], "bot_steamid64": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "friended_at": [ - 2481 + 2485 ], "last_presence_state": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "status": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "__typename": [ 78 @@ -77491,16 +77431,16 @@ export default { "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 4462 + 4466 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4028 ], "friended_at": [ - 4024 + 4028 ], "last_presence_state": [ 1352 @@ -77512,7 +77452,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -77553,7 +77493,7 @@ export default { }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3290 + 3294 ], "ordering": [ 236 @@ -77564,16 +77504,16 @@ export default { }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 4462 + 4466 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4028 ], "friended_at": [ - 4024 + 4028 ], "last_presence_state": [ 1352 @@ -77585,7 +77525,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -77605,28 +77545,28 @@ export default { "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3268 + 3272 ], "_delete_at_path": [ - 3272 + 3276 ], "_delete_elem": [ - 3273 + 3277 ], "_delete_key": [ - 3274 + 3278 ], "_inc": [ - 3275 + 3279 ], "_prepend": [ - 3283 + 3287 ], "_set": [ - 3285 + 3289 ], "where": [ - 3270 + 3274 ], "__typename": [ 78 @@ -77670,7 +77610,7 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "last_error": [ 78 @@ -77679,16 +77619,16 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4028 ], "player": [ - 3439 + 3443 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -77696,10 +77636,10 @@ export default { }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3299 + 3303 ], "nodes": [ - 3297 + 3301 ], "__typename": [ 78 @@ -77707,13 +77647,13 @@ export default { }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3300 + 3304 ], "count": [ 38, { "columns": [ - 3311, + 3315, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -77722,31 +77662,31 @@ export default { } ], "max": [ - 3305 + 3309 ], "min": [ - 3306 + 3310 ], "stddev": [ - 3313 + 3317 ], "stddev_pop": [ - 3314 + 3318 ], "stddev_samp": [ - 3315 + 3319 ], "sum": [ - 3318 + 3322 ], "var_pop": [ - 3321 + 3325 ], "var_samp": [ - 3322 + 3326 ], "variance": [ - 3323 + 3327 ], "__typename": [ 78 @@ -77762,19 +77702,19 @@ export default { }, "player_steam_match_auth_bool_exp": { "_and": [ - 3301 + 3305 ], "_not": [ - 3301 + 3305 ], "_or": [ - 3301 + 3305 ], "auth_code": [ 80 ], "created_at": [ - 4025 + 4029 ], "last_error": [ 80 @@ -77783,16 +77723,16 @@ export default { 80 ], "last_polled_at": [ - 4025 + 4029 ], "player": [ - 3443 + 3447 ], "steam_id": [ 182 ], "updated_at": [ - 4025 + 4029 ], "__typename": [ 78 @@ -77812,7 +77752,7 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "last_error": [ 78 @@ -77821,16 +77761,16 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4028 ], "player": [ - 3450 + 3454 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -77841,7 +77781,7 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "last_error": [ 78 @@ -77850,13 +77790,13 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4028 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -77867,7 +77807,7 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "last_error": [ 78 @@ -77876,13 +77816,13 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4028 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -77893,7 +77833,7 @@ export default { 38 ], "returning": [ - 3297 + 3301 ], "__typename": [ 78 @@ -77901,13 +77841,13 @@ export default { }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3302 + 3306 ], "update_columns": [ - 3319 + 3323 ], "where": [ - 3301 + 3305 ], "__typename": [ 78 @@ -77915,28 +77855,28 @@ export default { }, "player_steam_match_auth_order_by": { "auth_code": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "last_error": [ - 2481 + 2485 ], "last_known_share_code": [ - 2481 + 2485 ], "last_polled_at": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "steam_id": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "__typename": [ 78 @@ -77956,7 +77896,7 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "last_error": [ 78 @@ -77965,13 +77905,13 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4028 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -78003,7 +77943,7 @@ export default { }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3317 + 3321 ], "ordering": [ 236 @@ -78017,7 +77957,7 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "last_error": [ 78 @@ -78026,13 +77966,13 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4028 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -78049,13 +77989,13 @@ export default { "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3303 + 3307 ], "_set": [ - 3312 + 3316 ], "where": [ - 3301 + 3305 ], "__typename": [ 78 @@ -78087,22 +78027,22 @@ export default { }, "player_unused_utility": { "deleted_at": [ - 4024 + 4028 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3439 + 3443 ], "player_steam_id": [ 180 @@ -78119,10 +78059,10 @@ export default { }, "player_unused_utility_aggregate": { "aggregate": [ - 3328 + 3332 ], "nodes": [ - 3324 + 3328 ], "__typename": [ 78 @@ -78130,7 +78070,7 @@ export default { }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3327 + 3331 ], "__typename": [ 78 @@ -78138,13 +78078,13 @@ export default { }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3345 + 3349 ], "distinct": [ 3 ], "filter": [ - 3333 + 3337 ], "predicate": [ 39 @@ -78155,13 +78095,13 @@ export default { }, "player_unused_utility_aggregate_fields": { "avg": [ - 3331 + 3335 ], "count": [ 38, { "columns": [ - 3345, + 3349, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -78170,31 +78110,31 @@ export default { } ], "max": [ - 3337 + 3341 ], "min": [ - 3339 + 3343 ], "stddev": [ - 3347 + 3351 ], "stddev_pop": [ - 3349 + 3353 ], "stddev_samp": [ - 3351 + 3355 ], "sum": [ - 3355 + 3359 ], "var_pop": [ - 3359 + 3363 ], "var_samp": [ - 3361 + 3365 ], "variance": [ - 3363 + 3367 ], "__typename": [ 78 @@ -78202,37 +78142,37 @@ export default { }, "player_unused_utility_aggregate_order_by": { "avg": [ - 3332 + 3336 ], "count": [ - 2481 + 2485 ], "max": [ - 3338 + 3342 ], "min": [ - 3340 + 3344 ], "stddev": [ - 3348 + 3352 ], "stddev_pop": [ - 3350 + 3354 ], "stddev_samp": [ - 3352 + 3356 ], "sum": [ - 3356 + 3360 ], "var_pop": [ - 3360 + 3364 ], "var_samp": [ - 3362 + 3366 ], "variance": [ - 3364 + 3368 ], "__typename": [ 78 @@ -78240,10 +78180,10 @@ export default { }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3336 + 3340 ], "on_conflict": [ - 3342 + 3346 ], "__typename": [ 78 @@ -78265,13 +78205,13 @@ export default { }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "unused": [ - 2481 + 2485 ], "__typename": [ 78 @@ -78279,31 +78219,31 @@ export default { }, "player_unused_utility_bool_exp": { "_and": [ - 3333 + 3337 ], "_not": [ - 3333 + 3337 ], "_or": [ - 3333 + 3337 ], "deleted_at": [ - 4025 + 4029 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "player": [ - 3443 + 3447 ], "player_steam_id": [ 182 @@ -78335,22 +78275,22 @@ export default { }, "player_unused_utility_insert_input": { "deleted_at": [ - 4024 + 4028 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_map": [ - 2152 + 2154 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3450 + 3454 ], "player_steam_id": [ 180 @@ -78367,13 +78307,13 @@ export default { }, "player_unused_utility_max_fields": { "deleted_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "player_steam_id": [ 180 @@ -78390,22 +78330,22 @@ export default { }, "player_unused_utility_max_order_by": { "deleted_at": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "unused": [ - 2481 + 2485 ], "__typename": [ 78 @@ -78413,13 +78353,13 @@ export default { }, "player_unused_utility_min_fields": { "deleted_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "player_steam_id": [ 180 @@ -78436,22 +78376,22 @@ export default { }, "player_unused_utility_min_order_by": { "deleted_at": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "unused": [ - 2481 + 2485 ], "__typename": [ 78 @@ -78462,7 +78402,7 @@ export default { 38 ], "returning": [ - 3324 + 3328 ], "__typename": [ 78 @@ -78470,13 +78410,13 @@ export default { }, "player_unused_utility_on_conflict": { "constraint": [ - 3334 + 3338 ], "update_columns": [ - 3357 + 3361 ], "where": [ - 3333 + 3337 ], "__typename": [ 78 @@ -78484,31 +78424,31 @@ export default { }, "player_unused_utility_order_by": { "deleted_at": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "unused": [ - 2481 + 2485 ], "__typename": [ 78 @@ -78516,7 +78456,7 @@ export default { }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 4462 + 4466 ], "player_steam_id": [ 180 @@ -78528,13 +78468,13 @@ export default { "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "player_steam_id": [ 180 @@ -78565,13 +78505,13 @@ export default { }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "unused": [ - 2481 + 2485 ], "__typename": [ 78 @@ -78593,13 +78533,13 @@ export default { }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "unused": [ - 2481 + 2485 ], "__typename": [ 78 @@ -78621,13 +78561,13 @@ export default { }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "unused": [ - 2481 + 2485 ], "__typename": [ 78 @@ -78635,7 +78575,7 @@ export default { }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3354 + 3358 ], "ordering": [ 236 @@ -78646,13 +78586,13 @@ export default { }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "player_steam_id": [ 180 @@ -78683,13 +78623,13 @@ export default { }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "unused": [ - 2481 + 2485 ], "__typename": [ 78 @@ -78698,13 +78638,13 @@ export default { "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3335 + 3339 ], "_set": [ - 3346 + 3350 ], "where": [ - 3333 + 3337 ], "__typename": [ 78 @@ -78726,13 +78666,13 @@ export default { }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "unused": [ - 2481 + 2485 ], "__typename": [ 78 @@ -78754,13 +78694,13 @@ export default { }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "unused": [ - 2481 + 2485 ], "__typename": [ 78 @@ -78782,13 +78722,13 @@ export default { }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "unused": [ - 2481 + 2485 ], "__typename": [ 78 @@ -78802,28 +78742,28 @@ export default { 180 ], "deleted_at": [ - 4024 + 4028 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3439 + 3443 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "type": [ 1145 @@ -78834,10 +78774,10 @@ export default { }, "player_utility_aggregate": { "aggregate": [ - 3369 + 3373 ], "nodes": [ - 3365 + 3369 ], "__typename": [ 78 @@ -78845,7 +78785,7 @@ export default { }, "player_utility_aggregate_bool_exp": { "count": [ - 3368 + 3372 ], "__typename": [ 78 @@ -78853,13 +78793,13 @@ export default { }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3386 + 3390 ], "distinct": [ 3 ], "filter": [ - 3374 + 3378 ], "predicate": [ 39 @@ -78870,13 +78810,13 @@ export default { }, "player_utility_aggregate_fields": { "avg": [ - 3372 + 3376 ], "count": [ 38, { "columns": [ - 3386, + 3390, "[player_utility_select_column!]" ], "distinct": [ @@ -78885,31 +78825,31 @@ export default { } ], "max": [ - 3378 + 3382 ], "min": [ - 3380 + 3384 ], "stddev": [ - 3388 + 3392 ], "stddev_pop": [ - 3390 + 3394 ], "stddev_samp": [ - 3392 + 3396 ], "sum": [ - 3396 + 3400 ], "var_pop": [ - 3400 + 3404 ], "var_samp": [ - 3402 + 3406 ], "variance": [ - 3404 + 3408 ], "__typename": [ 78 @@ -78917,37 +78857,37 @@ export default { }, "player_utility_aggregate_order_by": { "avg": [ - 3373 + 3377 ], "count": [ - 2481 + 2485 ], "max": [ - 3379 + 3383 ], "min": [ - 3381 + 3385 ], "stddev": [ - 3389 + 3393 ], "stddev_pop": [ - 3391 + 3395 ], "stddev_samp": [ - 3393 + 3397 ], "sum": [ - 3397 + 3401 ], "var_pop": [ - 3401 + 3405 ], "var_samp": [ - 3403 + 3407 ], "variance": [ - 3405 + 3409 ], "__typename": [ 78 @@ -78955,10 +78895,10 @@ export default { }, "player_utility_arr_rel_insert_input": { "data": [ - 3377 + 3381 ], "on_conflict": [ - 3383 + 3387 ], "__typename": [ 78 @@ -78977,10 +78917,10 @@ export default { }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -78988,13 +78928,13 @@ export default { }, "player_utility_bool_exp": { "_and": [ - 3374 + 3378 ], "_not": [ - 3374 + 3378 ], "_or": [ - 3374 + 3378 ], "attacker_location_coordinates": [ 80 @@ -79003,28 +78943,28 @@ export default { 182 ], "deleted_at": [ - 4025 + 4029 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "player": [ - 3443 + 3447 ], "round": [ 39 ], "time": [ - 4025 + 4029 ], "type": [ 1146 @@ -79053,28 +78993,28 @@ export default { 180 ], "deleted_at": [ - 4024 + 4028 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_map": [ - 2152 + 2154 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3450 + 3454 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "type": [ 1145 @@ -79091,19 +79031,19 @@ export default { 180 ], "deleted_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -79111,25 +79051,25 @@ export default { }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "__typename": [ 78 @@ -79143,19 +79083,19 @@ export default { 180 ], "deleted_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -79163,25 +79103,25 @@ export default { }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "__typename": [ 78 @@ -79192,7 +79132,7 @@ export default { 38 ], "returning": [ - 3365 + 3369 ], "__typename": [ 78 @@ -79200,13 +79140,13 @@ export default { }, "player_utility_on_conflict": { "constraint": [ - 3375 + 3379 ], "update_columns": [ - 3398 + 3402 ], "where": [ - 3374 + 3378 ], "__typename": [ 78 @@ -79214,37 +79154,37 @@ export default { }, "player_utility_order_by": { "attacker_location_coordinates": [ - 2481 + 2485 ], "attacker_steam_id": [ - 2481 + 2485 ], "deleted_at": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "round": [ - 2481 + 2485 ], "time": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "__typename": [ 78 @@ -79255,10 +79195,10 @@ export default { 180 ], "match_map_id": [ - 4462 + 4466 ], "time": [ - 4024 + 4028 ], "__typename": [ 78 @@ -79273,19 +79213,19 @@ export default { 180 ], "deleted_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "type": [ 1145 @@ -79307,10 +79247,10 @@ export default { }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -79329,10 +79269,10 @@ export default { }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -79351,10 +79291,10 @@ export default { }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -79362,7 +79302,7 @@ export default { }, "player_utility_stream_cursor_input": { "initial_value": [ - 3395 + 3399 ], "ordering": [ 236 @@ -79379,19 +79319,19 @@ export default { 180 ], "deleted_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 ], "time": [ - 4024 + 4028 ], "type": [ 1145 @@ -79413,10 +79353,10 @@ export default { }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -79425,13 +79365,13 @@ export default { "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3376 + 3380 ], "_set": [ - 3387 + 3391 ], "where": [ - 3374 + 3378 ], "__typename": [ 78 @@ -79450,10 +79390,10 @@ export default { }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -79472,10 +79412,10 @@ export default { }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -79494,10 +79434,10 @@ export default { }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -79517,7 +79457,7 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "shots": [ 38 @@ -79537,10 +79477,10 @@ export default { }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 3410 + 3414 ], "nodes": [ - 3406 + 3410 ], "__typename": [ 78 @@ -79548,7 +79488,7 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 3409 + 3413 ], "__typename": [ 78 @@ -79556,13 +79496,13 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3422 + 3426 ], "distinct": [ 3 ], "filter": [ - 3415 + 3419 ], "predicate": [ 39 @@ -79573,13 +79513,13 @@ export default { }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 3413 + 3417 ], "count": [ 38, { "columns": [ - 3422, + 3426, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -79588,31 +79528,31 @@ export default { } ], "max": [ - 3417 + 3421 ], "min": [ - 3419 + 3423 ], "stddev": [ - 3423 + 3427 ], "stddev_pop": [ - 3425 + 3429 ], "stddev_samp": [ - 3427 + 3431 ], "sum": [ - 3431 + 3435 ], "var_pop": [ - 3433 + 3437 ], "var_samp": [ - 3435 + 3439 ], "variance": [ - 3437 + 3441 ], "__typename": [ 78 @@ -79620,37 +79560,37 @@ export default { }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 3414 + 3418 ], "count": [ - 2481 + 2485 ], "max": [ - 3418 + 3422 ], "min": [ - 3420 + 3424 ], "stddev": [ - 3424 + 3428 ], "stddev_pop": [ - 3426 + 3430 ], "stddev_samp": [ - 3428 + 3432 ], "sum": [ - 3432 + 3436 ], "var_pop": [ - 3434 + 3438 ], "var_samp": [ - 3436 + 3440 ], "variance": [ - 3438 + 3442 ], "__typename": [ 78 @@ -79658,7 +79598,7 @@ export default { }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 3416 + 3420 ], "__typename": [ 78 @@ -79692,25 +79632,25 @@ export default { }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -79718,13 +79658,13 @@ export default { }, "player_weapon_stats_v_bool_exp": { "_and": [ - 3415 + 3419 ], "_not": [ - 3415 + 3419 ], "_or": [ - 3415 + 3419 ], "first_bullet_hits": [ 39 @@ -79739,7 +79679,7 @@ export default { 39 ], "match_id": [ - 4464 + 4468 ], "shots": [ 39 @@ -79771,7 +79711,7 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "shots": [ 38 @@ -79803,7 +79743,7 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "shots": [ 38 @@ -79823,31 +79763,31 @@ export default { }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "weapon_class": [ - 2481 + 2485 ], "__typename": [ 78 @@ -79867,7 +79807,7 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "shots": [ 38 @@ -79887,31 +79827,31 @@ export default { }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "weapon_class": [ - 2481 + 2485 ], "__typename": [ 78 @@ -79919,31 +79859,31 @@ export default { }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "weapon_class": [ - 2481 + 2485 ], "__typename": [ 78 @@ -79978,25 +79918,25 @@ export default { }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -80030,25 +79970,25 @@ export default { }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -80082,25 +80022,25 @@ export default { }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -80108,7 +80048,7 @@ export default { }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 3430 + 3434 ], "ordering": [ 236 @@ -80131,7 +80071,7 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "shots": [ 38 @@ -80177,25 +80117,25 @@ export default { }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -80229,25 +80169,25 @@ export default { }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -80281,25 +80221,25 @@ export default { }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -80333,25 +80273,25 @@ export default { }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 2481 + 2485 ], "first_bullet_shots": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "hits_spotted": [ - 2481 + 2485 ], "shots": [ - 2481 + 2485 ], "shots_spotted": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -80403,10 +80343,10 @@ export default { } ], "aim_weapon_stats": [ - 2578, + 2582, { "distinct_on": [ - 2599, + 2603, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -80416,19 +80356,19 @@ export default { 38 ], "order_by": [ - 2597, + 2601, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2591 ] } ], "aim_weapon_stats_aggregate": [ - 2579, + 2583, { "distinct_on": [ - 2599, + 2603, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -80438,19 +80378,19 @@ export default { 38 ], "order_by": [ - 2597, + 2601, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2591 ] } ], "assists": [ - 2619, + 2623, { "distinct_on": [ - 2642, + 2646, "[player_assists_select_column!]" ], "limit": [ @@ -80460,19 +80400,19 @@ export default { 38 ], "order_by": [ - 2640, + 2644, "[player_assists_order_by!]" ], "where": [ - 2630 + 2634 ] } ], "assists_aggregate": [ - 2620, + 2624, { "distinct_on": [ - 2642, + 2646, "[player_assists_select_column!]" ], "limit": [ @@ -80482,19 +80422,19 @@ export default { 38 ], "order_by": [ - 2640, + 2644, "[player_assists_order_by!]" ], "where": [ - 2630 + 2634 ] } ], "assited_by_players": [ - 2619, + 2623, { "distinct_on": [ - 2642, + 2646, "[player_assists_select_column!]" ], "limit": [ @@ -80504,19 +80444,19 @@ export default { 38 ], "order_by": [ - 2640, + 2644, "[player_assists_order_by!]" ], "where": [ - 2630 + 2634 ] } ], "assited_by_players_aggregate": [ - 2620, + 2624, { "distinct_on": [ - 2642, + 2646, "[player_assists_select_column!]" ], "limit": [ @@ -80526,11 +80466,11 @@ export default { 38 ], "order_by": [ - 2640, + 2644, "[player_assists_order_by!]" ], "where": [ - 2630 + 2634 ] } ], @@ -80585,19 +80525,19 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "current_lobby_id": [ - 4462 + 4466 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2682, + 2686, { "distinct_on": [ - 2703, + 2707, "[player_damages_select_column!]" ], "limit": [ @@ -80607,19 +80547,19 @@ export default { 38 ], "order_by": [ - 2701, + 2705, "[player_damages_order_by!]" ], "where": [ - 2691 + 2695 ] } ], "damage_dealt_aggregate": [ - 2683, + 2687, { "distinct_on": [ - 2703, + 2707, "[player_damages_select_column!]" ], "limit": [ @@ -80629,19 +80569,19 @@ export default { 38 ], "order_by": [ - 2701, + 2705, "[player_damages_order_by!]" ], "where": [ - 2691 + 2695 ] } ], "damage_taken": [ - 2682, + 2686, { "distinct_on": [ - 2703, + 2707, "[player_damages_select_column!]" ], "limit": [ @@ -80651,19 +80591,19 @@ export default { 38 ], "order_by": [ - 2701, + 2705, "[player_damages_order_by!]" ], "where": [ - 2691 + 2695 ] } ], "damage_taken_aggregate": [ - 2683, + 2687, { "distinct_on": [ - 2703, + 2707, "[player_damages_select_column!]" ], "limit": [ @@ -80673,11 +80613,11 @@ export default { 38 ], "order_by": [ - 2701, + 2705, "[player_damages_order_by!]" ], "where": [ - 2691 + 2695 ] } ], @@ -80685,10 +80625,10 @@ export default { 38 ], "deaths": [ - 2836, + 2840, { "distinct_on": [ - 2900, + 2904, "[player_kills_select_column!]" ], "limit": [ @@ -80698,19 +80638,19 @@ export default { 38 ], "order_by": [ - 2898, + 2902, "[player_kills_order_by!]" ], "where": [ - 2847 + 2851 ] } ], "deaths_aggregate": [ - 2837, + 2841, { "distinct_on": [ - 2900, + 2904, "[player_kills_select_column!]" ], "limit": [ @@ -80720,11 +80660,11 @@ export default { 38 ], "order_by": [ - 2898, + 2902, "[player_kills_order_by!]" ], "where": [ - 2847 + 2851 ] } ], @@ -80784,10 +80724,10 @@ export default { } ], "elo_history": [ - 4788, + 4792, { "distinct_on": [ - 4814, + 4818, "[v_player_elo_select_column!]" ], "limit": [ @@ -80797,19 +80737,19 @@ export default { 38 ], "order_by": [ - 4813, + 4817, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 4811 ] } ], "elo_history_aggregate": [ - 4789, + 4793, { "distinct_on": [ - 4814, + 4818, "[v_player_elo_select_column!]" ], "limit": [ @@ -80819,11 +80759,11 @@ export default { 38 ], "order_by": [ - 4813, + 4817, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 4811 ] } ], @@ -80837,10 +80777,10 @@ export default { 78 ], "faceit_rank_history": [ - 2750, + 2754, { "distinct_on": [ - 2771, + 2775, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -80850,19 +80790,19 @@ export default { 38 ], "order_by": [ - 2769, + 2773, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 2763 ] } ], "faceit_rank_history_aggregate": [ - 2751, + 2755, { "distinct_on": [ - 2771, + 2775, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -80872,28 +80812,31 @@ export default { 38 ], "order_by": [ - 2769, + 2773, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 2763 ] } ], "faceit_skill_level": [ 38 ], + "faceit_synced_at": [ + 4028 + ], "faceit_updated_at": [ - 4024 + 4028 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 2791, + 2795, { "distinct_on": [ - 2814, + 2818, "[player_flashes_select_column!]" ], "limit": [ @@ -80903,19 +80846,19 @@ export default { 38 ], "order_by": [ - 2812, + 2816, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2806 ] } ], "flashed_by_players_aggregate": [ - 2792, + 2796, { "distinct_on": [ - 2814, + 2818, "[player_flashes_select_column!]" ], "limit": [ @@ -80925,19 +80868,19 @@ export default { 38 ], "order_by": [ - 2812, + 2816, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2806 ] } ], "flashed_players": [ - 2791, + 2795, { "distinct_on": [ - 2814, + 2818, "[player_flashes_select_column!]" ], "limit": [ @@ -80947,19 +80890,19 @@ export default { 38 ], "order_by": [ - 2812, + 2816, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2806 ] } ], "flashed_players_aggregate": [ - 2792, + 2796, { "distinct_on": [ - 2814, + 2818, "[player_flashes_select_column!]" ], "limit": [ @@ -80969,19 +80912,19 @@ export default { 38 ], "order_by": [ - 2812, + 2816, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2806 ] } ], "friends": [ - 2356, + 2360, { "distinct_on": [ - 2381, + 2385, "[my_friends_select_column!]" ], "limit": [ @@ -80991,19 +80934,19 @@ export default { 38 ], "order_by": [ - 2379, + 2383, "[my_friends_order_by!]" ], "where": [ - 2368 + 2372 ] } ], "friends_aggregate": [ - 2357, + 2361, { "distinct_on": [ - 2381, + 2385, "[my_friends_select_column!]" ], "limit": [ @@ -81013,11 +80956,11 @@ export default { 38 ], "order_by": [ - 2379, + 2383, "[my_friends_order_by!]" ], "where": [ - 2368 + 2372 ] } ], @@ -81025,10 +80968,10 @@ export default { 38 ], "invited_players": [ - 3698, + 3702, { "distinct_on": [ - 3719, + 3723, "[team_invites_select_column!]" ], "limit": [ @@ -81038,19 +80981,19 @@ export default { 38 ], "order_by": [ - 3717, + 3721, "[team_invites_order_by!]" ], "where": [ - 3707 + 3711 ] } ], "invited_players_aggregate": [ - 3699, + 3703, { "distinct_on": [ - 3719, + 3723, "[team_invites_select_column!]" ], "limit": [ @@ -81060,11 +81003,11 @@ export default { 38 ], "order_by": [ - 3717, + 3721, "[team_invites_order_by!]" ], "where": [ - 3707 + 3711 ] } ], @@ -81087,10 +81030,10 @@ export default { 3 ], "kills": [ - 2836, + 2840, { "distinct_on": [ - 2900, + 2904, "[player_kills_select_column!]" ], "limit": [ @@ -81100,19 +81043,19 @@ export default { 38 ], "order_by": [ - 2898, + 2902, "[player_kills_order_by!]" ], "where": [ - 2847 + 2851 ] } ], "kills_aggregate": [ - 2837, + 2841, { "distinct_on": [ - 2900, + 2904, "[player_kills_select_column!]" ], "limit": [ @@ -81122,19 +81065,19 @@ export default { 38 ], "order_by": [ - 2898, + 2902, "[player_kills_order_by!]" ], "where": [ - 2847 + 2851 ] } ], "kills_by_weapons": [ - 2848, + 2852, { "distinct_on": [ - 2869, + 2873, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -81144,19 +81087,19 @@ export default { 38 ], "order_by": [ - 2867, + 2871, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 2861 ] } ], "kills_by_weapons_aggregate": [ - 2849, + 2853, { "distinct_on": [ - 2869, + 2873, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -81166,11 +81109,11 @@ export default { 38 ], "order_by": [ - 2867, + 2871, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 2861 ] } ], @@ -81178,10 +81121,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4028 ], "last_sign_in_at": [ - 4024 + 4028 ], "lobby_players": [ 1750, @@ -81240,10 +81183,10 @@ export default { 38 ], "match_map_hltv": [ - 4893, + 4897, { "distinct_on": [ - 4911, + 4915, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -81253,19 +81196,19 @@ export default { 38 ], "order_by": [ - 4910, + 4914, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 4906 ] } ], "match_map_hltv_aggregate": [ - 4894, + 4898, { "distinct_on": [ - 4911, + 4915, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -81275,19 +81218,19 @@ export default { 38 ], "order_by": [ - 4910, + 4914, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 4906 ] } ], "match_map_stats": [ - 2945, + 2949, { "distinct_on": [ - 2966, + 2970, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -81297,19 +81240,19 @@ export default { 38 ], "order_by": [ - 2964, + 2968, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 2958 ] } ], "match_map_stats_aggregate": [ - 2946, + 2950, { "distinct_on": [ - 2966, + 2970, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -81319,19 +81262,19 @@ export default { 38 ], "order_by": [ - 2964, + 2968, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 2958 ] } ], "match_stats": [ - 3004, + 3008, { "distinct_on": [ - 3020, + 3024, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -81341,19 +81284,19 @@ export default { 38 ], "order_by": [ - 3019, + 3023, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3017 ] } ], "match_stats_aggregate": [ - 3005, + 3009, { "distinct_on": [ - 3020, + 3024, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -81363,19 +81306,19 @@ export default { 38 ], "order_by": [ - 3019, + 3023, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3017 ] } ], "matches": [ - 2296, + 2300, { "distinct_on": [ - 2318, + 2322, "[matches_select_column!]" ], "limit": [ @@ -81385,22 +81328,22 @@ export default { 38 ], "order_by": [ - 2316, + 2320, "[matches_order_by!]" ], "where": [ - 2305 + 2309 ] } ], "matchmaking_cooldown": [ - 4024 + 4028 ], "multi_kills": [ - 4984, + 4988, { "distinct_on": [ - 5000, + 5004, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -81410,19 +81353,19 @@ export default { 38 ], "order_by": [ - 4999, + 5003, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 4997 ] } ], "multi_kills_aggregate": [ - 4985, + 4989, { "distinct_on": [ - 5000, + 5004, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -81432,11 +81375,11 @@ export default { 38 ], "order_by": [ - 4999, + 5003, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 4997 ] } ], @@ -81447,10 +81390,10 @@ export default { 3 ], "notifications": [ - 2429, + 2433, { "distinct_on": [ - 2457, + 2461, "[notifications_select_column!]" ], "limit": [ @@ -81460,19 +81403,19 @@ export default { 38 ], "order_by": [ - 2454, + 2458, "[notifications_order_by!]" ], "where": [ - 2441 + 2445 ] } ], "notifications_aggregate": [ - 2430, + 2434, { "distinct_on": [ - 2457, + 2461, "[notifications_select_column!]" ], "limit": [ @@ -81482,19 +81425,19 @@ export default { 38 ], "order_by": [ - 2454, + 2458, "[notifications_order_by!]" ], "where": [ - 2441 + 2445 ] } ], "objectives": [ - 3037, + 3041, { "distinct_on": [ - 3058, + 3062, "[player_objectives_select_column!]" ], "limit": [ @@ -81504,19 +81447,19 @@ export default { 38 ], "order_by": [ - 3056, + 3060, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3050 ] } ], "objectives_aggregate": [ - 3038, + 3042, { "distinct_on": [ - 3058, + 3062, "[player_objectives_select_column!]" ], "limit": [ @@ -81526,19 +81469,19 @@ export default { 38 ], "order_by": [ - 3056, + 3060, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3050 ] } ], "owned_teams": [ - 3981, + 3985, { "distinct_on": [ - 4003, + 4007, "[teams_select_column!]" ], "limit": [ @@ -81548,19 +81491,19 @@ export default { 38 ], "order_by": [ - 4001, + 4005, "[teams_order_by!]" ], "where": [ - 3990 + 3994 ] } ], "owned_teams_aggregate": [ - 3982, + 3986, { "distinct_on": [ - 4003, + 4007, "[teams_select_column!]" ], "limit": [ @@ -81570,11 +81513,11 @@ export default { 38 ], "order_by": [ - 4001, + 4005, "[teams_order_by!]" ], "where": [ - 3990 + 3994 ] } ], @@ -81587,10 +81530,10 @@ export default { } ], "pending_match_imports": [ - 2482, + 2486, { "distinct_on": [ - 2503, + 2507, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -81600,19 +81543,19 @@ export default { 38 ], "order_by": [ - 2501, + 2505, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2495 ] } ], "pending_match_imports_aggregate": [ - 2483, + 2487, { "distinct_on": [ - 2503, + 2507, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -81622,11 +81565,11 @@ export default { 38 ], "order_by": [ - 2501, + 2505, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2495 ] } ], @@ -81675,10 +81618,10 @@ export default { } ], "player_unused_utilities": [ - 3324, + 3328, { "distinct_on": [ - 3345, + 3349, "[player_unused_utility_select_column!]" ], "limit": [ @@ -81688,19 +81631,19 @@ export default { 38 ], "order_by": [ - 3343, + 3347, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3337 ] } ], "player_unused_utilities_aggregate": [ - 3325, + 3329, { "distinct_on": [ - 3345, + 3349, "[player_unused_utility_select_column!]" ], "limit": [ @@ -81710,11 +81653,11 @@ export default { 38 ], "order_by": [ - 3343, + 3347, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3337 ] } ], @@ -81722,10 +81665,10 @@ export default { 38 ], "premier_rank_history": [ - 3096, + 3100, { "distinct_on": [ - 3117, + 3121, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -81735,19 +81678,19 @@ export default { 38 ], "order_by": [ - 3115, + 3119, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3109 ] } ], "premier_rank_history_aggregate": [ - 3097, + 3101, { "distinct_on": [ - 3117, + 3121, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -81757,16 +81700,16 @@ export default { 38 ], "order_by": [ - 3115, + 3119, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3109 ] } ], "premier_rank_updated_at": [ - 4024 + 4028 ], "profile_url": [ 78 @@ -81778,10 +81721,10 @@ export default { 78 ], "sanctions": [ - 3137, + 3141, { "distinct_on": [ - 3158, + 3162, "[player_sanctions_select_column!]" ], "limit": [ @@ -81791,19 +81734,19 @@ export default { 38 ], "order_by": [ - 3156, + 3160, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3150 ] } ], "sanctions_aggregate": [ - 3138, + 3142, { "distinct_on": [ - 3158, + 3162, "[player_sanctions_select_column!]" ], "limit": [ @@ -81813,19 +81756,19 @@ export default { 38 ], "order_by": [ - 3156, + 3160, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3150 ] } ], "season_stats": [ - 3178, + 3182, { "distinct_on": [ - 3209, + 3213, "[player_season_stats_select_column!]" ], "limit": [ @@ -81835,19 +81778,19 @@ export default { 38 ], "order_by": [ - 3207, + 3211, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3201 ] } ], "season_stats_aggregate": [ - 3179, + 3183, { "distinct_on": [ - 3209, + 3213, "[player_season_stats_select_column!]" ], "limit": [ @@ -81857,11 +81800,11 @@ export default { 38 ], "order_by": [ - 3207, + 3211, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3201 ] } ], @@ -81869,19 +81812,19 @@ export default { 3 ], "stats": [ - 3237 + 3241 ], "steam_bans_checked_at": [ - 4024 + 4028 ], "steam_id": [ 180 ], "team_invites": [ - 3698, + 3702, { "distinct_on": [ - 3719, + 3723, "[team_invites_select_column!]" ], "limit": [ @@ -81891,19 +81834,19 @@ export default { 38 ], "order_by": [ - 3717, + 3721, "[team_invites_order_by!]" ], "where": [ - 3707 + 3711 ] } ], "team_invites_aggregate": [ - 3699, + 3703, { "distinct_on": [ - 3719, + 3723, "[team_invites_select_column!]" ], "limit": [ @@ -81913,19 +81856,19 @@ export default { 38 ], "order_by": [ - 3717, + 3721, "[team_invites_order_by!]" ], "where": [ - 3707 + 3711 ] } ], "team_members": [ - 3739, + 3743, { "distinct_on": [ - 3762, + 3766, "[team_roster_select_column!]" ], "limit": [ @@ -81935,19 +81878,19 @@ export default { 38 ], "order_by": [ - 3760, + 3764, "[team_roster_order_by!]" ], "where": [ - 3750 + 3754 ] } ], "team_members_aggregate": [ - 3740, + 3744, { "distinct_on": [ - 3762, + 3766, "[team_roster_select_column!]" ], "limit": [ @@ -81957,19 +81900,19 @@ export default { 38 ], "order_by": [ - 3760, + 3764, "[team_roster_order_by!]" ], "where": [ - 3750 + 3754 ] } ], "teams": [ - 3981, + 3985, { "distinct_on": [ - 4003, + 4007, "[teams_select_column!]" ], "limit": [ @@ -81979,11 +81922,11 @@ export default { 38 ], "order_by": [ - 4001, + 4005, "[teams_order_by!]" ], "where": [ - 3990 + 3994 ] } ], @@ -81991,10 +81934,10 @@ export default { 38 ], "tournament_organizers": [ - 4072, + 4076, { "distinct_on": [ - 4093, + 4097, "[tournament_organizers_select_column!]" ], "limit": [ @@ -82004,19 +81947,19 @@ export default { 38 ], "order_by": [ - 4091, + 4095, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4085 ] } ], "tournament_organizers_aggregate": [ - 4073, + 4077, { "distinct_on": [ - 4093, + 4097, "[tournament_organizers_select_column!]" ], "limit": [ @@ -82026,19 +81969,19 @@ export default { 38 ], "order_by": [ - 4091, + 4095, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4085 ] } ], "tournament_rosters": [ - 4246, + 4250, { "distinct_on": [ - 4267, + 4271, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -82048,19 +81991,19 @@ export default { 38 ], "order_by": [ - 4265, + 4269, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4259 ] } ], "tournament_rosters_aggregate": [ - 4247, + 4251, { "distinct_on": [ - 4267, + 4271, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -82070,19 +82013,19 @@ export default { 38 ], "order_by": [ - 4265, + 4269, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4259 ] } ], "tournament_trophies": [ - 4329, + 4333, { "distinct_on": [ - 4352, + 4356, "[tournament_trophies_select_column!]" ], "limit": [ @@ -82092,19 +82035,19 @@ export default { 38 ], "order_by": [ - 4350, + 4354, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4344 ] } ], "tournament_trophies_aggregate": [ - 4330, + 4334, { "distinct_on": [ - 4352, + 4356, "[tournament_trophies_select_column!]" ], "limit": [ @@ -82114,19 +82057,19 @@ export default { 38 ], "order_by": [ - 4350, + 4354, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4344 ] } ], "tournaments": [ - 4416, + 4420, { "distinct_on": [ - 4440, + 4444, "[tournaments_select_column!]" ], "limit": [ @@ -82136,19 +82079,19 @@ export default { 38 ], "order_by": [ - 4438, + 4442, "[tournaments_order_by!]" ], "where": [ - 4427 + 4431 ] } ], "tournaments_aggregate": [ - 4417, + 4421, { "distinct_on": [ - 4440, + 4444, "[tournaments_select_column!]" ], "limit": [ @@ -82158,19 +82101,19 @@ export default { 38 ], "order_by": [ - 4438, + 4442, "[tournaments_order_by!]" ], "where": [ - 4427 + 4431 ] } ], "utility_thrown": [ - 3365, + 3369, { "distinct_on": [ - 3386, + 3390, "[player_utility_select_column!]" ], "limit": [ @@ -82180,19 +82123,19 @@ export default { 38 ], "order_by": [ - 3384, + 3388, "[player_utility_order_by!]" ], "where": [ - 3374 + 3378 ] } ], "utility_thrown_aggregate": [ - 3366, + 3370, { "distinct_on": [ - 3386, + 3390, "[player_utility_select_column!]" ], "limit": [ @@ -82202,11 +82145,11 @@ export default { 38 ], "order_by": [ - 3384, + 3388, "[player_utility_order_by!]" ], "where": [ - 3374 + 3378 ] } ], @@ -82217,10 +82160,10 @@ export default { 3 ], "weapon_stats": [ - 3406, + 3410, { "distinct_on": [ - 3422, + 3426, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -82230,19 +82173,19 @@ export default { 38 ], "order_by": [ - 3421, + 3425, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3419 ] } ], "weapon_stats_aggregate": [ - 3407, + 3411, { "distinct_on": [ - 3422, + 3426, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -82252,11 +82195,11 @@ export default { 38 ], "order_by": [ - 3421, + 3425, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3419 ] } ], @@ -82278,10 +82221,10 @@ export default { }, "players_aggregate": { "aggregate": [ - 3441 + 3445 ], "nodes": [ - 3439 + 3443 ], "__typename": [ 78 @@ -82289,13 +82232,13 @@ export default { }, "players_aggregate_fields": { "avg": [ - 3442 + 3446 ], "count": [ 38, { "columns": [ - 3454, + 3458, "[players_select_column!]" ], "distinct": [ @@ -82304,31 +82247,31 @@ export default { } ], "max": [ - 3447 + 3451 ], "min": [ - 3448 + 3452 ], "stddev": [ - 3456 + 3460 ], "stddev_pop": [ - 3457 + 3461 ], "stddev_samp": [ - 3458 + 3462 ], "sum": [ - 3461 + 3465 ], "var_pop": [ - 3464 + 3468 ], "var_samp": [ - 3465 + 3469 ], "variance": [ - 3466 + 3470 ], "__typename": [ 78 @@ -82389,13 +82332,13 @@ export default { }, "players_bool_exp": { "_and": [ - 3443 + 3447 ], "_not": [ - 3443 + 3447 ], "_or": [ - 3443 + 3447 ], "abandoned_matches": [ 120 @@ -82404,22 +82347,22 @@ export default { 113 ], "aim_weapon_stats": [ - 2587 + 2591 ], "aim_weapon_stats_aggregate": [ - 2580 + 2584 ], "assists": [ - 2630 + 2634 ], "assists_aggregate": [ - 2621 + 2625 ], "assited_by_players": [ - 2630 + 2634 ], "assited_by_players_aggregate": [ - 2621 + 2625 ], "avatar_url": [ 80 @@ -82434,34 +82377,34 @@ export default { 80 ], "created_at": [ - 4025 + 4029 ], "current_lobby_id": [ - 4464 + 4468 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 2691 + 2695 ], "damage_dealt_aggregate": [ - 2684 + 2688 ], "damage_taken": [ - 2691 + 2695 ], "damage_taken_aggregate": [ - 2684 + 2688 ], "days_since_last_ban": [ 39 ], "deaths": [ - 2847 + 2851 ], "deaths_aggregate": [ - 2838 + 2842 ], "discord_id": [ 80 @@ -82476,10 +82419,10 @@ export default { 1354 ], "elo_history": [ - 4807 + 4811 ], "elo_history_aggregate": [ - 4790 + 4794 ], "faceit_elo": [ 39 @@ -82491,46 +82434,49 @@ export default { 80 ], "faceit_rank_history": [ - 2759 + 2763 ], "faceit_rank_history_aggregate": [ - 2752 + 2756 ], "faceit_skill_level": [ 39 ], + "faceit_synced_at": [ + 4029 + ], "faceit_updated_at": [ - 4025 + 4029 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 2802 + 2806 ], "flashed_by_players_aggregate": [ - 2793 + 2797 ], "flashed_players": [ - 2802 + 2806 ], "flashed_players_aggregate": [ - 2793 + 2797 ], "friends": [ - 2368 + 2372 ], "friends_aggregate": [ - 2358 + 2362 ], "game_ban_count": [ 39 ], "invited_players": [ - 3707 + 3711 ], "invited_players_aggregate": [ - 3700 + 3704 ], "is_banned": [ 4 @@ -82551,25 +82497,25 @@ export default { 4 ], "kills": [ - 2847 + 2851 ], "kills_aggregate": [ - 2838 + 2842 ], "kills_by_weapons": [ - 2857 + 2861 ], "kills_by_weapons_aggregate": [ - 2850 + 2854 ], "language": [ 80 ], "last_read_news_at": [ - 4025 + 4029 ], "last_sign_in_at": [ - 4025 + 4029 ], "lobby_players": [ 1761 @@ -82590,34 +82536,34 @@ export default { 39 ], "match_map_hltv": [ - 4902 + 4906 ], "match_map_hltv_aggregate": [ - 4895 + 4899 ], "match_map_stats": [ - 2954 + 2958 ], "match_map_stats_aggregate": [ - 2947 + 2951 ], "match_stats": [ - 3013 + 3017 ], "match_stats_aggregate": [ - 3006 + 3010 ], "matches": [ - 2305 + 2309 ], "matchmaking_cooldown": [ - 4025 + 4029 ], "multi_kills": [ - 4993 + 4997 ], "multi_kills_aggregate": [ - 4986 + 4990 ], "name": [ 80 @@ -82626,31 +82572,31 @@ export default { 4 ], "notifications": [ - 2441 + 2445 ], "notifications_aggregate": [ - 2431 + 2435 ], "objectives": [ - 3046 + 3050 ], "objectives_aggregate": [ - 3039 + 3043 ], "owned_teams": [ - 3990 + 3994 ], "owned_teams_aggregate": [ - 3983 + 3987 ], "peak_elo": [ 1354 ], "pending_match_imports": [ - 2491 + 2495 ], "pending_match_imports_aggregate": [ - 2484 + 2488 ], "player_lineup": [ 1942 @@ -82659,22 +82605,22 @@ export default { 1933 ], "player_unused_utilities": [ - 3333 + 3337 ], "player_unused_utilities_aggregate": [ - 3326 + 3330 ], "premier_rank": [ 39 ], "premier_rank_history": [ - 3105 + 3109 ], "premier_rank_history_aggregate": [ - 3098 + 3102 ], "premier_rank_updated_at": [ - 4025 + 4029 ], "profile_url": [ 80 @@ -82686,76 +82632,76 @@ export default { 80 ], "sanctions": [ - 3146 + 3150 ], "sanctions_aggregate": [ - 3139 + 3143 ], "season_stats": [ - 3197 + 3201 ], "season_stats_aggregate": [ - 3180 + 3184 ], "show_match_ready_modal": [ 4 ], "stats": [ - 3241 + 3245 ], "steam_bans_checked_at": [ - 4025 + 4029 ], "steam_id": [ 182 ], "team_invites": [ - 3707 + 3711 ], "team_invites_aggregate": [ - 3700 + 3704 ], "team_members": [ - 3750 + 3754 ], "team_members_aggregate": [ - 3741 + 3745 ], "teams": [ - 3990 + 3994 ], "total_matches": [ 39 ], "tournament_organizers": [ - 4081 + 4085 ], "tournament_organizers_aggregate": [ - 4074 + 4078 ], "tournament_rosters": [ - 4255 + 4259 ], "tournament_rosters_aggregate": [ - 4248 + 4252 ], "tournament_trophies": [ - 4340 + 4344 ], "tournament_trophies_aggregate": [ - 4331 + 4335 ], "tournaments": [ - 4427 + 4431 ], "tournaments_aggregate": [ - 4418 + 4422 ], "utility_thrown": [ - 3374 + 3378 ], "utility_thrown_aggregate": [ - 3367 + 3371 ], "vac_ban_count": [ 39 @@ -82764,10 +82710,10 @@ export default { 4 ], "weapon_stats": [ - 3415 + 3419 ], "weapon_stats_aggregate": [ - 3408 + 3412 ], "wins": [ 39 @@ -82817,13 +82763,13 @@ export default { 117 ], "aim_weapon_stats": [ - 2584 + 2588 ], "assists": [ - 2627 + 2631 ], "assited_by_players": [ - 2627 + 2631 ], "avatar_url": [ 78 @@ -82835,22 +82781,22 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2688 + 2692 ], "damage_taken": [ - 2688 + 2692 ], "days_since_last_ban": [ 38 ], "deaths": [ - 2844 + 2848 ], "discord_id": [ 78 @@ -82859,7 +82805,7 @@ export default { 317 ], "elo_history": [ - 4804 + 4808 ], "faceit_elo": [ 38 @@ -82871,61 +82817,64 @@ export default { 78 ], "faceit_rank_history": [ - 2756 + 2760 ], "faceit_skill_level": [ 38 ], + "faceit_synced_at": [ + 4028 + ], "faceit_updated_at": [ - 4024 + 4028 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 2799 + 2803 ], "flashed_players": [ - 2799 + 2803 ], "friends": [ - 2365 + 2369 ], "game_ban_count": [ 38 ], "invited_players": [ - 3704 + 3708 ], "kills": [ - 2844 + 2848 ], "kills_by_weapons": [ - 2854 + 2858 ], "language": [ 78 ], "last_read_news_at": [ - 4024 + 4028 ], "last_sign_in_at": [ - 4024 + 4028 ], "lobby_players": [ 1758 ], "match_map_hltv": [ - 4899 + 4903 ], "match_map_stats": [ - 2951 + 2955 ], "match_stats": [ - 3010 + 3014 ], "multi_kills": [ - 4990 + 4994 ], "name": [ 78 @@ -82934,31 +82883,31 @@ export default { 3 ], "notifications": [ - 2438 + 2442 ], "objectives": [ - 3043 + 3047 ], "owned_teams": [ - 3987 + 3991 ], "pending_match_imports": [ - 2488 + 2492 ], "player_lineup": [ 1939 ], "player_unused_utilities": [ - 3330 + 3334 ], "premier_rank": [ 38 ], "premier_rank_history": [ - 3102 + 3106 ], "premier_rank_updated_at": [ - 4024 + 4028 ], "profile_url": [ 78 @@ -82970,43 +82919,43 @@ export default { 78 ], "sanctions": [ - 3143 + 3147 ], "season_stats": [ - 3194 + 3198 ], "show_match_ready_modal": [ 3 ], "stats": [ - 3248 + 3252 ], "steam_bans_checked_at": [ - 4024 + 4028 ], "steam_id": [ 180 ], "team_invites": [ - 3704 + 3708 ], "team_members": [ - 3747 + 3751 ], "tournament_organizers": [ - 4078 + 4082 ], "tournament_rosters": [ - 4252 + 4256 ], "tournament_trophies": [ - 4337 + 4341 ], "tournaments": [ - 4424 + 4428 ], "utility_thrown": [ - 3371 + 3375 ], "vac_ban_count": [ 38 @@ -83015,7 +82964,7 @@ export default { 3 ], "weapon_stats": [ - 3412 + 3416 ], "__typename": [ 78 @@ -83029,10 +82978,10 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "current_lobby_id": [ - 4462 + 4466 ], "custom_avatar_url": [ 78 @@ -83055,8 +83004,11 @@ export default { "faceit_skill_level": [ 38 ], + "faceit_synced_at": [ + 4028 + ], "faceit_updated_at": [ - 4024 + 4028 ], "faceit_url": [ 78 @@ -83068,10 +83020,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4028 ], "last_sign_in_at": [ - 4024 + 4028 ], "losses": [ 38 @@ -83086,7 +83038,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4024 + 4028 ], "name": [ 78 @@ -83095,7 +83047,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4028 ], "profile_url": [ 78 @@ -83104,7 +83056,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -83139,10 +83091,10 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "current_lobby_id": [ - 4462 + 4466 ], "custom_avatar_url": [ 78 @@ -83165,8 +83117,11 @@ export default { "faceit_skill_level": [ 38 ], + "faceit_synced_at": [ + 4028 + ], "faceit_updated_at": [ - 4024 + 4028 ], "faceit_url": [ 78 @@ -83178,10 +83133,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4028 ], "last_sign_in_at": [ - 4024 + 4028 ], "losses": [ 38 @@ -83196,7 +83151,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4024 + 4028 ], "name": [ 78 @@ -83205,7 +83160,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4028 ], "profile_url": [ 78 @@ -83214,7 +83169,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -83246,7 +83201,7 @@ export default { 38 ], "returning": [ - 3439 + 3443 ], "__typename": [ 78 @@ -83254,10 +83209,10 @@ export default { }, "players_obj_rel_insert_input": { "data": [ - 3446 + 3450 ], "on_conflict": [ - 3451 + 3455 ], "__typename": [ 78 @@ -83265,13 +83220,13 @@ export default { }, "players_on_conflict": { "constraint": [ - 3444 + 3448 ], "update_columns": [ - 3462 + 3466 ], "where": [ - 3443 + 3447 ], "__typename": [ 78 @@ -83282,268 +83237,271 @@ export default { 116 ], "aim_weapon_stats_aggregate": [ - 2583 + 2587 ], "assists_aggregate": [ - 2626 + 2630 ], "assited_by_players_aggregate": [ - 2626 + 2630 ], "avatar_url": [ - 2481 + 2485 ], "coach_lineups_aggregate": [ 1981 ], "country": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "current_lobby_id": [ - 2481 + 2485 ], "custom_avatar_url": [ - 2481 + 2485 ], "damage_dealt_aggregate": [ - 2687 + 2691 ], "damage_taken_aggregate": [ - 2687 + 2691 ], "days_since_last_ban": [ - 2481 + 2485 ], "deaths_aggregate": [ - 2843 + 2847 ], "discord_id": [ - 2481 + 2485 ], "draft_game_players_aggregate": [ 316 ], "elo": [ - 2481 + 2485 ], "elo_history_aggregate": [ - 4803 + 4807 ], "faceit_elo": [ - 2481 + 2485 ], "faceit_nickname": [ - 2481 + 2485 ], "faceit_player_id": [ - 2481 + 2485 ], "faceit_rank_history_aggregate": [ - 2755 + 2759 ], "faceit_skill_level": [ - 2481 + 2485 + ], + "faceit_synced_at": [ + 2485 ], "faceit_updated_at": [ - 2481 + 2485 ], "faceit_url": [ - 2481 + 2485 ], "flashed_by_players_aggregate": [ - 2798 + 2802 ], "flashed_players_aggregate": [ - 2798 + 2802 ], "friends_aggregate": [ - 2363 + 2367 ], "game_ban_count": [ - 2481 + 2485 ], "invited_players_aggregate": [ - 3703 + 3707 ], "is_banned": [ - 2481 + 2485 ], "is_gagged": [ - 2481 + 2485 ], "is_in_another_match": [ - 2481 + 2485 ], "is_in_draft": [ - 2481 + 2485 ], "is_in_lobby": [ - 2481 + 2485 ], "is_muted": [ - 2481 + 2485 ], "kills_aggregate": [ - 2843 + 2847 ], "kills_by_weapons_aggregate": [ - 2853 + 2857 ], "language": [ - 2481 + 2485 ], "last_read_news_at": [ - 2481 + 2485 ], "last_sign_in_at": [ - 2481 + 2485 ], "lobby_players_aggregate": [ 1757 ], "losses": [ - 2481 + 2485 ], "losses_competitive": [ - 2481 + 2485 ], "losses_duel": [ - 2481 + 2485 ], "losses_wingman": [ - 2481 + 2485 ], "match_map_hltv_aggregate": [ - 4898 + 4902 ], "match_map_stats_aggregate": [ - 2950 + 2954 ], "match_stats_aggregate": [ - 3009 + 3013 ], "matches_aggregate": [ - 2301 + 2305 ], "matchmaking_cooldown": [ - 2481 + 2485 ], "multi_kills_aggregate": [ - 4989 + 4993 ], "name": [ - 2481 + 2485 ], "name_registered": [ - 2481 + 2485 ], "notifications_aggregate": [ - 2436 + 2440 ], "objectives_aggregate": [ - 3042 + 3046 ], "owned_teams_aggregate": [ - 3986 + 3990 ], "peak_elo": [ - 2481 + 2485 ], "pending_match_imports_aggregate": [ - 2487 + 2491 ], "player_lineup_aggregate": [ 1938 ], "player_unused_utilities_aggregate": [ - 3329 + 3333 ], "premier_rank": [ - 2481 + 2485 ], "premier_rank_history_aggregate": [ - 3101 + 3105 ], "premier_rank_updated_at": [ - 2481 + 2485 ], "profile_url": [ - 2481 + 2485 ], "role": [ - 2481 + 2485 ], "roster_image_url": [ - 2481 + 2485 ], "sanctions_aggregate": [ - 3142 + 3146 ], "season_stats_aggregate": [ - 3193 + 3197 ], "show_match_ready_modal": [ - 2481 + 2485 ], "stats": [ - 3250 + 3254 ], "steam_bans_checked_at": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_invites_aggregate": [ - 3703 + 3707 ], "team_members_aggregate": [ - 3746 + 3750 ], "teams_aggregate": [ - 3986 + 3990 ], "total_matches": [ - 2481 + 2485 ], "tournament_organizers_aggregate": [ - 4077 + 4081 ], "tournament_rosters_aggregate": [ - 4251 + 4255 ], "tournament_trophies_aggregate": [ - 4336 + 4340 ], "tournaments_aggregate": [ - 4423 + 4427 ], "utility_thrown_aggregate": [ - 3370 + 3374 ], "vac_ban_count": [ - 2481 + 2485 ], "vac_banned": [ - 2481 + 2485 ], "weapon_stats_aggregate": [ - 3411 + 3415 ], "wins": [ - 2481 + 2485 ], "wins_competitive": [ - 2481 + 2485 ], "wins_duel": [ - 2481 + 2485 ], "wins_wingman": [ - 2481 + 2485 ], "__typename": [ 78 @@ -83566,7 +83524,7 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "custom_avatar_url": [ 78 @@ -83589,8 +83547,11 @@ export default { "faceit_skill_level": [ 38 ], + "faceit_synced_at": [ + 4028 + ], "faceit_updated_at": [ - 4024 + 4028 ], "faceit_url": [ 78 @@ -83602,10 +83563,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4028 ], "last_sign_in_at": [ - 4024 + 4028 ], "name": [ 78 @@ -83617,7 +83578,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4028 ], "profile_url": [ 78 @@ -83632,7 +83593,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -83808,7 +83769,7 @@ export default { }, "players_stream_cursor_input": { "initial_value": [ - 3460 + 3464 ], "ordering": [ 236 @@ -83825,7 +83786,7 @@ export default { 78 ], "created_at": [ - 4024 + 4028 ], "custom_avatar_url": [ 78 @@ -83848,8 +83809,11 @@ export default { "faceit_skill_level": [ 38 ], + "faceit_synced_at": [ + 4028 + ], "faceit_updated_at": [ - 4024 + 4028 ], "faceit_url": [ 78 @@ -83861,10 +83825,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4028 ], "last_sign_in_at": [ - 4024 + 4028 ], "name": [ 78 @@ -83876,7 +83840,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4028 ], "profile_url": [ 78 @@ -83891,7 +83855,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -83962,13 +83926,13 @@ export default { "players_update_column": {}, "players_updates": { "_inc": [ - 3445 + 3449 ], "_set": [ - 3455 + 3459 ], "where": [ - 3443 + 3447 ], "__typename": [ 78 @@ -84138,7 +84102,7 @@ export default { 38 ], "published_at": [ - 4024 + 4028 ], "runtime": [ 901 @@ -84152,10 +84116,10 @@ export default { }, "plugin_versions_aggregate": { "aggregate": [ - 3469 + 3473 ], "nodes": [ - 3467 + 3471 ], "__typename": [ 78 @@ -84163,13 +84127,13 @@ export default { }, "plugin_versions_aggregate_fields": { "avg": [ - 3470 + 3474 ], "count": [ 38, { "columns": [ - 3481, + 3485, "[plugin_versions_select_column!]" ], "distinct": [ @@ -84178,31 +84142,31 @@ export default { } ], "max": [ - 3475 + 3479 ], "min": [ - 3476 + 3480 ], "stddev": [ - 3483 + 3487 ], "stddev_pop": [ - 3484 + 3488 ], "stddev_samp": [ - 3485 + 3489 ], "sum": [ - 3488 + 3492 ], "var_pop": [ - 3491 + 3495 ], "var_samp": [ - 3492 + 3496 ], "variance": [ - 3493 + 3497 ], "__typename": [ 78 @@ -84218,19 +84182,19 @@ export default { }, "plugin_versions_bool_exp": { "_and": [ - 3471 + 3475 ], "_not": [ - 3471 + 3475 ], "_or": [ - 3471 + 3475 ], "min_game_build_id": [ 39 ], "published_at": [ - 4025 + 4029 ], "runtime": [ 902 @@ -84256,7 +84220,7 @@ export default { 38 ], "published_at": [ - 4024 + 4028 ], "runtime": [ 901 @@ -84273,7 +84237,7 @@ export default { 38 ], "published_at": [ - 4024 + 4028 ], "version": [ 78 @@ -84287,7 +84251,7 @@ export default { 38 ], "published_at": [ - 4024 + 4028 ], "version": [ 78 @@ -84301,7 +84265,7 @@ export default { 38 ], "returning": [ - 3467 + 3471 ], "__typename": [ 78 @@ -84309,13 +84273,13 @@ export default { }, "plugin_versions_on_conflict": { "constraint": [ - 3472 + 3476 ], "update_columns": [ - 3489 + 3493 ], "where": [ - 3471 + 3475 ], "__typename": [ 78 @@ -84323,16 +84287,16 @@ export default { }, "plugin_versions_order_by": { "min_game_build_id": [ - 2481 + 2485 ], "published_at": [ - 2481 + 2485 ], "runtime": [ - 2481 + 2485 ], "version": [ - 2481 + 2485 ], "__typename": [ 78 @@ -84355,7 +84319,7 @@ export default { 38 ], "published_at": [ - 4024 + 4028 ], "runtime": [ 901 @@ -84393,7 +84357,7 @@ export default { }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 3487 + 3491 ], "ordering": [ 236 @@ -84407,7 +84371,7 @@ export default { 38 ], "published_at": [ - 4024 + 4028 ], "runtime": [ 901 @@ -84430,13 +84394,13 @@ export default { "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 3473 + 3477 ], "_set": [ - 3482 + 3486 ], "where": [ - 3471 + 3475 ], "__typename": [ 78 @@ -84468,7 +84432,7 @@ export default { }, "recalculate_tournament_trophies_args": { "_tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -84476,7 +84440,7 @@ export default { }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -84492,7 +84456,7 @@ export default { }, "restart_league_season_args": { "_league_season_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -84500,16 +84464,16 @@ export default { }, "seasons": { "created_at": [ - 4024 + 4028 ], "description": [ 78 ], "ends_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "needs_rebuild": [ 3 @@ -84518,10 +84482,10 @@ export default { 38 ], "player_season_stats": [ - 3178, + 3182, { "distinct_on": [ - 3209, + 3213, "[player_season_stats_select_column!]" ], "limit": [ @@ -84531,19 +84495,19 @@ export default { 38 ], "order_by": [ - 3207, + 3211, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3201 ] } ], "player_season_stats_aggregate": [ - 3179, + 3183, { "distinct_on": [ - 3209, + 3213, "[player_season_stats_select_column!]" ], "limit": [ @@ -84553,16 +84517,16 @@ export default { 38 ], "order_by": [ - 3207, + 3211, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3201 ] } ], "starts_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -84570,10 +84534,10 @@ export default { }, "seasons_aggregate": { "aggregate": [ - 3500 + 3504 ], "nodes": [ - 3498 + 3502 ], "__typename": [ 78 @@ -84581,13 +84545,13 @@ export default { }, "seasons_aggregate_fields": { "avg": [ - 3501 + 3505 ], "count": [ 38, { "columns": [ - 3513, + 3517, "[seasons_select_column!]" ], "distinct": [ @@ -84596,31 +84560,31 @@ export default { } ], "max": [ - 3506 + 3510 ], "min": [ - 3507 + 3511 ], "stddev": [ - 3515 + 3519 ], "stddev_pop": [ - 3516 + 3520 ], "stddev_samp": [ - 3517 + 3521 ], "sum": [ - 3520 + 3524 ], "var_pop": [ - 3523 + 3527 ], "var_samp": [ - 3524 + 3528 ], "variance": [ - 3525 + 3529 ], "__typename": [ 78 @@ -84636,25 +84600,25 @@ export default { }, "seasons_bool_exp": { "_and": [ - 3502 + 3506 ], "_not": [ - 3502 + 3506 ], "_or": [ - 3502 + 3506 ], "created_at": [ - 4025 + 4029 ], "description": [ 80 ], "ends_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "needs_rebuild": [ 4 @@ -84663,13 +84627,13 @@ export default { 39 ], "player_season_stats": [ - 3197 + 3201 ], "player_season_stats_aggregate": [ - 3180 + 3184 ], "starts_at": [ - 4025 + 4029 ], "__typename": [ 78 @@ -84686,16 +84650,16 @@ export default { }, "seasons_insert_input": { "created_at": [ - 4024 + 4028 ], "description": [ 78 ], "ends_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "needs_rebuild": [ 3 @@ -84704,10 +84668,10 @@ export default { 38 ], "player_season_stats": [ - 3194 + 3198 ], "starts_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -84715,22 +84679,22 @@ export default { }, "seasons_max_fields": { "created_at": [ - 4024 + 4028 ], "description": [ 78 ], "ends_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "number": [ 38 ], "starts_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -84738,22 +84702,22 @@ export default { }, "seasons_min_fields": { "created_at": [ - 4024 + 4028 ], "description": [ 78 ], "ends_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "number": [ 38 ], "starts_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -84764,7 +84728,7 @@ export default { 38 ], "returning": [ - 3498 + 3502 ], "__typename": [ 78 @@ -84772,10 +84736,10 @@ export default { }, "seasons_obj_rel_insert_input": { "data": [ - 3505 + 3509 ], "on_conflict": [ - 3510 + 3514 ], "__typename": [ 78 @@ -84783,13 +84747,13 @@ export default { }, "seasons_on_conflict": { "constraint": [ - 3503 + 3507 ], "update_columns": [ - 3521 + 3525 ], "where": [ - 3502 + 3506 ], "__typename": [ 78 @@ -84797,28 +84761,28 @@ export default { }, "seasons_order_by": { "created_at": [ - 2481 + 2485 ], "description": [ - 2481 + 2485 ], "ends_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "needs_rebuild": [ - 2481 + 2485 ], "number": [ - 2481 + 2485 ], "player_season_stats_aggregate": [ - 3193 + 3197 ], "starts_at": [ - 2481 + 2485 ], "__typename": [ 78 @@ -84826,7 +84790,7 @@ export default { }, "seasons_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -84835,16 +84799,16 @@ export default { "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4024 + 4028 ], "description": [ 78 ], "ends_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "needs_rebuild": [ 3 @@ -84853,7 +84817,7 @@ export default { 38 ], "starts_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -84885,7 +84849,7 @@ export default { }, "seasons_stream_cursor_input": { "initial_value": [ - 3519 + 3523 ], "ordering": [ 236 @@ -84896,16 +84860,16 @@ export default { }, "seasons_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "description": [ 78 ], "ends_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "needs_rebuild": [ 3 @@ -84914,7 +84878,7 @@ export default { 38 ], "starts_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -84931,13 +84895,13 @@ export default { "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 3504 + 3508 ], "_set": [ - 3514 + 3518 ], "where": [ - 3502 + 3506 ], "__typename": [ 78 @@ -85042,10 +85006,10 @@ export default { }, "server_regions_aggregate": { "aggregate": [ - 3528 + 3532 ], "nodes": [ - 3526 + 3530 ], "__typename": [ 78 @@ -85053,13 +85017,13 @@ export default { }, "server_regions_aggregate_fields": { "avg": [ - 3529 + 3533 ], "count": [ 38, { "columns": [ - 3540, + 3544, "[server_regions_select_column!]" ], "distinct": [ @@ -85068,31 +85032,31 @@ export default { } ], "max": [ - 3533 + 3537 ], "min": [ - 3534 + 3538 ], "stddev": [ - 3542 + 3546 ], "stddev_pop": [ - 3543 + 3547 ], "stddev_samp": [ - 3544 + 3548 ], "sum": [ - 3547 + 3551 ], "var_pop": [ - 3550 + 3554 ], "var_samp": [ - 3551 + 3555 ], "variance": [ - 3552 + 3556 ], "__typename": [ 78 @@ -85111,13 +85075,13 @@ export default { }, "server_regions_bool_exp": { "_and": [ - 3530 + 3534 ], "_not": [ - 3530 + 3534 ], "_or": [ - 3530 + 3534 ], "available_server_count": [ 39 @@ -85219,7 +85183,7 @@ export default { 38 ], "returning": [ - 3526 + 3530 ], "__typename": [ 78 @@ -85227,10 +85191,10 @@ export default { }, "server_regions_obj_rel_insert_input": { "data": [ - 3532 + 3536 ], "on_conflict": [ - 3537 + 3541 ], "__typename": [ 78 @@ -85238,13 +85202,13 @@ export default { }, "server_regions_on_conflict": { "constraint": [ - 3531 + 3535 ], "update_columns": [ - 3548 + 3552 ], "where": [ - 3530 + 3534 ], "__typename": [ 78 @@ -85252,31 +85216,31 @@ export default { }, "server_regions_order_by": { "available_server_count": [ - 2481 + 2485 ], "description": [ - 2481 + 2485 ], "game_server_nodes_aggregate": [ 1236 ], "has_node": [ - 2481 + 2485 ], "is_lan": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "steam_relay": [ - 2481 + 2485 ], "total_server_count": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -85343,7 +85307,7 @@ export default { }, "server_regions_stream_cursor_input": { "initial_value": [ - 3546 + 3550 ], "ordering": [ 236 @@ -85383,10 +85347,10 @@ export default { "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 3541 + 3545 ], "where": [ - 3530 + 3534 ], "__typename": [ 78 @@ -85427,7 +85391,7 @@ export default { }, "servers": { "api_password": [ - 4462 + 4466 ], "boot_status": [ 78 @@ -85448,7 +85412,7 @@ export default { 78 ], "current_match": [ - 2296 + 2300 ], "enabled": [ 3 @@ -85466,7 +85430,7 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "is_dedicated": [ 3 @@ -85475,10 +85439,10 @@ export default { 78 ], "matches": [ - 2296, + 2300, { "distinct_on": [ - 2318, + 2322, "[matches_select_column!]" ], "limit": [ @@ -85488,19 +85452,19 @@ export default { 38 ], "order_by": [ - 2316, + 2320, "[matches_order_by!]" ], "where": [ - 2305 + 2309 ] } ], "matches_aggregate": [ - 2297, + 2301, { "distinct_on": [ - 2318, + 2322, "[matches_select_column!]" ], "limit": [ @@ -85510,11 +85474,11 @@ export default { 38 ], "order_by": [ - 2316, + 2320, "[matches_order_by!]" ], "where": [ - 2305 + 2309 ] } ], @@ -85522,7 +85486,7 @@ export default { 38 ], "offline_at": [ - 4024 + 4028 ], "plugin_runtime": [ 901 @@ -85543,10 +85507,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4466 ], "server_region": [ - 3526 + 3530 ], "steam_relay": [ 78 @@ -85558,7 +85522,7 @@ export default { 982 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -85566,10 +85530,10 @@ export default { }, "servers_aggregate": { "aggregate": [ - 3559 + 3563 ], "nodes": [ - 3553 + 3557 ], "__typename": [ 78 @@ -85577,13 +85541,13 @@ export default { }, "servers_aggregate_bool_exp": { "bool_and": [ - 3556 + 3560 ], "bool_or": [ - 3557 + 3561 ], "count": [ - 3558 + 3562 ], "__typename": [ 78 @@ -85591,13 +85555,13 @@ export default { }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 3578 + 3582 ], "distinct": [ 3 ], "filter": [ - 3564 + 3568 ], "predicate": [ 4 @@ -85608,13 +85572,13 @@ export default { }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 3579 + 3583 ], "distinct": [ 3 ], "filter": [ - 3564 + 3568 ], "predicate": [ 4 @@ -85625,13 +85589,13 @@ export default { }, "servers_aggregate_bool_exp_count": { "arguments": [ - 3577 + 3581 ], "distinct": [ 3 ], "filter": [ - 3564 + 3568 ], "predicate": [ 39 @@ -85642,13 +85606,13 @@ export default { }, "servers_aggregate_fields": { "avg": [ - 3562 + 3566 ], "count": [ 38, { "columns": [ - 3577, + 3581, "[servers_select_column!]" ], "distinct": [ @@ -85657,31 +85621,31 @@ export default { } ], "max": [ - 3568 + 3572 ], "min": [ - 3570 + 3574 ], "stddev": [ - 3581 + 3585 ], "stddev_pop": [ - 3583 + 3587 ], "stddev_samp": [ - 3585 + 3589 ], "sum": [ - 3589 + 3593 ], "var_pop": [ - 3593 + 3597 ], "var_samp": [ - 3595 + 3599 ], "variance": [ - 3597 + 3601 ], "__typename": [ 78 @@ -85689,37 +85653,37 @@ export default { }, "servers_aggregate_order_by": { "avg": [ - 3563 + 3567 ], "count": [ - 2481 + 2485 ], "max": [ - 3569 + 3573 ], "min": [ - 3571 + 3575 ], "stddev": [ - 3582 + 3586 ], "stddev_pop": [ - 3584 + 3588 ], "stddev_samp": [ - 3586 + 3590 ], "sum": [ - 3590 + 3594 ], "var_pop": [ - 3594 + 3598 ], "var_samp": [ - 3596 + 3600 ], "variance": [ - 3598 + 3602 ], "__typename": [ 78 @@ -85727,10 +85691,10 @@ export default { }, "servers_arr_rel_insert_input": { "data": [ - 3567 + 3571 ], "on_conflict": [ - 3574 + 3578 ], "__typename": [ 78 @@ -85752,13 +85716,13 @@ export default { }, "servers_avg_order_by": { "max_players": [ - 2481 + 2485 ], "port": [ - 2481 + 2485 ], "tv_port": [ - 2481 + 2485 ], "__typename": [ 78 @@ -85766,16 +85730,16 @@ export default { }, "servers_bool_exp": { "_and": [ - 3564 + 3568 ], "_not": [ - 3564 + 3568 ], "_or": [ - 3564 + 3568 ], "api_password": [ - 4464 + 4468 ], "boot_status": [ 80 @@ -85796,7 +85760,7 @@ export default { 80 ], "current_match": [ - 2305 + 2309 ], "enabled": [ 4 @@ -85814,7 +85778,7 @@ export default { 80 ], "id": [ - 4464 + 4468 ], "is_dedicated": [ 4 @@ -85823,16 +85787,16 @@ export default { 80 ], "matches": [ - 2305 + 2309 ], "matches_aggregate": [ - 2298 + 2302 ], "max_players": [ 39 ], "offline_at": [ - 4025 + 4029 ], "plugin_runtime": [ 902 @@ -85853,10 +85817,10 @@ export default { 80 ], "reserved_by_match_id": [ - 4464 + 4468 ], "server_region": [ - 3530 + 3534 ], "steam_relay": [ 80 @@ -85868,7 +85832,7 @@ export default { 983 ], "updated_at": [ - 4025 + 4029 ], "__typename": [ 78 @@ -85891,7 +85855,7 @@ export default { }, "servers_insert_input": { "api_password": [ - 4462 + 4466 ], "boot_status": [ 78 @@ -85906,7 +85870,7 @@ export default { 3 ], "current_match": [ - 2314 + 2318 ], "enabled": [ 3 @@ -85924,7 +85888,7 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "is_dedicated": [ 3 @@ -85933,13 +85897,13 @@ export default { 78 ], "matches": [ - 2302 + 2306 ], "max_players": [ 38 ], "offline_at": [ - 4024 + 4028 ], "plugin_runtime": [ 901 @@ -85960,10 +85924,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4466 ], "server_region": [ - 3536 + 3540 ], "steam_relay": [ 78 @@ -85975,7 +85939,7 @@ export default { 982 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -85983,7 +85947,7 @@ export default { }, "servers_max_fields": { "api_password": [ - 4462 + 4466 ], "boot_status": [ 78 @@ -86010,7 +85974,7 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "label": [ 78 @@ -86019,7 +85983,7 @@ export default { 38 ], "offline_at": [ - 4024 + 4028 ], "plugin_version": [ 78 @@ -86031,7 +85995,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4466 ], "steam_relay": [ 78 @@ -86040,7 +86004,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -86048,58 +86012,58 @@ export default { }, "servers_max_order_by": { "api_password": [ - 2481 + 2485 ], "boot_status": [ - 2481 + 2485 ], "boot_status_detail": [ - 2481 + 2485 ], "connect_password": [ - 2481 + 2485 ], "game": [ - 2481 + 2485 ], "game_server_node_id": [ - 2481 + 2485 ], "host": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "max_players": [ - 2481 + 2485 ], "offline_at": [ - 2481 + 2485 ], "plugin_version": [ - 2481 + 2485 ], "port": [ - 2481 + 2485 ], "region": [ - 2481 + 2485 ], "reserved_by_match_id": [ - 2481 + 2485 ], "steam_relay": [ - 2481 + 2485 ], "tv_port": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "__typename": [ 78 @@ -86107,7 +86071,7 @@ export default { }, "servers_min_fields": { "api_password": [ - 4462 + 4466 ], "boot_status": [ 78 @@ -86134,7 +86098,7 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "label": [ 78 @@ -86143,7 +86107,7 @@ export default { 38 ], "offline_at": [ - 4024 + 4028 ], "plugin_version": [ 78 @@ -86155,7 +86119,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4466 ], "steam_relay": [ 78 @@ -86164,7 +86128,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -86172,58 +86136,58 @@ export default { }, "servers_min_order_by": { "api_password": [ - 2481 + 2485 ], "boot_status": [ - 2481 + 2485 ], "boot_status_detail": [ - 2481 + 2485 ], "connect_password": [ - 2481 + 2485 ], "game": [ - 2481 + 2485 ], "game_server_node_id": [ - 2481 + 2485 ], "host": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "max_players": [ - 2481 + 2485 ], "offline_at": [ - 2481 + 2485 ], "plugin_version": [ - 2481 + 2485 ], "port": [ - 2481 + 2485 ], "region": [ - 2481 + 2485 ], "reserved_by_match_id": [ - 2481 + 2485 ], "steam_relay": [ - 2481 + 2485 ], "tv_port": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "__typename": [ 78 @@ -86234,7 +86198,7 @@ export default { 38 ], "returning": [ - 3553 + 3557 ], "__typename": [ 78 @@ -86242,10 +86206,10 @@ export default { }, "servers_obj_rel_insert_input": { "data": [ - 3567 + 3571 ], "on_conflict": [ - 3574 + 3578 ], "__typename": [ 78 @@ -86253,13 +86217,13 @@ export default { }, "servers_on_conflict": { "constraint": [ - 3565 + 3569 ], "update_columns": [ - 3591 + 3595 ], "where": [ - 3564 + 3568 ], "__typename": [ 78 @@ -86267,97 +86231,97 @@ export default { }, "servers_order_by": { "api_password": [ - 2481 + 2485 ], "boot_status": [ - 2481 + 2485 ], "boot_status_detail": [ - 2481 + 2485 ], "connect_password": [ - 2481 + 2485 ], "connected": [ - 2481 + 2485 ], "connection_link": [ - 2481 + 2485 ], "connection_string": [ - 2481 + 2485 ], "current_match": [ - 2316 + 2320 ], "enabled": [ - 2481 + 2485 ], "game": [ - 2481 + 2485 ], "game_server_node": [ 1255 ], "game_server_node_id": [ - 2481 + 2485 ], "host": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "is_dedicated": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "matches_aggregate": [ - 2301 + 2305 ], "max_players": [ - 2481 + 2485 ], "offline_at": [ - 2481 + 2485 ], "plugin_runtime": [ - 2481 + 2485 ], "plugin_version": [ - 2481 + 2485 ], "port": [ - 2481 + 2485 ], "rcon_password": [ - 2481 + 2485 ], "rcon_status": [ - 2481 + 2485 ], "region": [ - 2481 + 2485 ], "reserved_by_match_id": [ - 2481 + 2485 ], "server_region": [ - 3538 + 3542 ], "steam_relay": [ - 2481 + 2485 ], "tv_port": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "__typename": [ 78 @@ -86365,7 +86329,7 @@ export default { }, "servers_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -86376,7 +86340,7 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 4462 + 4466 ], "boot_status": [ 78 @@ -86403,7 +86367,7 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "is_dedicated": [ 3 @@ -86415,7 +86379,7 @@ export default { 38 ], "offline_at": [ - 4024 + 4028 ], "plugin_runtime": [ 901 @@ -86436,7 +86400,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4466 ], "steam_relay": [ 78 @@ -86448,7 +86412,7 @@ export default { 982 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -86470,13 +86434,13 @@ export default { }, "servers_stddev_order_by": { "max_players": [ - 2481 + 2485 ], "port": [ - 2481 + 2485 ], "tv_port": [ - 2481 + 2485 ], "__typename": [ 78 @@ -86498,13 +86462,13 @@ export default { }, "servers_stddev_pop_order_by": { "max_players": [ - 2481 + 2485 ], "port": [ - 2481 + 2485 ], "tv_port": [ - 2481 + 2485 ], "__typename": [ 78 @@ -86526,13 +86490,13 @@ export default { }, "servers_stddev_samp_order_by": { "max_players": [ - 2481 + 2485 ], "port": [ - 2481 + 2485 ], "tv_port": [ - 2481 + 2485 ], "__typename": [ 78 @@ -86540,7 +86504,7 @@ export default { }, "servers_stream_cursor_input": { "initial_value": [ - 3588 + 3592 ], "ordering": [ 236 @@ -86551,7 +86515,7 @@ export default { }, "servers_stream_cursor_value_input": { "api_password": [ - 4462 + 4466 ], "boot_status": [ 78 @@ -86578,7 +86542,7 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "is_dedicated": [ 3 @@ -86590,7 +86554,7 @@ export default { 38 ], "offline_at": [ - 4024 + 4028 ], "plugin_runtime": [ 901 @@ -86611,7 +86575,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4466 ], "steam_relay": [ 78 @@ -86623,7 +86587,7 @@ export default { 982 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -86645,13 +86609,13 @@ export default { }, "servers_sum_order_by": { "max_players": [ - 2481 + 2485 ], "port": [ - 2481 + 2485 ], "tv_port": [ - 2481 + 2485 ], "__typename": [ 78 @@ -86660,13 +86624,13 @@ export default { "servers_update_column": {}, "servers_updates": { "_inc": [ - 3566 + 3570 ], "_set": [ - 3580 + 3584 ], "where": [ - 3564 + 3568 ], "__typename": [ 78 @@ -86688,13 +86652,13 @@ export default { }, "servers_var_pop_order_by": { "max_players": [ - 2481 + 2485 ], "port": [ - 2481 + 2485 ], "tv_port": [ - 2481 + 2485 ], "__typename": [ 78 @@ -86716,13 +86680,13 @@ export default { }, "servers_var_samp_order_by": { "max_players": [ - 2481 + 2485 ], "port": [ - 2481 + 2485 ], "tv_port": [ - 2481 + 2485 ], "__typename": [ 78 @@ -86744,13 +86708,13 @@ export default { }, "servers_variance_order_by": { "max_players": [ - 2481 + 2485 ], "port": [ - 2481 + 2485 ], "tv_port": [ - 2481 + 2485 ], "__typename": [ 78 @@ -86769,10 +86733,10 @@ export default { }, "settings_aggregate": { "aggregate": [ - 3601 + 3605 ], "nodes": [ - 3599 + 3603 ], "__typename": [ 78 @@ -86783,7 +86747,7 @@ export default { 38, { "columns": [ - 3611, + 3615, "[settings_select_column!]" ], "distinct": [ @@ -86792,10 +86756,10 @@ export default { } ], "max": [ - 3605 + 3609 ], "min": [ - 3606 + 3610 ], "__typename": [ 78 @@ -86803,13 +86767,13 @@ export default { }, "settings_bool_exp": { "_and": [ - 3602 + 3606 ], "_not": [ - 3602 + 3606 ], "_or": [ - 3602 + 3606 ], "name": [ 80 @@ -86860,7 +86824,7 @@ export default { 38 ], "returning": [ - 3599 + 3603 ], "__typename": [ 78 @@ -86868,13 +86832,13 @@ export default { }, "settings_on_conflict": { "constraint": [ - 3603 + 3607 ], "update_columns": [ - 3615 + 3619 ], "where": [ - 3602 + 3606 ], "__typename": [ 78 @@ -86882,10 +86846,10 @@ export default { }, "settings_order_by": { "name": [ - 2481 + 2485 ], "value": [ - 2481 + 2485 ], "__typename": [ 78 @@ -86913,7 +86877,7 @@ export default { }, "settings_stream_cursor_input": { "initial_value": [ - 3614 + 3618 ], "ordering": [ 236 @@ -86936,10 +86900,10 @@ export default { "settings_update_column": {}, "settings_updates": { "_set": [ - 3612 + 3616 ], "where": [ - 3602 + 3606 ], "__typename": [ 78 @@ -86948,31 +86912,31 @@ export default { "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 3617 + 3621 ], "_gt": [ - 3617 + 3621 ], "_gte": [ - 3617 + 3621 ], "_in": [ - 3617 + 3621 ], "_is_null": [ 3 ], "_lt": [ - 3617 + 3621 ], "_lte": [ - 3617 + 3621 ], "_neq": [ - 3617 + 3621 ], "_nin": [ - 3617 + 3621 ], "__typename": [ 78 @@ -86980,10 +86944,10 @@ export default { }, "steam_account_claims": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 @@ -86998,10 +86962,10 @@ export default { 78 ], "steam_account": [ - 3643 + 3647 ], "steam_account_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -87009,10 +86973,10 @@ export default { }, "steam_account_claims_aggregate": { "aggregate": [ - 3623 + 3627 ], "nodes": [ - 3619 + 3623 ], "__typename": [ 78 @@ -87020,7 +86984,7 @@ export default { }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 3622 + 3626 ], "__typename": [ 78 @@ -87028,13 +86992,13 @@ export default { }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 3637 + 3641 ], "distinct": [ 3 ], "filter": [ - 3626 + 3630 ], "predicate": [ 39 @@ -87048,7 +87012,7 @@ export default { 38, { "columns": [ - 3637, + 3641, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -87057,10 +87021,10 @@ export default { } ], "max": [ - 3629 + 3633 ], "min": [ - 3631 + 3635 ], "__typename": [ 78 @@ -87068,13 +87032,13 @@ export default { }, "steam_account_claims_aggregate_order_by": { "count": [ - 2481 + 2485 ], "max": [ - 3630 + 3634 ], "min": [ - 3632 + 3636 ], "__typename": [ 78 @@ -87082,10 +87046,10 @@ export default { }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 3628 + 3632 ], "on_conflict": [ - 3634 + 3638 ], "__typename": [ 78 @@ -87093,19 +87057,19 @@ export default { }, "steam_account_claims_bool_exp": { "_and": [ - 3626 + 3630 ], "_not": [ - 3626 + 3630 ], "_or": [ - 3626 + 3630 ], "created_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "k8s_job_name": [ 80 @@ -87120,10 +87084,10 @@ export default { 80 ], "steam_account": [ - 3647 + 3651 ], "steam_account_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -87132,10 +87096,10 @@ export default { "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 @@ -87150,10 +87114,10 @@ export default { 78 ], "steam_account": [ - 3654 + 3658 ], "steam_account_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -87161,10 +87125,10 @@ export default { }, "steam_account_claims_max_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 @@ -87176,7 +87140,7 @@ export default { 78 ], "steam_account_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -87184,22 +87148,22 @@ export default { }, "steam_account_claims_max_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "k8s_job_name": [ - 2481 + 2485 ], "node_id": [ - 2481 + 2485 ], "purpose": [ - 2481 + 2485 ], "steam_account_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -87207,10 +87171,10 @@ export default { }, "steam_account_claims_min_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 @@ -87222,7 +87186,7 @@ export default { 78 ], "steam_account_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -87230,22 +87194,22 @@ export default { }, "steam_account_claims_min_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "k8s_job_name": [ - 2481 + 2485 ], "node_id": [ - 2481 + 2485 ], "purpose": [ - 2481 + 2485 ], "steam_account_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -87256,7 +87220,7 @@ export default { 38 ], "returning": [ - 3619 + 3623 ], "__typename": [ 78 @@ -87264,13 +87228,13 @@ export default { }, "steam_account_claims_on_conflict": { "constraint": [ - 3627 + 3631 ], "update_columns": [ - 3641 + 3645 ], "where": [ - 3626 + 3630 ], "__typename": [ 78 @@ -87278,28 +87242,28 @@ export default { }, "steam_account_claims_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "k8s_job_name": [ - 2481 + 2485 ], "node": [ 1255 ], "node_id": [ - 2481 + 2485 ], "purpose": [ - 2481 + 2485 ], "steam_account": [ - 3656 + 3660 ], "steam_account_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -87307,7 +87271,7 @@ export default { }, "steam_account_claims_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -87316,10 +87280,10 @@ export default { "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 @@ -87331,7 +87295,7 @@ export default { 78 ], "steam_account_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -87339,7 +87303,7 @@ export default { }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 3640 + 3644 ], "ordering": [ 236 @@ -87350,10 +87314,10 @@ export default { }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "k8s_job_name": [ 78 @@ -87365,7 +87329,7 @@ export default { 78 ], "steam_account_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -87374,10 +87338,10 @@ export default { "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 3638 + 3642 ], "where": [ - 3626 + 3630 ], "__typename": [ 78 @@ -87385,10 +87349,10 @@ export default { }, "steam_accounts": { "claims": [ - 3619, + 3623, { "distinct_on": [ - 3637, + 3641, "[steam_account_claims_select_column!]" ], "limit": [ @@ -87398,19 +87362,19 @@ export default { 38 ], "order_by": [ - 3635, + 3639, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3630 ] } ], "claims_aggregate": [ - 3620, + 3624, { "distinct_on": [ - 3637, + 3641, "[steam_account_claims_select_column!]" ], "limit": [ @@ -87420,22 +87384,22 @@ export default { 38 ], "order_by": [ - 3635, + 3639, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3630 ] } ], "created_at": [ - 4024 + 4028 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4466 ], "last_node": [ 1229 @@ -87456,7 +87420,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4028 ], "username": [ 78 @@ -87467,10 +87431,10 @@ export default { }, "steam_accounts_aggregate": { "aggregate": [ - 3645 + 3649 ], "nodes": [ - 3643 + 3647 ], "__typename": [ 78 @@ -87478,13 +87442,13 @@ export default { }, "steam_accounts_aggregate_fields": { "avg": [ - 3646 + 3650 ], "count": [ 38, { "columns": [ - 3658, + 3662, "[steam_accounts_select_column!]" ], "distinct": [ @@ -87493,31 +87457,31 @@ export default { } ], "max": [ - 3651 + 3655 ], "min": [ - 3652 + 3656 ], "stddev": [ - 3660 + 3664 ], "stddev_pop": [ - 3661 + 3665 ], "stddev_samp": [ - 3662 + 3666 ], "sum": [ - 3665 + 3669 ], "var_pop": [ - 3668 + 3672 ], "var_samp": [ - 3669 + 3673 ], "variance": [ - 3670 + 3674 ], "__typename": [ 78 @@ -87539,28 +87503,28 @@ export default { }, "steam_accounts_bool_exp": { "_and": [ - 3647 + 3651 ], "_not": [ - 3647 + 3651 ], "_or": [ - 3647 + 3651 ], "claims": [ - 3626 + 3630 ], "claims_aggregate": [ - 3621 + 3625 ], "created_at": [ - 4025 + 4029 ], "friend_capacity": [ 39 ], "id": [ - 4464 + 4468 ], "last_node": [ 1241 @@ -87581,7 +87545,7 @@ export default { 182 ], "updated_at": [ - 4025 + 4029 ], "username": [ 80 @@ -87607,16 +87571,16 @@ export default { }, "steam_accounts_insert_input": { "claims": [ - 3625 + 3629 ], "created_at": [ - 4024 + 4028 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4466 ], "last_node": [ 1253 @@ -87637,7 +87601,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4028 ], "username": [ 78 @@ -87648,13 +87612,13 @@ export default { }, "steam_accounts_max_fields": { "created_at": [ - 4024 + 4028 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4466 ], "last_node_id": [ 78 @@ -87672,7 +87636,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4028 ], "username": [ 78 @@ -87683,13 +87647,13 @@ export default { }, "steam_accounts_min_fields": { "created_at": [ - 4024 + 4028 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4466 ], "last_node_id": [ 78 @@ -87707,7 +87671,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4028 ], "username": [ 78 @@ -87721,7 +87685,7 @@ export default { 38 ], "returning": [ - 3643 + 3647 ], "__typename": [ 78 @@ -87729,10 +87693,10 @@ export default { }, "steam_accounts_obj_rel_insert_input": { "data": [ - 3650 + 3654 ], "on_conflict": [ - 3655 + 3659 ], "__typename": [ 78 @@ -87740,13 +87704,13 @@ export default { }, "steam_accounts_on_conflict": { "constraint": [ - 3648 + 3652 ], "update_columns": [ - 3666 + 3670 ], "where": [ - 3647 + 3651 ], "__typename": [ 78 @@ -87754,40 +87718,40 @@ export default { }, "steam_accounts_order_by": { "claims_aggregate": [ - 3624 + 3628 ], "created_at": [ - 2481 + 2485 ], "friend_capacity": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "last_node": [ 1255 ], "last_node_id": [ - 2481 + 2485 ], "password": [ - 2481 + 2485 ], "role": [ - 2481 + 2485 ], "steam_level": [ - 2481 + 2485 ], "steamid64": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "username": [ - 2481 + 2485 ], "__typename": [ 78 @@ -87795,7 +87759,7 @@ export default { }, "steam_accounts_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -87804,13 +87768,13 @@ export default { "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4024 + 4028 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4466 ], "last_node_id": [ 78 @@ -87828,7 +87792,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4028 ], "username": [ 78 @@ -87881,7 +87845,7 @@ export default { }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 3664 + 3668 ], "ordering": [ 236 @@ -87892,13 +87856,13 @@ export default { }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4466 ], "last_node_id": [ 78 @@ -87916,7 +87880,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4028 ], "username": [ 78 @@ -87942,13 +87906,13 @@ export default { "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 3649 + 3653 ], "_set": [ - 3659 + 3663 ], "where": [ - 3647 + 3651 ], "__typename": [ 78 @@ -87998,7 +87962,7 @@ export default { }, "system_alerts": { "created_at": [ - 4024 + 4028 ], "created_by": [ 180 @@ -88007,10 +87971,10 @@ export default { 3 ], "expires_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "is_active": [ 3 @@ -88025,7 +87989,7 @@ export default { 1022 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -88033,10 +87997,10 @@ export default { }, "system_alerts_aggregate": { "aggregate": [ - 3673 + 3677 ], "nodes": [ - 3671 + 3675 ], "__typename": [ 78 @@ -88044,13 +88008,13 @@ export default { }, "system_alerts_aggregate_fields": { "avg": [ - 3674 + 3678 ], "count": [ 38, { "columns": [ - 3685, + 3689, "[system_alerts_select_column!]" ], "distinct": [ @@ -88059,31 +88023,31 @@ export default { } ], "max": [ - 3679 + 3683 ], "min": [ - 3680 + 3684 ], "stddev": [ - 3687 + 3691 ], "stddev_pop": [ - 3688 + 3692 ], "stddev_samp": [ - 3689 + 3693 ], "sum": [ - 3692 + 3696 ], "var_pop": [ - 3695 + 3699 ], "var_samp": [ - 3696 + 3700 ], "variance": [ - 3697 + 3701 ], "__typename": [ 78 @@ -88099,16 +88063,16 @@ export default { }, "system_alerts_bool_exp": { "_and": [ - 3675 + 3679 ], "_not": [ - 3675 + 3679 ], "_or": [ - 3675 + 3679 ], "created_at": [ - 4025 + 4029 ], "created_by": [ 182 @@ -88117,10 +88081,10 @@ export default { 4 ], "expires_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "is_active": [ 4 @@ -88135,7 +88099,7 @@ export default { 1023 ], "updated_at": [ - 4025 + 4029 ], "__typename": [ 78 @@ -88152,7 +88116,7 @@ export default { }, "system_alerts_insert_input": { "created_at": [ - 4024 + 4028 ], "created_by": [ 180 @@ -88161,10 +88125,10 @@ export default { 3 ], "expires_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "is_active": [ 3 @@ -88179,7 +88143,7 @@ export default { 1022 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -88187,16 +88151,16 @@ export default { }, "system_alerts_max_fields": { "created_at": [ - 4024 + 4028 ], "created_by": [ 180 ], "expires_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "message": [ 78 @@ -88205,7 +88169,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -88213,16 +88177,16 @@ export default { }, "system_alerts_min_fields": { "created_at": [ - 4024 + 4028 ], "created_by": [ 180 ], "expires_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "message": [ 78 @@ -88231,7 +88195,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -88242,7 +88206,7 @@ export default { 38 ], "returning": [ - 3671 + 3675 ], "__typename": [ 78 @@ -88250,13 +88214,13 @@ export default { }, "system_alerts_on_conflict": { "constraint": [ - 3676 + 3680 ], "update_columns": [ - 3693 + 3697 ], "where": [ - 3675 + 3679 ], "__typename": [ 78 @@ -88264,34 +88228,34 @@ export default { }, "system_alerts_order_by": { "created_at": [ - 2481 + 2485 ], "created_by": [ - 2481 + 2485 ], "dismissible": [ - 2481 + 2485 ], "expires_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "is_active": [ - 2481 + 2485 ], "message": [ - 2481 + 2485 ], "title": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "__typename": [ 78 @@ -88299,7 +88263,7 @@ export default { }, "system_alerts_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -88308,7 +88272,7 @@ export default { "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4024 + 4028 ], "created_by": [ 180 @@ -88317,10 +88281,10 @@ export default { 3 ], "expires_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "is_active": [ 3 @@ -88335,7 +88299,7 @@ export default { 1022 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -88367,7 +88331,7 @@ export default { }, "system_alerts_stream_cursor_input": { "initial_value": [ - 3691 + 3695 ], "ordering": [ 236 @@ -88378,7 +88342,7 @@ export default { }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "created_by": [ 180 @@ -88387,10 +88351,10 @@ export default { 3 ], "expires_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "is_active": [ 3 @@ -88405,7 +88369,7 @@ export default { 1022 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -88422,13 +88386,13 @@ export default { "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 3677 + 3681 ], "_set": [ - 3686 + 3690 ], "where": [ - 3675 + 3679 ], "__typename": [ 78 @@ -88460,28 +88424,28 @@ export default { }, "team_invites": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "invited_by": [ - 3439 + 3443 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3439 + 3443 ], "steam_id": [ 180 ], "team": [ - 3981 + 3985 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -88489,10 +88453,10 @@ export default { }, "team_invites_aggregate": { "aggregate": [ - 3702 + 3706 ], "nodes": [ - 3698 + 3702 ], "__typename": [ 78 @@ -88500,7 +88464,7 @@ export default { }, "team_invites_aggregate_bool_exp": { "count": [ - 3701 + 3705 ], "__typename": [ 78 @@ -88508,13 +88472,13 @@ export default { }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 3719 + 3723 ], "distinct": [ 3 ], "filter": [ - 3707 + 3711 ], "predicate": [ 39 @@ -88525,13 +88489,13 @@ export default { }, "team_invites_aggregate_fields": { "avg": [ - 3705 + 3709 ], "count": [ 38, { "columns": [ - 3719, + 3723, "[team_invites_select_column!]" ], "distinct": [ @@ -88540,31 +88504,31 @@ export default { } ], "max": [ - 3711 + 3715 ], "min": [ - 3713 + 3717 ], "stddev": [ - 3721 + 3725 ], "stddev_pop": [ - 3723 + 3727 ], "stddev_samp": [ - 3725 + 3729 ], "sum": [ - 3729 + 3733 ], "var_pop": [ - 3733 + 3737 ], "var_samp": [ - 3735 + 3739 ], "variance": [ - 3737 + 3741 ], "__typename": [ 78 @@ -88572,37 +88536,37 @@ export default { }, "team_invites_aggregate_order_by": { "avg": [ - 3706 + 3710 ], "count": [ - 2481 + 2485 ], "max": [ - 3712 + 3716 ], "min": [ - 3714 + 3718 ], "stddev": [ - 3722 + 3726 ], "stddev_pop": [ - 3724 + 3728 ], "stddev_samp": [ - 3726 + 3730 ], "sum": [ - 3730 + 3734 ], "var_pop": [ - 3734 + 3738 ], "var_samp": [ - 3736 + 3740 ], "variance": [ - 3738 + 3742 ], "__typename": [ 78 @@ -88610,10 +88574,10 @@ export default { }, "team_invites_arr_rel_insert_input": { "data": [ - 3710 + 3714 ], "on_conflict": [ - 3716 + 3720 ], "__typename": [ 78 @@ -88632,10 +88596,10 @@ export default { }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -88643,37 +88607,37 @@ export default { }, "team_invites_bool_exp": { "_and": [ - 3707 + 3711 ], "_not": [ - 3707 + 3711 ], "_or": [ - 3707 + 3711 ], "created_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "invited_by": [ - 3443 + 3447 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3443 + 3447 ], "steam_id": [ 182 ], "team": [ - 3990 + 3994 ], "team_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -88693,28 +88657,28 @@ export default { }, "team_invites_insert_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "invited_by": [ - 3450 + 3454 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3450 + 3454 ], "steam_id": [ 180 ], "team": [ - 3999 + 4003 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -88722,10 +88686,10 @@ export default { }, "team_invites_max_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "invited_by_player_steam_id": [ 180 @@ -88734,7 +88698,7 @@ export default { 180 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -88742,19 +88706,19 @@ export default { }, "team_invites_max_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -88762,10 +88726,10 @@ export default { }, "team_invites_min_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "invited_by_player_steam_id": [ 180 @@ -88774,7 +88738,7 @@ export default { 180 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -88782,19 +88746,19 @@ export default { }, "team_invites_min_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -88805,7 +88769,7 @@ export default { 38 ], "returning": [ - 3698 + 3702 ], "__typename": [ 78 @@ -88813,13 +88777,13 @@ export default { }, "team_invites_on_conflict": { "constraint": [ - 3708 + 3712 ], "update_columns": [ - 3731 + 3735 ], "where": [ - 3707 + 3711 ], "__typename": [ 78 @@ -88827,28 +88791,28 @@ export default { }, "team_invites_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "invited_by": [ - 3452 + 3456 ], "invited_by_player_steam_id": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "steam_id": [ - 2481 + 2485 ], "team": [ - 4001 + 4005 ], "team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -88856,7 +88820,7 @@ export default { }, "team_invites_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -88865,10 +88829,10 @@ export default { "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "invited_by_player_steam_id": [ 180 @@ -88877,7 +88841,7 @@ export default { 180 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -88896,10 +88860,10 @@ export default { }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -88918,10 +88882,10 @@ export default { }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -88940,10 +88904,10 @@ export default { }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -88951,7 +88915,7 @@ export default { }, "team_invites_stream_cursor_input": { "initial_value": [ - 3728 + 3732 ], "ordering": [ 236 @@ -88962,10 +88926,10 @@ export default { }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "invited_by_player_steam_id": [ 180 @@ -88974,7 +88938,7 @@ export default { 180 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -88993,10 +88957,10 @@ export default { }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89005,13 +88969,13 @@ export default { "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 3709 + 3713 ], "_set": [ - 3720 + 3724 ], "where": [ - 3707 + 3711 ], "__typename": [ 78 @@ -89030,10 +88994,10 @@ export default { }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89052,10 +89016,10 @@ export default { }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89074,10 +89038,10 @@ export default { }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89088,7 +89052,7 @@ export default { 3 ], "player": [ - 3439 + 3443 ], "player_steam_id": [ 180 @@ -89103,10 +89067,10 @@ export default { 1063 ], "team": [ - 3981 + 3985 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -89114,10 +89078,10 @@ export default { }, "team_roster_aggregate": { "aggregate": [ - 3745 + 3749 ], "nodes": [ - 3739 + 3743 ], "__typename": [ 78 @@ -89125,13 +89089,13 @@ export default { }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 3742 + 3746 ], "bool_or": [ - 3743 + 3747 ], "count": [ - 3744 + 3748 ], "__typename": [ 78 @@ -89139,13 +89103,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 3763 + 3767 ], "distinct": [ 3 ], "filter": [ - 3750 + 3754 ], "predicate": [ 4 @@ -89156,13 +89120,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 3764 + 3768 ], "distinct": [ 3 ], "filter": [ - 3750 + 3754 ], "predicate": [ 4 @@ -89173,13 +89137,13 @@ export default { }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 3762 + 3766 ], "distinct": [ 3 ], "filter": [ - 3750 + 3754 ], "predicate": [ 39 @@ -89190,13 +89154,13 @@ export default { }, "team_roster_aggregate_fields": { "avg": [ - 3748 + 3752 ], "count": [ 38, { "columns": [ - 3762, + 3766, "[team_roster_select_column!]" ], "distinct": [ @@ -89205,31 +89169,31 @@ export default { } ], "max": [ - 3754 + 3758 ], "min": [ - 3756 + 3760 ], "stddev": [ - 3766 + 3770 ], "stddev_pop": [ - 3768 + 3772 ], "stddev_samp": [ - 3770 + 3774 ], "sum": [ - 3774 + 3778 ], "var_pop": [ - 3778 + 3782 ], "var_samp": [ - 3780 + 3784 ], "variance": [ - 3782 + 3786 ], "__typename": [ 78 @@ -89237,37 +89201,37 @@ export default { }, "team_roster_aggregate_order_by": { "avg": [ - 3749 + 3753 ], "count": [ - 2481 + 2485 ], "max": [ - 3755 + 3759 ], "min": [ - 3757 + 3761 ], "stddev": [ - 3767 + 3771 ], "stddev_pop": [ - 3769 + 3773 ], "stddev_samp": [ - 3771 + 3775 ], "sum": [ - 3775 + 3779 ], "var_pop": [ - 3779 + 3783 ], "var_samp": [ - 3781 + 3785 ], "variance": [ - 3783 + 3787 ], "__typename": [ 78 @@ -89275,10 +89239,10 @@ export default { }, "team_roster_arr_rel_insert_input": { "data": [ - 3753 + 3757 ], "on_conflict": [ - 3759 + 3763 ], "__typename": [ 78 @@ -89294,7 +89258,7 @@ export default { }, "team_roster_avg_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89302,19 +89266,19 @@ export default { }, "team_roster_bool_exp": { "_and": [ - 3750 + 3754 ], "_not": [ - 3750 + 3754 ], "_or": [ - 3750 + 3754 ], "coach": [ 4 ], "player": [ - 3443 + 3447 ], "player_steam_id": [ 182 @@ -89329,10 +89293,10 @@ export default { 1064 ], "team": [ - 3990 + 3994 ], "team_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -89352,7 +89316,7 @@ export default { 3 ], "player": [ - 3450 + 3454 ], "player_steam_id": [ 180 @@ -89367,10 +89331,10 @@ export default { 1063 ], "team": [ - 3999 + 4003 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -89384,7 +89348,7 @@ export default { 78 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -89392,13 +89356,13 @@ export default { }, "team_roster_max_order_by": { "player_steam_id": [ - 2481 + 2485 ], "roster_image_url": [ - 2481 + 2485 ], "team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89412,7 +89376,7 @@ export default { 78 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -89420,13 +89384,13 @@ export default { }, "team_roster_min_order_by": { "player_steam_id": [ - 2481 + 2485 ], "roster_image_url": [ - 2481 + 2485 ], "team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89437,7 +89401,7 @@ export default { 38 ], "returning": [ - 3739 + 3743 ], "__typename": [ 78 @@ -89445,13 +89409,13 @@ export default { }, "team_roster_on_conflict": { "constraint": [ - 3751 + 3755 ], "update_columns": [ - 3776 + 3780 ], "where": [ - 3750 + 3754 ], "__typename": [ 78 @@ -89459,28 +89423,28 @@ export default { }, "team_roster_order_by": { "coach": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "player_steam_id": [ - 2481 + 2485 ], "role": [ - 2481 + 2485 ], "roster_image_url": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "team": [ - 4001 + 4005 ], "team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89491,7 +89455,7 @@ export default { 180 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -89517,7 +89481,7 @@ export default { 1063 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -89533,7 +89497,7 @@ export default { }, "team_roster_stddev_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89549,7 +89513,7 @@ export default { }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89565,7 +89529,7 @@ export default { }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89573,7 +89537,7 @@ export default { }, "team_roster_stream_cursor_input": { "initial_value": [ - 3773 + 3777 ], "ordering": [ 236 @@ -89599,7 +89563,7 @@ export default { 1063 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -89615,7 +89579,7 @@ export default { }, "team_roster_sum_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89624,13 +89588,13 @@ export default { "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 3752 + 3756 ], "_set": [ - 3765 + 3769 ], "where": [ - 3750 + 3754 ], "__typename": [ 78 @@ -89646,7 +89610,7 @@ export default { }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89662,7 +89626,7 @@ export default { }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89678,7 +89642,7 @@ export default { }, "team_roster_variance_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89686,7 +89650,7 @@ export default { }, "team_scrim_alerts": { "created_at": [ - 4024 + 4028 ], "elo_max": [ 38 @@ -89698,19 +89662,19 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "last_notified_at": [ - 4024 + 4028 ], "regions": [ 78 ], "team": [ - 3981 + 3985 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -89718,10 +89682,10 @@ export default { }, "team_scrim_alerts_aggregate": { "aggregate": [ - 3786 + 3790 ], "nodes": [ - 3784 + 3788 ], "__typename": [ 78 @@ -89729,13 +89693,13 @@ export default { }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 3787 + 3791 ], "count": [ 38, { "columns": [ - 3798, + 3802, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -89744,31 +89708,31 @@ export default { } ], "max": [ - 3792 + 3796 ], "min": [ - 3793 + 3797 ], "stddev": [ - 3800 + 3804 ], "stddev_pop": [ - 3801 + 3805 ], "stddev_samp": [ - 3802 + 3806 ], "sum": [ - 3805 + 3809 ], "var_pop": [ - 3808 + 3812 ], "var_samp": [ - 3809 + 3813 ], "variance": [ - 3810 + 3814 ], "__typename": [ 78 @@ -89787,16 +89751,16 @@ export default { }, "team_scrim_alerts_bool_exp": { "_and": [ - 3788 + 3792 ], "_not": [ - 3788 + 3792 ], "_or": [ - 3788 + 3792 ], "created_at": [ - 4025 + 4029 ], "elo_max": [ 39 @@ -89808,19 +89772,19 @@ export default { 4 ], "id": [ - 4464 + 4468 ], "last_notified_at": [ - 4025 + 4029 ], "regions": [ 79 ], "team": [ - 3990 + 3994 ], "team_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -89840,7 +89804,7 @@ export default { }, "team_scrim_alerts_insert_input": { "created_at": [ - 4024 + 4028 ], "elo_max": [ 38 @@ -89852,19 +89816,19 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "last_notified_at": [ - 4024 + 4028 ], "regions": [ 78 ], "team": [ - 3999 + 4003 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -89872,7 +89836,7 @@ export default { }, "team_scrim_alerts_max_fields": { "created_at": [ - 4024 + 4028 ], "elo_max": [ 38 @@ -89881,16 +89845,16 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "last_notified_at": [ - 4024 + 4028 ], "regions": [ 78 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -89898,7 +89862,7 @@ export default { }, "team_scrim_alerts_min_fields": { "created_at": [ - 4024 + 4028 ], "elo_max": [ 38 @@ -89907,16 +89871,16 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "last_notified_at": [ - 4024 + 4028 ], "regions": [ 78 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -89927,7 +89891,7 @@ export default { 38 ], "returning": [ - 3784 + 3788 ], "__typename": [ 78 @@ -89935,13 +89899,13 @@ export default { }, "team_scrim_alerts_on_conflict": { "constraint": [ - 3789 + 3793 ], "update_columns": [ - 3806 + 3810 ], "where": [ - 3788 + 3792 ], "__typename": [ 78 @@ -89949,31 +89913,31 @@ export default { }, "team_scrim_alerts_order_by": { "created_at": [ - 2481 + 2485 ], "elo_max": [ - 2481 + 2485 ], "elo_min": [ - 2481 + 2485 ], "enabled": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "last_notified_at": [ - 2481 + 2485 ], "regions": [ - 2481 + 2485 ], "team": [ - 4001 + 4005 ], "team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -89981,7 +89945,7 @@ export default { }, "team_scrim_alerts_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -89990,7 +89954,7 @@ export default { "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4024 + 4028 ], "elo_max": [ 38 @@ -90002,16 +89966,16 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "last_notified_at": [ - 4024 + 4028 ], "regions": [ 78 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -90052,7 +90016,7 @@ export default { }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 3804 + 3808 ], "ordering": [ 236 @@ -90063,7 +90027,7 @@ export default { }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "elo_max": [ 38 @@ -90075,16 +90039,16 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "last_notified_at": [ - 4024 + 4028 ], "regions": [ 78 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -90104,13 +90068,13 @@ export default { "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 3790 + 3794 ], "_set": [ - 3799 + 3803 ], "where": [ - 3788 + 3792 ], "__typename": [ 78 @@ -90151,25 +90115,25 @@ export default { }, "team_scrim_availability": { "created_at": [ - 4024 + 4028 ], "ends_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4024 + 4028 ], "team": [ - 3981 + 3985 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -90177,10 +90141,10 @@ export default { }, "team_scrim_availability_aggregate": { "aggregate": [ - 3817 + 3821 ], "nodes": [ - 3811 + 3815 ], "__typename": [ 78 @@ -90188,13 +90152,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 3814 + 3818 ], "bool_or": [ - 3815 + 3819 ], "count": [ - 3816 + 3820 ], "__typename": [ 78 @@ -90202,13 +90166,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 3832 + 3836 ], "distinct": [ 3 ], "filter": [ - 3820 + 3824 ], "predicate": [ 4 @@ -90219,13 +90183,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 3833 + 3837 ], "distinct": [ 3 ], "filter": [ - 3820 + 3824 ], "predicate": [ 4 @@ -90236,13 +90200,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 3831 + 3835 ], "distinct": [ 3 ], "filter": [ - 3820 + 3824 ], "predicate": [ 39 @@ -90256,7 +90220,7 @@ export default { 38, { "columns": [ - 3831, + 3835, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -90265,10 +90229,10 @@ export default { } ], "max": [ - 3823 + 3827 ], "min": [ - 3825 + 3829 ], "__typename": [ 78 @@ -90276,13 +90240,13 @@ export default { }, "team_scrim_availability_aggregate_order_by": { "count": [ - 2481 + 2485 ], "max": [ - 3824 + 3828 ], "min": [ - 3826 + 3830 ], "__typename": [ 78 @@ -90290,10 +90254,10 @@ export default { }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 3822 + 3826 ], "on_conflict": [ - 3828 + 3832 ], "__typename": [ 78 @@ -90301,34 +90265,34 @@ export default { }, "team_scrim_availability_bool_exp": { "_and": [ - 3820 + 3824 ], "_not": [ - 3820 + 3824 ], "_or": [ - 3820 + 3824 ], "created_at": [ - 4025 + 4029 ], "ends_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "recurring_weekly": [ 4 ], "starts_at": [ - 4025 + 4029 ], "team": [ - 3990 + 3994 ], "team_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -90337,25 +90301,25 @@ export default { "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4024 + 4028 ], "ends_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4024 + 4028 ], "team": [ - 3999 + 4003 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -90363,19 +90327,19 @@ export default { }, "team_scrim_availability_max_fields": { "created_at": [ - 4024 + 4028 ], "ends_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "starts_at": [ - 4024 + 4028 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -90383,19 +90347,19 @@ export default { }, "team_scrim_availability_max_order_by": { "created_at": [ - 2481 + 2485 ], "ends_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "starts_at": [ - 2481 + 2485 ], "team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -90403,19 +90367,19 @@ export default { }, "team_scrim_availability_min_fields": { "created_at": [ - 4024 + 4028 ], "ends_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "starts_at": [ - 4024 + 4028 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -90423,19 +90387,19 @@ export default { }, "team_scrim_availability_min_order_by": { "created_at": [ - 2481 + 2485 ], "ends_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "starts_at": [ - 2481 + 2485 ], "team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -90446,7 +90410,7 @@ export default { 38 ], "returning": [ - 3811 + 3815 ], "__typename": [ 78 @@ -90454,13 +90418,13 @@ export default { }, "team_scrim_availability_on_conflict": { "constraint": [ - 3821 + 3825 ], "update_columns": [ - 3837 + 3841 ], "where": [ - 3820 + 3824 ], "__typename": [ 78 @@ -90468,25 +90432,25 @@ export default { }, "team_scrim_availability_order_by": { "created_at": [ - 2481 + 2485 ], "ends_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "recurring_weekly": [ - 2481 + 2485 ], "starts_at": [ - 2481 + 2485 ], "team": [ - 4001 + 4005 ], "team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -90494,7 +90458,7 @@ export default { }, "team_scrim_availability_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -90505,22 +90469,22 @@ export default { "team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns": {}, "team_scrim_availability_set_input": { "created_at": [ - 4024 + 4028 ], "ends_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4024 + 4028 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -90528,7 +90492,7 @@ export default { }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 3836 + 3840 ], "ordering": [ 236 @@ -90539,22 +90503,22 @@ export default { }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "ends_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4024 + 4028 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -90563,10 +90527,10 @@ export default { "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 3834 + 3838 ], "where": [ - 3820 + 3824 ], "__typename": [ 78 @@ -90574,31 +90538,31 @@ export default { }, "team_scrim_request_proposals": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "proposed_by": [ - 3439 + 3443 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 3981 + 3985 ], "proposed_by_team_id": [ - 4462 + 4466 ], "proposed_scheduled_at": [ - 4024 + 4028 ], "request": [ - 3880 + 3884 ], "request_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -90606,10 +90570,10 @@ export default { }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 3843 + 3847 ], "nodes": [ - 3839 + 3843 ], "__typename": [ 78 @@ -90617,7 +90581,7 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 3842 + 3846 ], "__typename": [ 78 @@ -90625,13 +90589,13 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 3860 + 3864 ], "distinct": [ 3 ], "filter": [ - 3848 + 3852 ], "predicate": [ 39 @@ -90642,13 +90606,13 @@ export default { }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 3846 + 3850 ], "count": [ 38, { "columns": [ - 3860, + 3864, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -90657,31 +90621,31 @@ export default { } ], "max": [ - 3852 + 3856 ], "min": [ - 3854 + 3858 ], "stddev": [ - 3862 + 3866 ], "stddev_pop": [ - 3864 + 3868 ], "stddev_samp": [ - 3866 + 3870 ], "sum": [ - 3870 + 3874 ], "var_pop": [ - 3874 + 3878 ], "var_samp": [ - 3876 + 3880 ], "variance": [ - 3878 + 3882 ], "__typename": [ 78 @@ -90689,37 +90653,37 @@ export default { }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 3847 + 3851 ], "count": [ - 2481 + 2485 ], "max": [ - 3853 + 3857 ], "min": [ - 3855 + 3859 ], "stddev": [ - 3863 + 3867 ], "stddev_pop": [ - 3865 + 3869 ], "stddev_samp": [ - 3867 + 3871 ], "sum": [ - 3871 + 3875 ], "var_pop": [ - 3875 + 3879 ], "var_samp": [ - 3877 + 3881 ], "variance": [ - 3879 + 3883 ], "__typename": [ 78 @@ -90727,10 +90691,10 @@ export default { }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 3851 + 3855 ], "on_conflict": [ - 3857 + 3861 ], "__typename": [ 78 @@ -90746,7 +90710,7 @@ export default { }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -90754,40 +90718,40 @@ export default { }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 3848 + 3852 ], "_not": [ - 3848 + 3852 ], "_or": [ - 3848 + 3852 ], "created_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "proposed_by": [ - 3443 + 3447 ], "proposed_by_steam_id": [ 182 ], "proposed_by_team": [ - 3990 + 3994 ], "proposed_by_team_id": [ - 4464 + 4468 ], "proposed_scheduled_at": [ - 4025 + 4029 ], "request": [ - 3891 + 3895 ], "request_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -90804,31 +90768,31 @@ export default { }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "proposed_by": [ - 3450 + 3454 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 3999 + 4003 ], "proposed_by_team_id": [ - 4462 + 4466 ], "proposed_scheduled_at": [ - 4024 + 4028 ], "request": [ - 3900 + 3904 ], "request_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -90836,22 +90800,22 @@ export default { }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4462 + 4466 ], "proposed_scheduled_at": [ - 4024 + 4028 ], "request_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -90859,22 +90823,22 @@ export default { }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "proposed_by_steam_id": [ - 2481 + 2485 ], "proposed_by_team_id": [ - 2481 + 2485 ], "proposed_scheduled_at": [ - 2481 + 2485 ], "request_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -90882,22 +90846,22 @@ export default { }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4462 + 4466 ], "proposed_scheduled_at": [ - 4024 + 4028 ], "request_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -90905,22 +90869,22 @@ export default { }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "proposed_by_steam_id": [ - 2481 + 2485 ], "proposed_by_team_id": [ - 2481 + 2485 ], "proposed_scheduled_at": [ - 2481 + 2485 ], "request_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -90931,7 +90895,7 @@ export default { 38 ], "returning": [ - 3839 + 3843 ], "__typename": [ 78 @@ -90939,13 +90903,13 @@ export default { }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 3849 + 3853 ], "update_columns": [ - 3872 + 3876 ], "where": [ - 3848 + 3852 ], "__typename": [ 78 @@ -90953,31 +90917,31 @@ export default { }, "team_scrim_request_proposals_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "proposed_by": [ - 3452 + 3456 ], "proposed_by_steam_id": [ - 2481 + 2485 ], "proposed_by_team": [ - 4001 + 4005 ], "proposed_by_team_id": [ - 2481 + 2485 ], "proposed_scheduled_at": [ - 2481 + 2485 ], "request": [ - 3902 + 3906 ], "request_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -90985,7 +90949,7 @@ export default { }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -90994,22 +90958,22 @@ export default { "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4462 + 4466 ], "proposed_scheduled_at": [ - 4024 + 4028 ], "request_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -91025,7 +90989,7 @@ export default { }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -91041,7 +91005,7 @@ export default { }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -91057,7 +91021,7 @@ export default { }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -91065,7 +91029,7 @@ export default { }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 3869 + 3873 ], "ordering": [ 236 @@ -91076,22 +91040,22 @@ export default { }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4462 + 4466 ], "proposed_scheduled_at": [ - 4024 + 4028 ], "request_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -91107,7 +91071,7 @@ export default { }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -91116,13 +91080,13 @@ export default { "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 3850 + 3854 ], "_set": [ - 3861 + 3865 ], "where": [ - 3848 + 3852 ], "__typename": [ 78 @@ -91138,7 +91102,7 @@ export default { }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -91154,7 +91118,7 @@ export default { }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -91170,7 +91134,7 @@ export default { }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -91181,55 +91145,55 @@ export default { 3 ], "awaiting_team": [ - 3981 + 3985 ], "awaiting_team_id": [ - 4462 + 4466 ], "canceled_by_team_id": [ - 4462 + 4466 ], "canceled_late": [ 3 ], "created_at": [ - 4024 + 4028 ], "expires_at": [ - 4024 + 4028 ], "from_team": [ - 3981 + 3985 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_options": [ - 2176 + 2180 ], "match_options_id": [ - 4462 + 4466 ], "match_outcome": [ 78 ], "proposals": [ - 3839, + 3843, { "distinct_on": [ - 3860, + 3864, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -91239,19 +91203,19 @@ export default { 38 ], "order_by": [ - 3858, + 3862, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 3852 ] } ], "proposals_aggregate": [ - 3840, + 3844, { "distinct_on": [ - 3860, + 3864, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -91261,40 +91225,40 @@ export default { 38 ], "order_by": [ - 3858, + 3862, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 3852 ] } ], "proposed_scheduled_at": [ - 4024 + 4028 ], "region": [ 78 ], "requested_by": [ - 3439 + 3443 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4024 + 4028 ], "status": [ 962 ], "to_team": [ - 3981 + 3985 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -91302,10 +91266,10 @@ export default { }, "team_scrim_requests_aggregate": { "aggregate": [ - 3886 + 3890 ], "nodes": [ - 3880 + 3884 ], "__typename": [ 78 @@ -91313,13 +91277,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 3883 + 3887 ], "bool_or": [ - 3884 + 3888 ], "count": [ - 3885 + 3889 ], "__typename": [ 78 @@ -91327,13 +91291,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 3905 + 3909 ], "distinct": [ 3 ], "filter": [ - 3891 + 3895 ], "predicate": [ 4 @@ -91344,13 +91308,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 3906 + 3910 ], "distinct": [ 3 ], "filter": [ - 3891 + 3895 ], "predicate": [ 4 @@ -91361,13 +91325,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 3904 + 3908 ], "distinct": [ 3 ], "filter": [ - 3891 + 3895 ], "predicate": [ 39 @@ -91378,13 +91342,13 @@ export default { }, "team_scrim_requests_aggregate_fields": { "avg": [ - 3889 + 3893 ], "count": [ 38, { "columns": [ - 3904, + 3908, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -91393,31 +91357,31 @@ export default { } ], "max": [ - 3895 + 3899 ], "min": [ - 3897 + 3901 ], "stddev": [ - 3908 + 3912 ], "stddev_pop": [ - 3910 + 3914 ], "stddev_samp": [ - 3912 + 3916 ], "sum": [ - 3916 + 3920 ], "var_pop": [ - 3920 + 3924 ], "var_samp": [ - 3922 + 3926 ], "variance": [ - 3924 + 3928 ], "__typename": [ 78 @@ -91425,37 +91389,37 @@ export default { }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 3890 + 3894 ], "count": [ - 2481 + 2485 ], "max": [ - 3896 + 3900 ], "min": [ - 3898 + 3902 ], "stddev": [ - 3909 + 3913 ], "stddev_pop": [ - 3911 + 3915 ], "stddev_samp": [ - 3913 + 3917 ], "sum": [ - 3917 + 3921 ], "var_pop": [ - 3921 + 3925 ], "var_samp": [ - 3923 + 3927 ], "variance": [ - 3925 + 3929 ], "__typename": [ 78 @@ -91463,10 +91427,10 @@ export default { }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 3894 + 3898 ], "on_conflict": [ - 3901 + 3905 ], "__typename": [ 78 @@ -91482,7 +91446,7 @@ export default { }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -91490,94 +91454,94 @@ export default { }, "team_scrim_requests_bool_exp": { "_and": [ - 3891 + 3895 ], "_not": [ - 3891 + 3895 ], "_or": [ - 3891 + 3895 ], "auto_generated": [ 4 ], "awaiting_team": [ - 3990 + 3994 ], "awaiting_team_id": [ - 4464 + 4468 ], "canceled_by_team_id": [ - 4464 + 4468 ], "canceled_late": [ 4 ], "created_at": [ - 4025 + 4029 ], "expires_at": [ - 4025 + 4029 ], "from_team": [ - 3990 + 3994 ], "from_team_checked_in": [ 4 ], "from_team_id": [ - 4464 + 4468 ], "id": [ - 4464 + 4468 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_options": [ - 2180 + 2184 ], "match_options_id": [ - 4464 + 4468 ], "match_outcome": [ 80 ], "proposals": [ - 3848 + 3852 ], "proposals_aggregate": [ - 3841 + 3845 ], "proposed_scheduled_at": [ - 4025 + 4029 ], "region": [ 80 ], "requested_by": [ - 3443 + 3447 ], "requested_by_steam_id": [ 182 ], "responded_at": [ - 4025 + 4029 ], "status": [ 963 ], "to_team": [ - 3990 + 3994 ], "to_team_checked_in": [ 4 ], "to_team_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -91597,79 +91561,79 @@ export default { 3 ], "awaiting_team": [ - 3999 + 4003 ], "awaiting_team_id": [ - 4462 + 4466 ], "canceled_by_team_id": [ - 4462 + 4466 ], "canceled_late": [ 3 ], "created_at": [ - 4024 + 4028 ], "expires_at": [ - 4024 + 4028 ], "from_team": [ - 3999 + 4003 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_options": [ - 2187 + 2191 ], "match_options_id": [ - 4462 + 4466 ], "match_outcome": [ 78 ], "proposals": [ - 3845 + 3849 ], "proposed_scheduled_at": [ - 4024 + 4028 ], "region": [ 78 ], "requested_by": [ - 3450 + 3454 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4024 + 4028 ], "status": [ 962 ], "to_team": [ - 3999 + 4003 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -91677,34 +91641,34 @@ export default { }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 4462 + 4466 ], "canceled_by_team_id": [ - 4462 + 4466 ], "created_at": [ - 4024 + 4028 ], "expires_at": [ - 4024 + 4028 ], "from_team_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4024 + 4028 ], "region": [ 78 @@ -91713,10 +91677,10 @@ export default { 180 ], "responded_at": [ - 4024 + 4028 ], "to_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -91724,46 +91688,46 @@ export default { }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 2481 + 2485 ], "canceled_by_team_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "expires_at": [ - 2481 + 2485 ], "from_team_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "match_outcome": [ - 2481 + 2485 ], "proposed_scheduled_at": [ - 2481 + 2485 ], "region": [ - 2481 + 2485 ], "requested_by_steam_id": [ - 2481 + 2485 ], "responded_at": [ - 2481 + 2485 ], "to_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -91771,34 +91735,34 @@ export default { }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 4462 + 4466 ], "canceled_by_team_id": [ - 4462 + 4466 ], "created_at": [ - 4024 + 4028 ], "expires_at": [ - 4024 + 4028 ], "from_team_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4024 + 4028 ], "region": [ 78 @@ -91807,10 +91771,10 @@ export default { 180 ], "responded_at": [ - 4024 + 4028 ], "to_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -91818,46 +91782,46 @@ export default { }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 2481 + 2485 ], "canceled_by_team_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "expires_at": [ - 2481 + 2485 ], "from_team_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "match_outcome": [ - 2481 + 2485 ], "proposed_scheduled_at": [ - 2481 + 2485 ], "region": [ - 2481 + 2485 ], "requested_by_steam_id": [ - 2481 + 2485 ], "responded_at": [ - 2481 + 2485 ], "to_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -91868,7 +91832,7 @@ export default { 38 ], "returning": [ - 3880 + 3884 ], "__typename": [ 78 @@ -91876,10 +91840,10 @@ export default { }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 3894 + 3898 ], "on_conflict": [ - 3901 + 3905 ], "__typename": [ 78 @@ -91887,13 +91851,13 @@ export default { }, "team_scrim_requests_on_conflict": { "constraint": [ - 3892 + 3896 ], "update_columns": [ - 3918 + 3922 ], "where": [ - 3891 + 3895 ], "__typename": [ 78 @@ -91901,82 +91865,82 @@ export default { }, "team_scrim_requests_order_by": { "auto_generated": [ - 2481 + 2485 ], "awaiting_team": [ - 4001 + 4005 ], "awaiting_team_id": [ - 2481 + 2485 ], "canceled_by_team_id": [ - 2481 + 2485 ], "canceled_late": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "expires_at": [ - 2481 + 2485 ], "from_team": [ - 4001 + 4005 ], "from_team_checked_in": [ - 2481 + 2485 ], "from_team_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_options": [ - 2189 + 2193 ], "match_options_id": [ - 2481 + 2485 ], "match_outcome": [ - 2481 + 2485 ], "proposals_aggregate": [ - 3844 + 3848 ], "proposed_scheduled_at": [ - 2481 + 2485 ], "region": [ - 2481 + 2485 ], "requested_by": [ - 3452 + 3456 ], "requested_by_steam_id": [ - 2481 + 2485 ], "responded_at": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "to_team": [ - 4001 + 4005 ], "to_team_checked_in": [ - 2481 + 2485 ], "to_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -91984,7 +91948,7 @@ export default { }, "team_scrim_requests_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -91998,40 +91962,40 @@ export default { 3 ], "awaiting_team_id": [ - 4462 + 4466 ], "canceled_by_team_id": [ - 4462 + 4466 ], "canceled_late": [ 3 ], "created_at": [ - 4024 + 4028 ], "expires_at": [ - 4024 + 4028 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4024 + 4028 ], "region": [ 78 @@ -92040,7 +92004,7 @@ export default { 180 ], "responded_at": [ - 4024 + 4028 ], "status": [ 962 @@ -92049,7 +92013,7 @@ export default { 3 ], "to_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -92065,7 +92029,7 @@ export default { }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -92081,7 +92045,7 @@ export default { }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -92097,7 +92061,7 @@ export default { }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -92105,7 +92069,7 @@ export default { }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 3915 + 3919 ], "ordering": [ 236 @@ -92119,40 +92083,40 @@ export default { 3 ], "awaiting_team_id": [ - 4462 + 4466 ], "canceled_by_team_id": [ - 4462 + 4466 ], "canceled_late": [ 3 ], "created_at": [ - 4024 + 4028 ], "expires_at": [ - 4024 + 4028 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4462 + 4466 ], "id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4024 + 4028 ], "region": [ 78 @@ -92161,7 +92125,7 @@ export default { 180 ], "responded_at": [ - 4024 + 4028 ], "status": [ 962 @@ -92170,7 +92134,7 @@ export default { 3 ], "to_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -92186,7 +92150,7 @@ export default { }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -92195,13 +92159,13 @@ export default { "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 3893 + 3897 ], "_set": [ - 3907 + 3911 ], "where": [ - 3891 + 3895 ], "__typename": [ 78 @@ -92217,7 +92181,7 @@ export default { }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -92233,7 +92197,7 @@ export default { }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -92249,7 +92213,7 @@ export default { }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -92260,7 +92224,7 @@ export default { 3 ], "created_at": [ - 4024 + 4028 ], "elo_max": [ 38 @@ -92272,10 +92236,10 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "map_ids": [ - 4462 + 4466 ], "notes": [ 78 @@ -92284,13 +92248,13 @@ export default { 78 ], "team": [ - 3981 + 3985 ], "team_id": [ - 4462 + 4466 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -92298,10 +92262,10 @@ export default { }, "team_scrim_settings_aggregate": { "aggregate": [ - 3928 + 3932 ], "nodes": [ - 3926 + 3930 ], "__typename": [ 78 @@ -92309,13 +92273,13 @@ export default { }, "team_scrim_settings_aggregate_fields": { "avg": [ - 3929 + 3933 ], "count": [ 38, { "columns": [ - 3941, + 3945, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -92324,31 +92288,31 @@ export default { } ], "max": [ - 3934 + 3938 ], "min": [ - 3935 + 3939 ], "stddev": [ - 3943 + 3947 ], "stddev_pop": [ - 3944 + 3948 ], "stddev_samp": [ - 3945 + 3949 ], "sum": [ - 3948 + 3952 ], "var_pop": [ - 3951 + 3955 ], "var_samp": [ - 3952 + 3956 ], "variance": [ - 3953 + 3957 ], "__typename": [ 78 @@ -92367,19 +92331,19 @@ export default { }, "team_scrim_settings_bool_exp": { "_and": [ - 3930 + 3934 ], "_not": [ - 3930 + 3934 ], "_or": [ - 3930 + 3934 ], "allow_outside_availability": [ 4 ], "created_at": [ - 4025 + 4029 ], "elo_max": [ 39 @@ -92391,10 +92355,10 @@ export default { 4 ], "id": [ - 4464 + 4468 ], "map_ids": [ - 4463 + 4467 ], "notes": [ 80 @@ -92403,13 +92367,13 @@ export default { 79 ], "team": [ - 3990 + 3994 ], "team_id": [ - 4464 + 4468 ], "updated_at": [ - 4025 + 4029 ], "__typename": [ 78 @@ -92432,7 +92396,7 @@ export default { 3 ], "created_at": [ - 4024 + 4028 ], "elo_max": [ 38 @@ -92444,10 +92408,10 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "map_ids": [ - 4462 + 4466 ], "notes": [ 78 @@ -92456,13 +92420,13 @@ export default { 78 ], "team": [ - 3999 + 4003 ], "team_id": [ - 4462 + 4466 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -92470,7 +92434,7 @@ export default { }, "team_scrim_settings_max_fields": { "created_at": [ - 4024 + 4028 ], "elo_max": [ 38 @@ -92479,10 +92443,10 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "map_ids": [ - 4462 + 4466 ], "notes": [ 78 @@ -92491,10 +92455,10 @@ export default { 78 ], "team_id": [ - 4462 + 4466 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -92502,7 +92466,7 @@ export default { }, "team_scrim_settings_min_fields": { "created_at": [ - 4024 + 4028 ], "elo_max": [ 38 @@ -92511,10 +92475,10 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "map_ids": [ - 4462 + 4466 ], "notes": [ 78 @@ -92523,10 +92487,10 @@ export default { 78 ], "team_id": [ - 4462 + 4466 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -92537,7 +92501,7 @@ export default { 38 ], "returning": [ - 3926 + 3930 ], "__typename": [ 78 @@ -92545,10 +92509,10 @@ export default { }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 3933 + 3937 ], "on_conflict": [ - 3938 + 3942 ], "__typename": [ 78 @@ -92556,13 +92520,13 @@ export default { }, "team_scrim_settings_on_conflict": { "constraint": [ - 3931 + 3935 ], "update_columns": [ - 3949 + 3953 ], "where": [ - 3930 + 3934 ], "__typename": [ 78 @@ -92570,40 +92534,40 @@ export default { }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "elo_max": [ - 2481 + 2485 ], "elo_min": [ - 2481 + 2485 ], "enabled": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "map_ids": [ - 2481 + 2485 ], "notes": [ - 2481 + 2485 ], "regions": [ - 2481 + 2485 ], "team": [ - 4001 + 4005 ], "team_id": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "__typename": [ 78 @@ -92611,7 +92575,7 @@ export default { }, "team_scrim_settings_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -92623,7 +92587,7 @@ export default { 3 ], "created_at": [ - 4024 + 4028 ], "elo_max": [ 38 @@ -92635,10 +92599,10 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "map_ids": [ - 4462 + 4466 ], "notes": [ 78 @@ -92647,10 +92611,10 @@ export default { 78 ], "team_id": [ - 4462 + 4466 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -92691,7 +92655,7 @@ export default { }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 3947 + 3951 ], "ordering": [ 236 @@ -92705,7 +92669,7 @@ export default { 3 ], "created_at": [ - 4024 + 4028 ], "elo_max": [ 38 @@ -92717,10 +92681,10 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "map_ids": [ - 4462 + 4466 ], "notes": [ 78 @@ -92729,10 +92693,10 @@ export default { 78 ], "team_id": [ - 4462 + 4466 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -92752,13 +92716,13 @@ export default { "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 3932 + 3936 ], "_set": [ - 3942 + 3946 ], "where": [ - 3930 + 3934 ], "__typename": [ 78 @@ -92799,16 +92763,16 @@ export default { }, "team_suggestions": { "created_at": [ - 4024 + 4028 ], "group_hash": [ 78 ], "id": [ - 4462 + 4466 ], "last_notified_at": [ - 4024 + 4028 ], "member_steam_ids": [ 180 @@ -92825,10 +92789,10 @@ export default { }, "team_suggestions_aggregate": { "aggregate": [ - 3956 + 3960 ], "nodes": [ - 3954 + 3958 ], "__typename": [ 78 @@ -92836,13 +92800,13 @@ export default { }, "team_suggestions_aggregate_fields": { "avg": [ - 3957 + 3961 ], "count": [ 38, { "columns": [ - 3968, + 3972, "[team_suggestions_select_column!]" ], "distinct": [ @@ -92851,31 +92815,31 @@ export default { } ], "max": [ - 3962 + 3966 ], "min": [ - 3963 + 3967 ], "stddev": [ - 3970 + 3974 ], "stddev_pop": [ - 3971 + 3975 ], "stddev_samp": [ - 3972 + 3976 ], "sum": [ - 3975 + 3979 ], "var_pop": [ - 3978 + 3982 ], "var_samp": [ - 3979 + 3983 ], "variance": [ - 3980 + 3984 ], "__typename": [ 78 @@ -92891,25 +92855,25 @@ export default { }, "team_suggestions_bool_exp": { "_and": [ - 3958 + 3962 ], "_not": [ - 3958 + 3962 ], "_or": [ - 3958 + 3962 ], "created_at": [ - 4025 + 4029 ], "group_hash": [ 80 ], "id": [ - 4464 + 4468 ], "last_notified_at": [ - 4025 + 4029 ], "member_steam_ids": [ 181 @@ -92935,16 +92899,16 @@ export default { }, "team_suggestions_insert_input": { "created_at": [ - 4024 + 4028 ], "group_hash": [ 78 ], "id": [ - 4462 + 4466 ], "last_notified_at": [ - 4024 + 4028 ], "member_steam_ids": [ 180 @@ -92961,16 +92925,16 @@ export default { }, "team_suggestions_max_fields": { "created_at": [ - 4024 + 4028 ], "group_hash": [ 78 ], "id": [ - 4462 + 4466 ], "last_notified_at": [ - 4024 + 4028 ], "member_steam_ids": [ 180 @@ -92987,16 +92951,16 @@ export default { }, "team_suggestions_min_fields": { "created_at": [ - 4024 + 4028 ], "group_hash": [ 78 ], "id": [ - 4462 + 4466 ], "last_notified_at": [ - 4024 + 4028 ], "member_steam_ids": [ 180 @@ -93016,7 +92980,7 @@ export default { 38 ], "returning": [ - 3954 + 3958 ], "__typename": [ 78 @@ -93024,13 +92988,13 @@ export default { }, "team_suggestions_on_conflict": { "constraint": [ - 3959 + 3963 ], "update_columns": [ - 3976 + 3980 ], "where": [ - 3958 + 3962 ], "__typename": [ 78 @@ -93038,25 +93002,25 @@ export default { }, "team_suggestions_order_by": { "created_at": [ - 2481 + 2485 ], "group_hash": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "last_notified_at": [ - 2481 + 2485 ], "member_steam_ids": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "together_count": [ - 2481 + 2485 ], "__typename": [ 78 @@ -93064,7 +93028,7 @@ export default { }, "team_suggestions_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -93073,16 +93037,16 @@ export default { "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4024 + 4028 ], "group_hash": [ 78 ], "id": [ - 4462 + 4466 ], "last_notified_at": [ - 4024 + 4028 ], "member_steam_ids": [ 180 @@ -93123,7 +93087,7 @@ export default { }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 3974 + 3978 ], "ordering": [ 236 @@ -93134,16 +93098,16 @@ export default { }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "group_hash": [ 78 ], "id": [ - 4462 + 4466 ], "last_notified_at": [ - 4024 + 4028 ], "member_steam_ids": [ 180 @@ -93169,13 +93133,13 @@ export default { "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 3960 + 3964 ], "_set": [ - 3969 + 3973 ], "where": [ - 3958 + 3962 ], "__typename": [ 78 @@ -93222,19 +93186,19 @@ export default { 3 ], "captain": [ - 3439 + 3443 ], "captain_steam_id": [ 180 ], "id": [ - 4462 + 4466 ], "invites": [ - 3698, + 3702, { "distinct_on": [ - 3719, + 3723, "[team_invites_select_column!]" ], "limit": [ @@ -93244,19 +93208,19 @@ export default { 38 ], "order_by": [ - 3717, + 3721, "[team_invites_order_by!]" ], "where": [ - 3707 + 3711 ] } ], "invites_aggregate": [ - 3699, + 3703, { "distinct_on": [ - 3719, + 3723, "[team_invites_select_column!]" ], "limit": [ @@ -93266,11 +93230,11 @@ export default { 38 ], "order_by": [ - 3717, + 3721, "[team_invites_order_by!]" ], "where": [ - 3707 + 3711 ] } ], @@ -93319,10 +93283,10 @@ export default { } ], "matches": [ - 2296, + 2300, { "distinct_on": [ - 2318, + 2322, "[matches_select_column!]" ], "limit": [ @@ -93332,11 +93296,11 @@ export default { 38 ], "order_by": [ - 2316, + 2320, "[matches_order_by!]" ], "where": [ - 2305 + 2309 ] } ], @@ -93344,25 +93308,25 @@ export default { 78 ], "owner": [ - 3439 + 3443 ], "owner_steam_id": [ 180 ], "ranks": [ - 5095 + 5099 ], "reputation": [ - 5115 + 5119 ], "role": [ 78 ], "roster": [ - 3739, + 3743, { "distinct_on": [ - 3762, + 3766, "[team_roster_select_column!]" ], "limit": [ @@ -93372,19 +93336,19 @@ export default { 38 ], "order_by": [ - 3760, + 3764, "[team_roster_order_by!]" ], "where": [ - 3750 + 3754 ] } ], "roster_aggregate": [ - 3740, + 3744, { "distinct_on": [ - 3762, + 3766, "[team_roster_select_column!]" ], "limit": [ @@ -93394,19 +93358,19 @@ export default { 38 ], "order_by": [ - 3760, + 3764, "[team_roster_order_by!]" ], "where": [ - 3750 + 3754 ] } ], "scrim_availability": [ - 3811, + 3815, { "distinct_on": [ - 3831, + 3835, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -93416,19 +93380,19 @@ export default { 38 ], "order_by": [ - 3829, + 3833, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 3824 ] } ], "scrim_availability_aggregate": [ - 3812, + 3816, { "distinct_on": [ - 3831, + 3835, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -93438,25 +93402,25 @@ export default { 38 ], "order_by": [ - 3829, + 3833, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 3824 ] } ], "scrim_settings": [ - 3926 + 3930 ], "short_name": [ 78 ], "tournament_teams": [ - 4287, + 4291, { "distinct_on": [ - 4309, + 4313, "[tournament_teams_select_column!]" ], "limit": [ @@ -93466,19 +93430,19 @@ export default { 38 ], "order_by": [ - 4307, + 4311, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4300 ] } ], "tournament_teams_aggregate": [ - 4288, + 4292, { "distinct_on": [ - 4309, + 4313, "[tournament_teams_select_column!]" ], "limit": [ @@ -93488,11 +93452,11 @@ export default { 38 ], "order_by": [ - 4307, + 4311, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4300 ] } ], @@ -93502,10 +93466,10 @@ export default { }, "teams_aggregate": { "aggregate": [ - 3985 + 3989 ], "nodes": [ - 3981 + 3985 ], "__typename": [ 78 @@ -93513,7 +93477,7 @@ export default { }, "teams_aggregate_bool_exp": { "count": [ - 3984 + 3988 ], "__typename": [ 78 @@ -93521,13 +93485,13 @@ export default { }, "teams_aggregate_bool_exp_count": { "arguments": [ - 4003 + 4007 ], "distinct": [ 3 ], "filter": [ - 3990 + 3994 ], "predicate": [ 39 @@ -93538,13 +93502,13 @@ export default { }, "teams_aggregate_fields": { "avg": [ - 3988 + 3992 ], "count": [ 38, { "columns": [ - 4003, + 4007, "[teams_select_column!]" ], "distinct": [ @@ -93553,31 +93517,31 @@ export default { } ], "max": [ - 3994 + 3998 ], "min": [ - 3996 + 4000 ], "stddev": [ - 4005 + 4009 ], "stddev_pop": [ - 4007 + 4011 ], "stddev_samp": [ - 4009 + 4013 ], "sum": [ - 4013 + 4017 ], "var_pop": [ - 4017 + 4021 ], "var_samp": [ - 4019 + 4023 ], "variance": [ - 4021 + 4025 ], "__typename": [ 78 @@ -93585,37 +93549,37 @@ export default { }, "teams_aggregate_order_by": { "avg": [ - 3989 + 3993 ], "count": [ - 2481 + 2485 ], "max": [ - 3995 + 3999 ], "min": [ - 3997 + 4001 ], "stddev": [ - 4006 + 4010 ], "stddev_pop": [ - 4008 + 4012 ], "stddev_samp": [ - 4010 + 4014 ], "sum": [ - 4014 + 4018 ], "var_pop": [ - 4018 + 4022 ], "var_samp": [ - 4020 + 4024 ], "variance": [ - 4022 + 4026 ], "__typename": [ 78 @@ -93623,10 +93587,10 @@ export default { }, "teams_arr_rel_insert_input": { "data": [ - 3993 + 3997 ], "on_conflict": [ - 4000 + 4004 ], "__typename": [ 78 @@ -93645,10 +93609,10 @@ export default { }, "teams_avg_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -93656,13 +93620,13 @@ export default { }, "teams_bool_exp": { "_and": [ - 3990 + 3994 ], "_not": [ - 3990 + 3994 ], "_or": [ - 3990 + 3994 ], "avatar_url": [ 80 @@ -93680,19 +93644,19 @@ export default { 4 ], "captain": [ - 3443 + 3447 ], "captain_steam_id": [ 182 ], "id": [ - 4464 + 4468 ], "invites": [ - 3707 + 3711 ], "invites_aggregate": [ - 3700 + 3704 ], "match_lineups": [ 1985 @@ -93701,49 +93665,49 @@ export default { 1978 ], "matches": [ - 2305 + 2309 ], "name": [ 80 ], "owner": [ - 3443 + 3447 ], "owner_steam_id": [ 182 ], "ranks": [ - 5099 + 5103 ], "reputation": [ - 5119 + 5123 ], "role": [ 80 ], "roster": [ - 3750 + 3754 ], "roster_aggregate": [ - 3741 + 3745 ], "scrim_availability": [ - 3820 + 3824 ], "scrim_availability_aggregate": [ - 3813 + 3817 ], "scrim_settings": [ - 3930 + 3934 ], "short_name": [ 80 ], "tournament_teams": [ - 4296 + 4300 ], "tournament_teams_aggregate": [ - 4289 + 4293 ], "__typename": [ 78 @@ -93766,16 +93730,16 @@ export default { 78 ], "captain": [ - 3450 + 3454 ], "captain_steam_id": [ 180 ], "id": [ - 4462 + 4466 ], "invites": [ - 3704 + 3708 ], "match_lineups": [ 1982 @@ -93784,31 +93748,31 @@ export default { 78 ], "owner": [ - 3450 + 3454 ], "owner_steam_id": [ 180 ], "ranks": [ - 5103 + 5107 ], "reputation": [ - 5123 + 5127 ], "roster": [ - 3747 + 3751 ], "scrim_availability": [ - 3819 + 3823 ], "scrim_settings": [ - 3937 + 3941 ], "short_name": [ 78 ], "tournament_teams": [ - 4293 + 4297 ], "__typename": [ 78 @@ -93822,7 +93786,7 @@ export default { 180 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -93842,22 +93806,22 @@ export default { }, "teams_max_order_by": { "avatar_url": [ - 2481 + 2485 ], "captain_steam_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "short_name": [ - 2481 + 2485 ], "__typename": [ 78 @@ -93871,7 +93835,7 @@ export default { 180 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -93891,22 +93855,22 @@ export default { }, "teams_min_order_by": { "avatar_url": [ - 2481 + 2485 ], "captain_steam_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "short_name": [ - 2481 + 2485 ], "__typename": [ 78 @@ -93917,7 +93881,7 @@ export default { 38 ], "returning": [ - 3981 + 3985 ], "__typename": [ 78 @@ -93925,10 +93889,10 @@ export default { }, "teams_obj_rel_insert_input": { "data": [ - 3993 + 3997 ], "on_conflict": [ - 4000 + 4004 ], "__typename": [ 78 @@ -93936,13 +93900,13 @@ export default { }, "teams_on_conflict": { "constraint": [ - 3991 + 3995 ], "update_columns": [ - 4015 + 4019 ], "where": [ - 3990 + 3994 ], "__typename": [ 78 @@ -93950,70 +93914,70 @@ export default { }, "teams_order_by": { "avatar_url": [ - 2481 + 2485 ], "can_change_role": [ - 2481 + 2485 ], "can_invite": [ - 2481 + 2485 ], "can_manage_scrims": [ - 2481 + 2485 ], "can_remove": [ - 2481 + 2485 ], "captain": [ - 3452 + 3456 ], "captain_steam_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "invites_aggregate": [ - 3703 + 3707 ], "match_lineups_aggregate": [ 1981 ], "matches_aggregate": [ - 2301 + 2305 ], "name": [ - 2481 + 2485 ], "owner": [ - 3452 + 3456 ], "owner_steam_id": [ - 2481 + 2485 ], "ranks": [ - 5104 + 5108 ], "reputation": [ - 5124 + 5128 ], "role": [ - 2481 + 2485 ], "roster_aggregate": [ - 3746 + 3750 ], "scrim_availability_aggregate": [ - 3818 + 3822 ], "scrim_settings": [ - 3939 + 3943 ], "short_name": [ - 2481 + 2485 ], "tournament_teams_aggregate": [ - 4292 + 4296 ], "__typename": [ 78 @@ -94021,7 +93985,7 @@ export default { }, "teams_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -94036,7 +94000,7 @@ export default { 180 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -94064,10 +94028,10 @@ export default { }, "teams_stddev_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -94086,10 +94050,10 @@ export default { }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -94108,10 +94072,10 @@ export default { }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -94119,7 +94083,7 @@ export default { }, "teams_stream_cursor_input": { "initial_value": [ - 4012 + 4016 ], "ordering": [ 236 @@ -94136,7 +94100,7 @@ export default { 180 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -94164,10 +94128,10 @@ export default { }, "teams_sum_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -94176,13 +94140,13 @@ export default { "teams_update_column": {}, "teams_updates": { "_inc": [ - 3992 + 3996 ], "_set": [ - 4004 + 4008 ], "where": [ - 3990 + 3994 ], "__typename": [ 78 @@ -94201,10 +94165,10 @@ export default { }, "teams_var_pop_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -94223,10 +94187,10 @@ export default { }, "teams_var_samp_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -94245,10 +94209,10 @@ export default { }, "teams_variance_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -94258,31 +94222,31 @@ export default { "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4024 + 4028 ], "_gt": [ - 4024 + 4028 ], "_gte": [ - 4024 + 4028 ], "_in": [ - 4024 + 4028 ], "_is_null": [ 3 ], "_lt": [ - 4024 + 4028 ], "_lte": [ - 4024 + 4028 ], "_neq": [ - 4024 + 4028 ], "_nin": [ - 4024 + 4028 ], "__typename": [ 78 @@ -94293,13 +94257,13 @@ export default { 3 ], "created_at": [ - 4024 + 4028 ], "feeding_brackets": [ - 4026, + 4030, { "distinct_on": [ - 4050, + 4054, "[tournament_brackets_select_column!]" ], "limit": [ @@ -94309,11 +94273,11 @@ export default { 38 ], "order_by": [ - 4048, + 4052, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4041 ] } ], @@ -94321,37 +94285,37 @@ export default { 3 ], "group": [ - 2479 + 2483 ], "id": [ - 4462 + 4466 ], "loser_bracket": [ - 4026 + 4030 ], "loser_parent_bracket_id": [ - 4462 + 4466 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4466 ], "options": [ - 2176 + 2180 ], "parent_bracket": [ - 4026 + 4030 ], "parent_bracket_id": [ - 4462 + 4466 ], "path": [ 78 @@ -94360,10 +94324,10 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4028 ], "scheduled_eta": [ - 4024 + 4028 ], "scheduling_proposals": [ 1489, @@ -94410,28 +94374,28 @@ export default { } ], "stage": [ - 4154 + 4158 ], "team_1": [ - 4287 + 4291 ], "team_1_seed": [ 38 ], "team_2": [ - 4287 + 4291 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "tournament_team_id_1": [ - 4462 + 4466 ], "tournament_team_id_2": [ - 4462 + 4466 ], "__typename": [ 78 @@ -94439,10 +94403,10 @@ export default { }, "tournament_brackets_aggregate": { "aggregate": [ - 4032 + 4036 ], "nodes": [ - 4026 + 4030 ], "__typename": [ 78 @@ -94450,13 +94414,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4029 + 4033 ], "bool_or": [ - 4030 + 4034 ], "count": [ - 4031 + 4035 ], "__typename": [ 78 @@ -94464,13 +94428,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4051 + 4055 ], "distinct": [ 3 ], "filter": [ - 4037 + 4041 ], "predicate": [ 4 @@ -94481,13 +94445,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4052 + 4056 ], "distinct": [ 3 ], "filter": [ - 4037 + 4041 ], "predicate": [ 4 @@ -94498,13 +94462,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4050 + 4054 ], "distinct": [ 3 ], "filter": [ - 4037 + 4041 ], "predicate": [ 39 @@ -94515,13 +94479,13 @@ export default { }, "tournament_brackets_aggregate_fields": { "avg": [ - 4035 + 4039 ], "count": [ 38, { "columns": [ - 4050, + 4054, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -94530,31 +94494,31 @@ export default { } ], "max": [ - 4041 + 4045 ], "min": [ - 4043 + 4047 ], "stddev": [ - 4054 + 4058 ], "stddev_pop": [ - 4056 + 4060 ], "stddev_samp": [ - 4058 + 4062 ], "sum": [ - 4062 + 4066 ], "var_pop": [ - 4066 + 4070 ], "var_samp": [ - 4068 + 4072 ], "variance": [ - 4070 + 4074 ], "__typename": [ 78 @@ -94562,37 +94526,37 @@ export default { }, "tournament_brackets_aggregate_order_by": { "avg": [ - 4036 + 4040 ], "count": [ - 2481 + 2485 ], "max": [ - 4042 + 4046 ], "min": [ - 4044 + 4048 ], "stddev": [ - 4055 + 4059 ], "stddev_pop": [ - 4057 + 4061 ], "stddev_samp": [ - 4059 + 4063 ], "sum": [ - 4063 + 4067 ], "var_pop": [ - 4067 + 4071 ], "var_samp": [ - 4069 + 4073 ], "variance": [ - 4071 + 4075 ], "__typename": [ 78 @@ -94600,10 +94564,10 @@ export default { }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4040 + 4044 ], "on_conflict": [ - 4047 + 4051 ], "__typename": [ 78 @@ -94631,19 +94595,19 @@ export default { }, "tournament_brackets_avg_order_by": { "group": [ - 2481 + 2485 ], "match_number": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "team_1_seed": [ - 2481 + 2485 ], "team_2_seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -94651,58 +94615,58 @@ export default { }, "tournament_brackets_bool_exp": { "_and": [ - 4037 + 4041 ], "_not": [ - 4037 + 4041 ], "_or": [ - 4037 + 4041 ], "bye": [ 4 ], "created_at": [ - 4025 + 4029 ], "feeding_brackets": [ - 4037 + 4041 ], "finished": [ 4 ], "group": [ - 2480 + 2484 ], "id": [ - 4464 + 4468 ], "loser_bracket": [ - 4037 + 4041 ], "loser_parent_bracket_id": [ - 4464 + 4468 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_number": [ 39 ], "match_options_id": [ - 4464 + 4468 ], "options": [ - 2180 + 2184 ], "parent_bracket": [ - 4037 + 4041 ], "parent_bracket_id": [ - 4464 + 4468 ], "path": [ 80 @@ -94711,10 +94675,10 @@ export default { 39 ], "scheduled_at": [ - 4025 + 4029 ], "scheduled_eta": [ - 4025 + 4029 ], "scheduling_proposals": [ 1498 @@ -94723,28 +94687,28 @@ export default { 1491 ], "stage": [ - 4166 + 4170 ], "team_1": [ - 4296 + 4300 ], "team_1_seed": [ 39 ], "team_2": [ - 4296 + 4300 ], "team_2_seed": [ 39 ], "tournament_stage_id": [ - 4464 + 4468 ], "tournament_team_id_1": [ - 4464 + 4468 ], "tournament_team_id_2": [ - 4464 + 4468 ], "__typename": [ 78 @@ -94753,7 +94717,7 @@ export default { "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 2479 + 2483 ], "match_number": [ 38 @@ -94776,43 +94740,43 @@ export default { 3 ], "created_at": [ - 4024 + 4028 ], "finished": [ 3 ], "group": [ - 2479 + 2483 ], "id": [ - 4462 + 4466 ], "loser_bracket": [ - 4046 + 4050 ], "loser_parent_bracket_id": [ - 4462 + 4466 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4466 ], "options": [ - 2187 + 2191 ], "parent_bracket": [ - 4046 + 4050 ], "parent_bracket_id": [ - 4462 + 4466 ], "path": [ 78 @@ -94821,37 +94785,37 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4028 ], "scheduled_eta": [ - 4024 + 4028 ], "scheduling_proposals": [ 1495 ], "stage": [ - 4178 + 4182 ], "team_1": [ - 4305 + 4309 ], "team_1_seed": [ 38 ], "team_2": [ - 4305 + 4309 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "tournament_team_id_1": [ - 4462 + 4466 ], "tournament_team_id_2": [ - 4462 + 4466 ], "__typename": [ 78 @@ -94859,28 +94823,28 @@ export default { }, "tournament_brackets_max_fields": { "created_at": [ - 4024 + 4028 ], "group": [ - 2479 + 2483 ], "id": [ - 4462 + 4466 ], "loser_parent_bracket_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4466 ], "parent_bracket_id": [ - 4462 + 4466 ], "path": [ 78 @@ -94889,10 +94853,10 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4028 ], "scheduled_eta": [ - 4024 + 4028 ], "team_1_seed": [ 38 @@ -94901,13 +94865,13 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "tournament_team_id_1": [ - 4462 + 4466 ], "tournament_team_id_2": [ - 4462 + 4466 ], "__typename": [ 78 @@ -94915,55 +94879,55 @@ export default { }, "tournament_brackets_max_order_by": { "created_at": [ - 2481 + 2485 ], "group": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "loser_parent_bracket_id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_number": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "parent_bracket_id": [ - 2481 + 2485 ], "path": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "scheduled_at": [ - 2481 + 2485 ], "scheduled_eta": [ - 2481 + 2485 ], "team_1_seed": [ - 2481 + 2485 ], "team_2_seed": [ - 2481 + 2485 ], "tournament_stage_id": [ - 2481 + 2485 ], "tournament_team_id_1": [ - 2481 + 2485 ], "tournament_team_id_2": [ - 2481 + 2485 ], "__typename": [ 78 @@ -94971,28 +94935,28 @@ export default { }, "tournament_brackets_min_fields": { "created_at": [ - 4024 + 4028 ], "group": [ - 2479 + 2483 ], "id": [ - 4462 + 4466 ], "loser_parent_bracket_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4466 ], "parent_bracket_id": [ - 4462 + 4466 ], "path": [ 78 @@ -95001,10 +94965,10 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4028 ], "scheduled_eta": [ - 4024 + 4028 ], "team_1_seed": [ 38 @@ -95013,13 +94977,13 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "tournament_team_id_1": [ - 4462 + 4466 ], "tournament_team_id_2": [ - 4462 + 4466 ], "__typename": [ 78 @@ -95027,55 +94991,55 @@ export default { }, "tournament_brackets_min_order_by": { "created_at": [ - 2481 + 2485 ], "group": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "loser_parent_bracket_id": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_number": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "parent_bracket_id": [ - 2481 + 2485 ], "path": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "scheduled_at": [ - 2481 + 2485 ], "scheduled_eta": [ - 2481 + 2485 ], "team_1_seed": [ - 2481 + 2485 ], "team_2_seed": [ - 2481 + 2485 ], "tournament_stage_id": [ - 2481 + 2485 ], "tournament_team_id_1": [ - 2481 + 2485 ], "tournament_team_id_2": [ - 2481 + 2485 ], "__typename": [ 78 @@ -95086,7 +95050,7 @@ export default { 38 ], "returning": [ - 4026 + 4030 ], "__typename": [ 78 @@ -95094,10 +95058,10 @@ export default { }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4040 + 4044 ], "on_conflict": [ - 4047 + 4051 ], "__typename": [ 78 @@ -95105,13 +95069,13 @@ export default { }, "tournament_brackets_on_conflict": { "constraint": [ - 4038 + 4042 ], "update_columns": [ - 4064 + 4068 ], "where": [ - 4037 + 4041 ], "__typename": [ 78 @@ -95119,88 +95083,88 @@ export default { }, "tournament_brackets_order_by": { "bye": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "feeding_brackets_aggregate": [ - 4033 + 4037 ], "finished": [ - 2481 + 2485 ], "group": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "loser_bracket": [ - 4048 + 4052 ], "loser_parent_bracket_id": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_number": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "options": [ - 2189 + 2193 ], "parent_bracket": [ - 4048 + 4052 ], "parent_bracket_id": [ - 2481 + 2485 ], "path": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "scheduled_at": [ - 2481 + 2485 ], "scheduled_eta": [ - 2481 + 2485 ], "scheduling_proposals_aggregate": [ 1494 ], "stage": [ - 4180 + 4184 ], "team_1": [ - 4307 + 4311 ], "team_1_seed": [ - 2481 + 2485 ], "team_2": [ - 4307 + 4311 ], "team_2_seed": [ - 2481 + 2485 ], "tournament_stage_id": [ - 2481 + 2485 ], "tournament_team_id_1": [ - 2481 + 2485 ], "tournament_team_id_2": [ - 2481 + 2485 ], "__typename": [ 78 @@ -95208,7 +95172,7 @@ export default { }, "tournament_brackets_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -95222,31 +95186,31 @@ export default { 3 ], "created_at": [ - 4024 + 4028 ], "finished": [ 3 ], "group": [ - 2479 + 2483 ], "id": [ - 4462 + 4466 ], "loser_parent_bracket_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4466 ], "parent_bracket_id": [ - 4462 + 4466 ], "path": [ 78 @@ -95255,10 +95219,10 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4028 ], "scheduled_eta": [ - 4024 + 4028 ], "team_1_seed": [ 38 @@ -95267,13 +95231,13 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "tournament_team_id_1": [ - 4462 + 4466 ], "tournament_team_id_2": [ - 4462 + 4466 ], "__typename": [ 78 @@ -95301,19 +95265,19 @@ export default { }, "tournament_brackets_stddev_order_by": { "group": [ - 2481 + 2485 ], "match_number": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "team_1_seed": [ - 2481 + 2485 ], "team_2_seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -95341,19 +95305,19 @@ export default { }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 2481 + 2485 ], "match_number": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "team_1_seed": [ - 2481 + 2485 ], "team_2_seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -95381,19 +95345,19 @@ export default { }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 2481 + 2485 ], "match_number": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "team_1_seed": [ - 2481 + 2485 ], "team_2_seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -95401,7 +95365,7 @@ export default { }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4061 + 4065 ], "ordering": [ 236 @@ -95415,31 +95379,31 @@ export default { 3 ], "created_at": [ - 4024 + 4028 ], "finished": [ 3 ], "group": [ - 2479 + 2483 ], "id": [ - 4462 + 4466 ], "loser_parent_bracket_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4466 ], "parent_bracket_id": [ - 4462 + 4466 ], "path": [ 78 @@ -95448,10 +95412,10 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4028 ], "scheduled_eta": [ - 4024 + 4028 ], "team_1_seed": [ 38 @@ -95460,13 +95424,13 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "tournament_team_id_1": [ - 4462 + 4466 ], "tournament_team_id_2": [ - 4462 + 4466 ], "__typename": [ 78 @@ -95474,7 +95438,7 @@ export default { }, "tournament_brackets_sum_fields": { "group": [ - 2479 + 2483 ], "match_number": [ 38 @@ -95494,19 +95458,19 @@ export default { }, "tournament_brackets_sum_order_by": { "group": [ - 2481 + 2485 ], "match_number": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "team_1_seed": [ - 2481 + 2485 ], "team_2_seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -95515,13 +95479,13 @@ export default { "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4039 + 4043 ], "_set": [ - 4053 + 4057 ], "where": [ - 4037 + 4041 ], "__typename": [ 78 @@ -95549,19 +95513,19 @@ export default { }, "tournament_brackets_var_pop_order_by": { "group": [ - 2481 + 2485 ], "match_number": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "team_1_seed": [ - 2481 + 2485 ], "team_2_seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -95589,19 +95553,19 @@ export default { }, "tournament_brackets_var_samp_order_by": { "group": [ - 2481 + 2485 ], "match_number": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "team_1_seed": [ - 2481 + 2485 ], "team_2_seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -95629,19 +95593,19 @@ export default { }, "tournament_brackets_variance_order_by": { "group": [ - 2481 + 2485 ], "match_number": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "team_1_seed": [ - 2481 + 2485 ], "team_2_seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -95649,16 +95613,16 @@ export default { }, "tournament_organizers": { "organizer": [ - 3439 + 3443 ], "steam_id": [ 180 ], "tournament": [ - 4416 + 4420 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -95666,10 +95630,10 @@ export default { }, "tournament_organizers_aggregate": { "aggregate": [ - 4076 + 4080 ], "nodes": [ - 4072 + 4076 ], "__typename": [ 78 @@ -95677,7 +95641,7 @@ export default { }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4075 + 4079 ], "__typename": [ 78 @@ -95685,13 +95649,13 @@ export default { }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4093 + 4097 ], "distinct": [ 3 ], "filter": [ - 4081 + 4085 ], "predicate": [ 39 @@ -95702,13 +95666,13 @@ export default { }, "tournament_organizers_aggregate_fields": { "avg": [ - 4079 + 4083 ], "count": [ 38, { "columns": [ - 4093, + 4097, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -95717,31 +95681,31 @@ export default { } ], "max": [ - 4085 + 4089 ], "min": [ - 4087 + 4091 ], "stddev": [ - 4095 + 4099 ], "stddev_pop": [ - 4097 + 4101 ], "stddev_samp": [ - 4099 + 4103 ], "sum": [ - 4103 + 4107 ], "var_pop": [ - 4107 + 4111 ], "var_samp": [ - 4109 + 4113 ], "variance": [ - 4111 + 4115 ], "__typename": [ 78 @@ -95749,37 +95713,37 @@ export default { }, "tournament_organizers_aggregate_order_by": { "avg": [ - 4080 + 4084 ], "count": [ - 2481 + 2485 ], "max": [ - 4086 + 4090 ], "min": [ - 4088 + 4092 ], "stddev": [ - 4096 + 4100 ], "stddev_pop": [ - 4098 + 4102 ], "stddev_samp": [ - 4100 + 4104 ], "sum": [ - 4104 + 4108 ], "var_pop": [ - 4108 + 4112 ], "var_samp": [ - 4110 + 4114 ], "variance": [ - 4112 + 4116 ], "__typename": [ 78 @@ -95787,10 +95751,10 @@ export default { }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4084 + 4088 ], "on_conflict": [ - 4090 + 4094 ], "__typename": [ 78 @@ -95806,7 +95770,7 @@ export default { }, "tournament_organizers_avg_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -95814,25 +95778,25 @@ export default { }, "tournament_organizers_bool_exp": { "_and": [ - 4081 + 4085 ], "_not": [ - 4081 + 4085 ], "_or": [ - 4081 + 4085 ], "organizer": [ - 3443 + 3447 ], "steam_id": [ 182 ], "tournament": [ - 4427 + 4431 ], "tournament_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -95849,16 +95813,16 @@ export default { }, "tournament_organizers_insert_input": { "organizer": [ - 3450 + 3454 ], "steam_id": [ 180 ], "tournament": [ - 4436 + 4440 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -95869,7 +95833,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -95877,10 +95841,10 @@ export default { }, "tournament_organizers_max_order_by": { "steam_id": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -95891,7 +95855,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -95899,10 +95863,10 @@ export default { }, "tournament_organizers_min_order_by": { "steam_id": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -95913,7 +95877,7 @@ export default { 38 ], "returning": [ - 4072 + 4076 ], "__typename": [ 78 @@ -95921,13 +95885,13 @@ export default { }, "tournament_organizers_on_conflict": { "constraint": [ - 4082 + 4086 ], "update_columns": [ - 4105 + 4109 ], "where": [ - 4081 + 4085 ], "__typename": [ 78 @@ -95935,16 +95899,16 @@ export default { }, "tournament_organizers_order_by": { "organizer": [ - 3452 + 3456 ], "steam_id": [ - 2481 + 2485 ], "tournament": [ - 4438 + 4442 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -95955,7 +95919,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -95967,7 +95931,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -95983,7 +95947,7 @@ export default { }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -95999,7 +95963,7 @@ export default { }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96015,7 +95979,7 @@ export default { }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96023,7 +95987,7 @@ export default { }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4102 + 4106 ], "ordering": [ 236 @@ -96037,7 +96001,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -96053,7 +96017,7 @@ export default { }, "tournament_organizers_sum_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96062,13 +96026,13 @@ export default { "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4083 + 4087 ], "_set": [ - 4094 + 4098 ], "where": [ - 4081 + 4085 ], "__typename": [ 78 @@ -96084,7 +96048,7 @@ export default { }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96100,7 +96064,7 @@ export default { }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96116,7 +96080,7 @@ export default { }, "tournament_organizers_variance_order_by": { "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96124,28 +96088,28 @@ export default { }, "tournament_stage_windows": { "closes_at": [ - 4024 + 4028 ], "created_at": [ - 4024 + 4028 ], "default_match_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "opens_at": [ - 4024 + 4028 ], "round": [ 38 ], "stage": [ - 4154 + 4158 ], "tournament_stage_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -96153,10 +96117,10 @@ export default { }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4117 + 4121 ], "nodes": [ - 4113 + 4117 ], "__typename": [ 78 @@ -96164,7 +96128,7 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4116 + 4120 ], "__typename": [ 78 @@ -96172,13 +96136,13 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4134 + 4138 ], "distinct": [ 3 ], "filter": [ - 4122 + 4126 ], "predicate": [ 39 @@ -96189,13 +96153,13 @@ export default { }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4120 + 4124 ], "count": [ 38, { "columns": [ - 4134, + 4138, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -96204,31 +96168,31 @@ export default { } ], "max": [ - 4126 + 4130 ], "min": [ - 4128 + 4132 ], "stddev": [ - 4136 + 4140 ], "stddev_pop": [ - 4138 + 4142 ], "stddev_samp": [ - 4140 + 4144 ], "sum": [ - 4144 + 4148 ], "var_pop": [ - 4148 + 4152 ], "var_samp": [ - 4150 + 4154 ], "variance": [ - 4152 + 4156 ], "__typename": [ 78 @@ -96236,37 +96200,37 @@ export default { }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4121 + 4125 ], "count": [ - 2481 + 2485 ], "max": [ - 4127 + 4131 ], "min": [ - 4129 + 4133 ], "stddev": [ - 4137 + 4141 ], "stddev_pop": [ - 4139 + 4143 ], "stddev_samp": [ - 4141 + 4145 ], "sum": [ - 4145 + 4149 ], "var_pop": [ - 4149 + 4153 ], "var_samp": [ - 4151 + 4155 ], "variance": [ - 4153 + 4157 ], "__typename": [ 78 @@ -96274,10 +96238,10 @@ export default { }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4125 + 4129 ], "on_conflict": [ - 4131 + 4135 ], "__typename": [ 78 @@ -96293,7 +96257,7 @@ export default { }, "tournament_stage_windows_avg_order_by": { "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96301,37 +96265,37 @@ export default { }, "tournament_stage_windows_bool_exp": { "_and": [ - 4122 + 4126 ], "_not": [ - 4122 + 4126 ], "_or": [ - 4122 + 4126 ], "closes_at": [ - 4025 + 4029 ], "created_at": [ - 4025 + 4029 ], "default_match_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "opens_at": [ - 4025 + 4029 ], "round": [ 39 ], "stage": [ - 4166 + 4170 ], "tournament_stage_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -96348,28 +96312,28 @@ export default { }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4024 + 4028 ], "created_at": [ - 4024 + 4028 ], "default_match_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "opens_at": [ - 4024 + 4028 ], "round": [ 38 ], "stage": [ - 4178 + 4182 ], "tournament_stage_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -96377,25 +96341,25 @@ export default { }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4024 + 4028 ], "created_at": [ - 4024 + 4028 ], "default_match_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "opens_at": [ - 4024 + 4028 ], "round": [ 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -96403,25 +96367,25 @@ export default { }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "default_match_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "opens_at": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "tournament_stage_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96429,25 +96393,25 @@ export default { }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4024 + 4028 ], "created_at": [ - 4024 + 4028 ], "default_match_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "opens_at": [ - 4024 + 4028 ], "round": [ 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -96455,25 +96419,25 @@ export default { }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "default_match_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "opens_at": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "tournament_stage_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96484,7 +96448,7 @@ export default { 38 ], "returning": [ - 4113 + 4117 ], "__typename": [ 78 @@ -96492,13 +96456,13 @@ export default { }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4123 + 4127 ], "update_columns": [ - 4146 + 4150 ], "where": [ - 4122 + 4126 ], "__typename": [ 78 @@ -96506,28 +96470,28 @@ export default { }, "tournament_stage_windows_order_by": { "closes_at": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "default_match_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "opens_at": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "stage": [ - 4180 + 4184 ], "tournament_stage_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96535,7 +96499,7 @@ export default { }, "tournament_stage_windows_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -96544,25 +96508,25 @@ export default { "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4024 + 4028 ], "created_at": [ - 4024 + 4028 ], "default_match_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "opens_at": [ - 4024 + 4028 ], "round": [ 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -96578,7 +96542,7 @@ export default { }, "tournament_stage_windows_stddev_order_by": { "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96594,7 +96558,7 @@ export default { }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96610,7 +96574,7 @@ export default { }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96618,7 +96582,7 @@ export default { }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4143 + 4147 ], "ordering": [ 236 @@ -96629,25 +96593,25 @@ export default { }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4024 + 4028 ], "created_at": [ - 4024 + 4028 ], "default_match_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "opens_at": [ - 4024 + 4028 ], "round": [ 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -96663,7 +96627,7 @@ export default { }, "tournament_stage_windows_sum_order_by": { "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96672,13 +96636,13 @@ export default { "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4124 + 4128 ], "_set": [ - 4135 + 4139 ], "where": [ - 4122 + 4126 ], "__typename": [ 78 @@ -96694,7 +96658,7 @@ export default { }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96710,7 +96674,7 @@ export default { }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96726,7 +96690,7 @@ export default { }, "tournament_stage_windows_variance_order_by": { "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -96734,10 +96698,10 @@ export default { }, "tournament_stages": { "brackets": [ - 4026, + 4030, { "distinct_on": [ - 4050, + 4054, "[tournament_brackets_select_column!]" ], "limit": [ @@ -96747,19 +96711,19 @@ export default { 38 ], "order_by": [ - 4048, + 4052, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4041 ] } ], "brackets_aggregate": [ - 4027, + 4031, { "distinct_on": [ - 4050, + 4054, "[tournament_brackets_select_column!]" ], "limit": [ @@ -96769,11 +96733,11 @@ export default { 38 ], "order_by": [ - 4048, + 4052, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4041 ] } ], @@ -96790,10 +96754,10 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "max_rounds": [ 38 @@ -96805,16 +96769,16 @@ export default { 38 ], "options": [ - 2176 + 2180 ], "order": [ 38 ], "results": [ - 5135, + 5139, { "distinct_on": [ - 5167, + 5171, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -96824,19 +96788,19 @@ export default { 38 ], "order_by": [ - 5165, + 5169, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5158 ] } ], "results_aggregate": [ - 5136, + 5140, { "distinct_on": [ - 5167, + 5171, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -96846,11 +96810,11 @@ export default { 38 ], "order_by": [ - 5165, + 5169, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5158 ] } ], @@ -96869,19 +96833,19 @@ export default { 3 ], "tournament": [ - 4416 + 4420 ], "tournament_id": [ - 4462 + 4466 ], "type": [ 1103 ], "windows": [ - 4113, + 4117, { "distinct_on": [ - 4134, + 4138, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -96891,19 +96855,19 @@ export default { 38 ], "order_by": [ - 4132, + 4136, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4126 ] } ], "windows_aggregate": [ - 4114, + 4118, { "distinct_on": [ - 4134, + 4138, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -96913,11 +96877,11 @@ export default { 38 ], "order_by": [ - 4132, + 4136, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4126 ] } ], @@ -96927,10 +96891,10 @@ export default { }, "tournament_stages_aggregate": { "aggregate": [ - 4160 + 4164 ], "nodes": [ - 4154 + 4158 ], "__typename": [ 78 @@ -96938,13 +96902,13 @@ export default { }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4157 + 4161 ], "bool_or": [ - 4158 + 4162 ], "count": [ - 4159 + 4163 ], "__typename": [ 78 @@ -96952,13 +96916,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4184 + 4188 ], "distinct": [ 3 ], "filter": [ - 4166 + 4170 ], "predicate": [ 4 @@ -96969,13 +96933,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4185 + 4189 ], "distinct": [ 3 ], "filter": [ - 4166 + 4170 ], "predicate": [ 4 @@ -96986,13 +96950,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4183 + 4187 ], "distinct": [ 3 ], "filter": [ - 4166 + 4170 ], "predicate": [ 39 @@ -97003,13 +96967,13 @@ export default { }, "tournament_stages_aggregate_fields": { "avg": [ - 4164 + 4168 ], "count": [ 38, { "columns": [ - 4183, + 4187, "[tournament_stages_select_column!]" ], "distinct": [ @@ -97018,31 +96982,31 @@ export default { } ], "max": [ - 4173 + 4177 ], "min": [ - 4175 + 4179 ], "stddev": [ - 4187 + 4191 ], "stddev_pop": [ - 4189 + 4193 ], "stddev_samp": [ - 4191 + 4195 ], "sum": [ - 4195 + 4199 ], "var_pop": [ - 4199 + 4203 ], "var_samp": [ - 4201 + 4205 ], "variance": [ - 4203 + 4207 ], "__typename": [ 78 @@ -97050,37 +97014,37 @@ export default { }, "tournament_stages_aggregate_order_by": { "avg": [ - 4165 + 4169 ], "count": [ - 2481 + 2485 ], "max": [ - 4174 + 4178 ], "min": [ - 4176 + 4180 ], "stddev": [ - 4188 + 4192 ], "stddev_pop": [ - 4190 + 4194 ], "stddev_samp": [ - 4192 + 4196 ], "sum": [ - 4196 + 4200 ], "var_pop": [ - 4200 + 4204 ], "var_samp": [ - 4202 + 4206 ], "variance": [ - 4204 + 4208 ], "__typename": [ 78 @@ -97096,10 +97060,10 @@ export default { }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4172 + 4176 ], "on_conflict": [ - 4179 + 4183 ], "__typename": [ 78 @@ -97133,25 +97097,25 @@ export default { }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 2481 + 2485 ], "default_best_of": [ - 2481 + 2485 ], "groups": [ - 2481 + 2485 ], "max_rounds": [ - 2481 + 2485 ], "max_teams": [ - 2481 + 2485 ], "min_teams": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "__typename": [ 78 @@ -97159,19 +97123,19 @@ export default { }, "tournament_stages_bool_exp": { "_and": [ - 4166 + 4170 ], "_not": [ - 4166 + 4170 ], "_or": [ - 4166 + 4170 ], "brackets": [ - 4037 + 4041 ], "brackets_aggregate": [ - 4028 + 4032 ], "decider_best_of": [ 39 @@ -97186,10 +97150,10 @@ export default { 39 ], "id": [ - 4464 + 4468 ], "match_options_id": [ - 4464 + 4468 ], "max_rounds": [ 39 @@ -97201,16 +97165,16 @@ export default { 39 ], "options": [ - 2180 + 2184 ], "order": [ 39 ], "results": [ - 5154 + 5158 ], "results_aggregate": [ - 5137 + 5141 ], "settings": [ 1354 @@ -97222,19 +97186,19 @@ export default { 4 ], "tournament": [ - 4427 + 4431 ], "tournament_id": [ - 4464 + 4468 ], "type": [ 1104 ], "windows": [ - 4122 + 4126 ], "windows_aggregate": [ - 4115 + 4119 ], "__typename": [ 78 @@ -97293,7 +97257,7 @@ export default { }, "tournament_stages_insert_input": { "brackets": [ - 4034 + 4038 ], "decider_best_of": [ 38 @@ -97308,10 +97272,10 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "max_rounds": [ 38 @@ -97323,13 +97287,13 @@ export default { 38 ], "options": [ - 2187 + 2191 ], "order": [ 38 ], "results": [ - 5151 + 5155 ], "settings": [ 1352 @@ -97341,16 +97305,16 @@ export default { 3 ], "tournament": [ - 4436 + 4440 ], "tournament_id": [ - 4462 + 4466 ], "type": [ 1103 ], "windows": [ - 4119 + 4123 ], "__typename": [ 78 @@ -97367,10 +97331,10 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "max_rounds": [ 38 @@ -97385,7 +97349,7 @@ export default { 38 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -97393,34 +97357,34 @@ export default { }, "tournament_stages_max_order_by": { "decider_best_of": [ - 2481 + 2485 ], "default_best_of": [ - 2481 + 2485 ], "groups": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "max_rounds": [ - 2481 + 2485 ], "max_teams": [ - 2481 + 2485 ], "min_teams": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -97437,10 +97401,10 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "max_rounds": [ 38 @@ -97455,7 +97419,7 @@ export default { 38 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -97463,34 +97427,34 @@ export default { }, "tournament_stages_min_order_by": { "decider_best_of": [ - 2481 + 2485 ], "default_best_of": [ - 2481 + 2485 ], "groups": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "max_rounds": [ - 2481 + 2485 ], "max_teams": [ - 2481 + 2485 ], "min_teams": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -97501,7 +97465,7 @@ export default { 38 ], "returning": [ - 4154 + 4158 ], "__typename": [ 78 @@ -97509,10 +97473,10 @@ export default { }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4172 + 4176 ], "on_conflict": [ - 4179 + 4183 ], "__typename": [ 78 @@ -97520,13 +97484,13 @@ export default { }, "tournament_stages_on_conflict": { "constraint": [ - 4167 + 4171 ], "update_columns": [ - 4197 + 4201 ], "where": [ - 4166 + 4170 ], "__typename": [ 78 @@ -97534,64 +97498,64 @@ export default { }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4033 + 4037 ], "decider_best_of": [ - 2481 + 2485 ], "default_best_of": [ - 2481 + 2485 ], "e_tournament_stage_type": [ 1111 ], "groups": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "max_rounds": [ - 2481 + 2485 ], "max_teams": [ - 2481 + 2485 ], "min_teams": [ - 2481 + 2485 ], "options": [ - 2189 + 2193 ], "order": [ - 2481 + 2485 ], "results_aggregate": [ - 5150 + 5154 ], "settings": [ - 2481 + 2485 ], "swiss_no_elimination": [ - 2481 + 2485 ], "third_place_match": [ - 2481 + 2485 ], "tournament": [ - 4438 + 4442 ], "tournament_id": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "windows_aggregate": [ - 4118 + 4122 ], "__typename": [ 78 @@ -97599,7 +97563,7 @@ export default { }, "tournament_stages_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -97627,10 +97591,10 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "max_rounds": [ 38 @@ -97654,7 +97618,7 @@ export default { 3 ], "tournament_id": [ - 4462 + 4466 ], "type": [ 1103 @@ -97691,25 +97655,25 @@ export default { }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 2481 + 2485 ], "default_best_of": [ - 2481 + 2485 ], "groups": [ - 2481 + 2485 ], "max_rounds": [ - 2481 + 2485 ], "max_teams": [ - 2481 + 2485 ], "min_teams": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "__typename": [ 78 @@ -97743,25 +97707,25 @@ export default { }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 2481 + 2485 ], "default_best_of": [ - 2481 + 2485 ], "groups": [ - 2481 + 2485 ], "max_rounds": [ - 2481 + 2485 ], "max_teams": [ - 2481 + 2485 ], "min_teams": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "__typename": [ 78 @@ -97795,25 +97759,25 @@ export default { }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 2481 + 2485 ], "default_best_of": [ - 2481 + 2485 ], "groups": [ - 2481 + 2485 ], "max_rounds": [ - 2481 + 2485 ], "max_teams": [ - 2481 + 2485 ], "min_teams": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "__typename": [ 78 @@ -97821,7 +97785,7 @@ export default { }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4194 + 4198 ], "ordering": [ 236 @@ -97841,10 +97805,10 @@ export default { 38 ], "id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "max_rounds": [ 38 @@ -97868,7 +97832,7 @@ export default { 3 ], "tournament_id": [ - 4462 + 4466 ], "type": [ 1103 @@ -97905,25 +97869,25 @@ export default { }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 2481 + 2485 ], "default_best_of": [ - 2481 + 2485 ], "groups": [ - 2481 + 2485 ], "max_rounds": [ - 2481 + 2485 ], "max_teams": [ - 2481 + 2485 ], "min_teams": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "__typename": [ 78 @@ -97932,28 +97896,28 @@ export default { "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4162 + 4166 ], "_delete_at_path": [ - 4168 + 4172 ], "_delete_elem": [ - 4169 + 4173 ], "_delete_key": [ - 4170 + 4174 ], "_inc": [ - 4171 + 4175 ], "_prepend": [ - 4182 + 4186 ], "_set": [ - 4186 + 4190 ], "where": [ - 4166 + 4170 ], "__typename": [ 78 @@ -97987,25 +97951,25 @@ export default { }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 2481 + 2485 ], "default_best_of": [ - 2481 + 2485 ], "groups": [ - 2481 + 2485 ], "max_rounds": [ - 2481 + 2485 ], "max_teams": [ - 2481 + 2485 ], "min_teams": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "__typename": [ 78 @@ -98039,25 +98003,25 @@ export default { }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 2481 + 2485 ], "default_best_of": [ - 2481 + 2485 ], "groups": [ - 2481 + 2485 ], "max_rounds": [ - 2481 + 2485 ], "max_teams": [ - 2481 + 2485 ], "min_teams": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "__typename": [ 78 @@ -98091,25 +98055,25 @@ export default { }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 2481 + 2485 ], "default_best_of": [ - 2481 + 2485 ], "groups": [ - 2481 + 2485 ], "max_rounds": [ - 2481 + 2485 ], "max_teams": [ - 2481 + 2485 ], "min_teams": [ - 2481 + 2485 ], "order": [ - 2481 + 2485 ], "__typename": [ 78 @@ -98117,28 +98081,28 @@ export default { }, "tournament_team_invites": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "invited_by": [ - 3439 + 3443 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3439 + 3443 ], "steam_id": [ 180 ], "team": [ - 4287 + 4291 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -98146,10 +98110,10 @@ export default { }, "tournament_team_invites_aggregate": { "aggregate": [ - 4209 + 4213 ], "nodes": [ - 4205 + 4209 ], "__typename": [ 78 @@ -98157,7 +98121,7 @@ export default { }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4208 + 4212 ], "__typename": [ 78 @@ -98165,13 +98129,13 @@ export default { }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 4226 + 4230 ], "distinct": [ 3 ], "filter": [ - 4214 + 4218 ], "predicate": [ 39 @@ -98182,13 +98146,13 @@ export default { }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4212 + 4216 ], "count": [ 38, { "columns": [ - 4226, + 4230, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -98197,31 +98161,31 @@ export default { } ], "max": [ - 4218 + 4222 ], "min": [ - 4220 + 4224 ], "stddev": [ - 4228 + 4232 ], "stddev_pop": [ - 4230 + 4234 ], "stddev_samp": [ - 4232 + 4236 ], "sum": [ - 4236 + 4240 ], "var_pop": [ - 4240 + 4244 ], "var_samp": [ - 4242 + 4246 ], "variance": [ - 4244 + 4248 ], "__typename": [ 78 @@ -98229,37 +98193,37 @@ export default { }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4213 + 4217 ], "count": [ - 2481 + 2485 ], "max": [ - 4219 + 4223 ], "min": [ - 4221 + 4225 ], "stddev": [ - 4229 + 4233 ], "stddev_pop": [ - 4231 + 4235 ], "stddev_samp": [ - 4233 + 4237 ], "sum": [ - 4237 + 4241 ], "var_pop": [ - 4241 + 4245 ], "var_samp": [ - 4243 + 4247 ], "variance": [ - 4245 + 4249 ], "__typename": [ 78 @@ -98267,10 +98231,10 @@ export default { }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4217 + 4221 ], "on_conflict": [ - 4223 + 4227 ], "__typename": [ 78 @@ -98289,10 +98253,10 @@ export default { }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -98300,37 +98264,37 @@ export default { }, "tournament_team_invites_bool_exp": { "_and": [ - 4214 + 4218 ], "_not": [ - 4214 + 4218 ], "_or": [ - 4214 + 4218 ], "created_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "invited_by": [ - 3443 + 3447 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3443 + 3447 ], "steam_id": [ 182 ], "team": [ - 4296 + 4300 ], "tournament_team_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -98350,28 +98314,28 @@ export default { }, "tournament_team_invites_insert_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "invited_by": [ - 3450 + 3454 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3450 + 3454 ], "steam_id": [ 180 ], "team": [ - 4305 + 4309 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -98379,10 +98343,10 @@ export default { }, "tournament_team_invites_max_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "invited_by_player_steam_id": [ 180 @@ -98391,7 +98355,7 @@ export default { 180 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -98399,19 +98363,19 @@ export default { }, "tournament_team_invites_max_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -98419,10 +98383,10 @@ export default { }, "tournament_team_invites_min_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "invited_by_player_steam_id": [ 180 @@ -98431,7 +98395,7 @@ export default { 180 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -98439,19 +98403,19 @@ export default { }, "tournament_team_invites_min_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -98462,7 +98426,7 @@ export default { 38 ], "returning": [ - 4205 + 4209 ], "__typename": [ 78 @@ -98470,13 +98434,13 @@ export default { }, "tournament_team_invites_on_conflict": { "constraint": [ - 4215 + 4219 ], "update_columns": [ - 4238 + 4242 ], "where": [ - 4214 + 4218 ], "__typename": [ 78 @@ -98484,28 +98448,28 @@ export default { }, "tournament_team_invites_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "invited_by": [ - 3452 + 3456 ], "invited_by_player_steam_id": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "steam_id": [ - 2481 + 2485 ], "team": [ - 4307 + 4311 ], "tournament_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -98513,7 +98477,7 @@ export default { }, "tournament_team_invites_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -98522,10 +98486,10 @@ export default { "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "invited_by_player_steam_id": [ 180 @@ -98534,7 +98498,7 @@ export default { 180 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -98553,10 +98517,10 @@ export default { }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -98575,10 +98539,10 @@ export default { }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -98597,10 +98561,10 @@ export default { }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -98608,7 +98572,7 @@ export default { }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 4235 + 4239 ], "ordering": [ 236 @@ -98619,10 +98583,10 @@ export default { }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "invited_by_player_steam_id": [ 180 @@ -98631,7 +98595,7 @@ export default { 180 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -98650,10 +98614,10 @@ export default { }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -98662,13 +98626,13 @@ export default { "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4216 + 4220 ], "_set": [ - 4227 + 4231 ], "where": [ - 4214 + 4218 ], "__typename": [ 78 @@ -98687,10 +98651,10 @@ export default { }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -98709,10 +98673,10 @@ export default { }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -98731,10 +98695,10 @@ export default { }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -98745,7 +98709,7 @@ export default { 1037 ], "player": [ - 3439 + 3443 ], "player_steam_id": [ 180 @@ -98754,16 +98718,16 @@ export default { 1042 ], "tournament": [ - 4416 + 4420 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team": [ - 4287 + 4291 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -98771,10 +98735,10 @@ export default { }, "tournament_team_roster_aggregate": { "aggregate": [ - 4250 + 4254 ], "nodes": [ - 4246 + 4250 ], "__typename": [ 78 @@ -98782,7 +98746,7 @@ export default { }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 4249 + 4253 ], "__typename": [ 78 @@ -98790,13 +98754,13 @@ export default { }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 4267 + 4271 ], "distinct": [ 3 ], "filter": [ - 4255 + 4259 ], "predicate": [ 39 @@ -98807,13 +98771,13 @@ export default { }, "tournament_team_roster_aggregate_fields": { "avg": [ - 4253 + 4257 ], "count": [ 38, { "columns": [ - 4267, + 4271, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -98822,31 +98786,31 @@ export default { } ], "max": [ - 4259 + 4263 ], "min": [ - 4261 + 4265 ], "stddev": [ - 4269 + 4273 ], "stddev_pop": [ - 4271 + 4275 ], "stddev_samp": [ - 4273 + 4277 ], "sum": [ - 4277 + 4281 ], "var_pop": [ - 4281 + 4285 ], "var_samp": [ - 4283 + 4287 ], "variance": [ - 4285 + 4289 ], "__typename": [ 78 @@ -98854,37 +98818,37 @@ export default { }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 4254 + 4258 ], "count": [ - 2481 + 2485 ], "max": [ - 4260 + 4264 ], "min": [ - 4262 + 4266 ], "stddev": [ - 4270 + 4274 ], "stddev_pop": [ - 4272 + 4276 ], "stddev_samp": [ - 4274 + 4278 ], "sum": [ - 4278 + 4282 ], "var_pop": [ - 4282 + 4286 ], "var_samp": [ - 4284 + 4288 ], "variance": [ - 4286 + 4290 ], "__typename": [ 78 @@ -98892,10 +98856,10 @@ export default { }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 4258 + 4262 ], "on_conflict": [ - 4264 + 4268 ], "__typename": [ 78 @@ -98911,7 +98875,7 @@ export default { }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -98919,19 +98883,19 @@ export default { }, "tournament_team_roster_bool_exp": { "_and": [ - 4255 + 4259 ], "_not": [ - 4255 + 4259 ], "_or": [ - 4255 + 4259 ], "e_team_role": [ 1040 ], "player": [ - 3443 + 3447 ], "player_steam_id": [ 182 @@ -98940,16 +98904,16 @@ export default { 1043 ], "tournament": [ - 4427 + 4431 ], "tournament_id": [ - 4464 + 4468 ], "tournament_team": [ - 4296 + 4300 ], "tournament_team_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -98969,7 +98933,7 @@ export default { 1048 ], "player": [ - 3450 + 3454 ], "player_steam_id": [ 180 @@ -98978,16 +98942,16 @@ export default { 1042 ], "tournament": [ - 4436 + 4440 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team": [ - 4305 + 4309 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -98998,10 +98962,10 @@ export default { 180 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -99009,13 +98973,13 @@ export default { }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -99026,10 +98990,10 @@ export default { 180 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -99037,13 +99001,13 @@ export default { }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -99054,7 +99018,7 @@ export default { 38 ], "returning": [ - 4246 + 4250 ], "__typename": [ 78 @@ -99062,13 +99026,13 @@ export default { }, "tournament_team_roster_on_conflict": { "constraint": [ - 4256 + 4260 ], "update_columns": [ - 4279 + 4283 ], "where": [ - 4255 + 4259 ], "__typename": [ 78 @@ -99079,25 +99043,25 @@ export default { 1050 ], "player": [ - 3452 + 3456 ], "player_steam_id": [ - 2481 + 2485 ], "role": [ - 2481 + 2485 ], "tournament": [ - 4438 + 4442 ], "tournament_id": [ - 2481 + 2485 ], "tournament_team": [ - 4307 + 4311 ], "tournament_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -99108,7 +99072,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -99123,10 +99087,10 @@ export default { 1042 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -99142,7 +99106,7 @@ export default { }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -99158,7 +99122,7 @@ export default { }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -99174,7 +99138,7 @@ export default { }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -99182,7 +99146,7 @@ export default { }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 4276 + 4280 ], "ordering": [ 236 @@ -99199,10 +99163,10 @@ export default { 1042 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -99218,7 +99182,7 @@ export default { }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -99227,13 +99191,13 @@ export default { "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 4257 + 4261 ], "_set": [ - 4268 + 4272 ], "where": [ - 4255 + 4259 ], "__typename": [ 78 @@ -99249,7 +99213,7 @@ export default { }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -99265,7 +99229,7 @@ export default { }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -99281,7 +99245,7 @@ export default { }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -99292,28 +99256,28 @@ export default { 3 ], "captain": [ - 3439 + 3443 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4028 ], "creator": [ - 3439 + 3443 ], "eligible_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "invites": [ - 4205, + 4209, { "distinct_on": [ - 4226, + 4230, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -99323,19 +99287,19 @@ export default { 38 ], "order_by": [ - 4224, + 4228, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4218 ] } ], "invites_aggregate": [ - 4206, + 4210, { "distinct_on": [ - 4226, + 4230, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -99345,11 +99309,11 @@ export default { 38 ], "order_by": [ - 4224, + 4228, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4218 ] } ], @@ -99360,13 +99324,13 @@ export default { 180 ], "results": [ - 5135 + 5139 ], "roster": [ - 4246, + 4250, { "distinct_on": [ - 4267, + 4271, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -99376,19 +99340,19 @@ export default { 38 ], "order_by": [ - 4265, + 4269, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4259 ] } ], "roster_aggregate": [ - 4247, + 4251, { "distinct_on": [ - 4267, + 4271, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -99398,11 +99362,11 @@ export default { 38 ], "order_by": [ - 4265, + 4269, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4259 ] } ], @@ -99413,16 +99377,16 @@ export default { 78 ], "team": [ - 3981 + 3985 ], "team_id": [ - 4462 + 4466 ], "tournament": [ - 4416 + 4420 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -99430,10 +99394,10 @@ export default { }, "tournament_teams_aggregate": { "aggregate": [ - 4291 + 4295 ], "nodes": [ - 4287 + 4291 ], "__typename": [ 78 @@ -99441,7 +99405,7 @@ export default { }, "tournament_teams_aggregate_bool_exp": { "count": [ - 4290 + 4294 ], "__typename": [ 78 @@ -99449,13 +99413,13 @@ export default { }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 4309 + 4313 ], "distinct": [ 3 ], "filter": [ - 4296 + 4300 ], "predicate": [ 39 @@ -99466,13 +99430,13 @@ export default { }, "tournament_teams_aggregate_fields": { "avg": [ - 4294 + 4298 ], "count": [ 38, { "columns": [ - 4309, + 4313, "[tournament_teams_select_column!]" ], "distinct": [ @@ -99481,31 +99445,31 @@ export default { } ], "max": [ - 4300 + 4304 ], "min": [ - 4302 + 4306 ], "stddev": [ - 4311 + 4315 ], "stddev_pop": [ - 4313 + 4317 ], "stddev_samp": [ - 4315 + 4319 ], "sum": [ - 4319 + 4323 ], "var_pop": [ - 4323 + 4327 ], "var_samp": [ - 4325 + 4329 ], "variance": [ - 4327 + 4331 ], "__typename": [ 78 @@ -99513,37 +99477,37 @@ export default { }, "tournament_teams_aggregate_order_by": { "avg": [ - 4295 + 4299 ], "count": [ - 2481 + 2485 ], "max": [ - 4301 + 4305 ], "min": [ - 4303 + 4307 ], "stddev": [ - 4312 + 4316 ], "stddev_pop": [ - 4314 + 4318 ], "stddev_samp": [ - 4316 + 4320 ], "sum": [ - 4320 + 4324 ], "var_pop": [ - 4324 + 4328 ], "var_samp": [ - 4326 + 4330 ], "variance": [ - 4328 + 4332 ], "__typename": [ 78 @@ -99551,10 +99515,10 @@ export default { }, "tournament_teams_arr_rel_insert_input": { "data": [ - 4299 + 4303 ], "on_conflict": [ - 4306 + 4310 ], "__typename": [ 78 @@ -99576,13 +99540,13 @@ export default { }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -99590,40 +99554,40 @@ export default { }, "tournament_teams_bool_exp": { "_and": [ - 4296 + 4300 ], "_not": [ - 4296 + 4300 ], "_or": [ - 4296 + 4300 ], "can_manage": [ 4 ], "captain": [ - 3443 + 3447 ], "captain_steam_id": [ 182 ], "created_at": [ - 4025 + 4029 ], "creator": [ - 3443 + 3447 ], "eligible_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "invites": [ - 4214 + 4218 ], "invites_aggregate": [ - 4207 + 4211 ], "name": [ 80 @@ -99632,13 +99596,13 @@ export default { 182 ], "results": [ - 5154 + 5158 ], "roster": [ - 4255 + 4259 ], "roster_aggregate": [ - 4248 + 4252 ], "seed": [ 39 @@ -99647,16 +99611,16 @@ export default { 80 ], "team": [ - 3990 + 3994 ], "team_id": [ - 4464 + 4468 ], "tournament": [ - 4427 + 4431 ], "tournament_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -99679,25 +99643,25 @@ export default { }, "tournament_teams_insert_input": { "captain": [ - 3450 + 3454 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4028 ], "creator": [ - 3450 + 3454 ], "eligible_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "invites": [ - 4211 + 4215 ], "name": [ 78 @@ -99706,10 +99670,10 @@ export default { 180 ], "results": [ - 5163 + 5167 ], "roster": [ - 4252 + 4256 ], "seed": [ 38 @@ -99718,16 +99682,16 @@ export default { 78 ], "team": [ - 3999 + 4003 ], "team_id": [ - 4462 + 4466 ], "tournament": [ - 4436 + 4440 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -99738,13 +99702,13 @@ export default { 180 ], "created_at": [ - 4024 + 4028 ], "eligible_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -99759,10 +99723,10 @@ export default { 78 ], "team_id": [ - 4462 + 4466 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -99770,34 +99734,34 @@ export default { }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "eligible_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "short_name": [ - 2481 + 2485 ], "team_id": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -99808,13 +99772,13 @@ export default { 180 ], "created_at": [ - 4024 + 4028 ], "eligible_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -99829,10 +99793,10 @@ export default { 78 ], "team_id": [ - 4462 + 4466 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -99840,34 +99804,34 @@ export default { }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "eligible_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "short_name": [ - 2481 + 2485 ], "team_id": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -99878,7 +99842,7 @@ export default { 38 ], "returning": [ - 4287 + 4291 ], "__typename": [ 78 @@ -99886,10 +99850,10 @@ export default { }, "tournament_teams_obj_rel_insert_input": { "data": [ - 4299 + 4303 ], "on_conflict": [ - 4306 + 4310 ], "__typename": [ 78 @@ -99897,13 +99861,13 @@ export default { }, "tournament_teams_on_conflict": { "constraint": [ - 4297 + 4301 ], "update_columns": [ - 4321 + 4325 ], "where": [ - 4296 + 4300 ], "__typename": [ 78 @@ -99911,58 +99875,58 @@ export default { }, "tournament_teams_order_by": { "can_manage": [ - 2481 + 2485 ], "captain": [ - 3452 + 3456 ], "captain_steam_id": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "creator": [ - 3452 + 3456 ], "eligible_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "invites_aggregate": [ - 4210 + 4214 ], "name": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "results": [ - 5165 + 5169 ], "roster_aggregate": [ - 4251 + 4255 ], "seed": [ - 2481 + 2485 ], "short_name": [ - 2481 + 2485 ], "team": [ - 4001 + 4005 ], "team_id": [ - 2481 + 2485 ], "tournament": [ - 4438 + 4442 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -99970,7 +99934,7 @@ export default { }, "tournament_teams_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -99982,13 +99946,13 @@ export default { 180 ], "created_at": [ - 4024 + 4028 ], "eligible_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -100003,10 +99967,10 @@ export default { 78 ], "team_id": [ - 4462 + 4466 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -100028,13 +99992,13 @@ export default { }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -100056,13 +100020,13 @@ export default { }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -100084,13 +100048,13 @@ export default { }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -100098,7 +100062,7 @@ export default { }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 4318 + 4322 ], "ordering": [ 236 @@ -100112,13 +100076,13 @@ export default { 180 ], "created_at": [ - 4024 + 4028 ], "eligible_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "name": [ 78 @@ -100133,10 +100097,10 @@ export default { 78 ], "team_id": [ - 4462 + 4466 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -100158,13 +100122,13 @@ export default { }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -100173,13 +100137,13 @@ export default { "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 4298 + 4302 ], "_set": [ - 4310 + 4314 ], "where": [ - 4296 + 4300 ], "__typename": [ 78 @@ -100201,13 +100165,13 @@ export default { }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -100229,13 +100193,13 @@ export default { }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -100257,13 +100221,13 @@ export default { }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 2481 + 2485 ], "owner_steam_id": [ - 2481 + 2485 ], "seed": [ - 2481 + 2485 ], "__typename": [ 78 @@ -100271,10 +100235,10 @@ export default { }, "tournament_trophies": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "manual": [ 3 @@ -100286,31 +100250,31 @@ export default { 78 ], "player": [ - 3439 + 3443 ], "player_steam_id": [ 180 ], "team": [ - 3981 + 3985 ], "team_id": [ - 4462 + 4466 ], "tournament": [ - 4416 + 4420 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team": [ - 4287 + 4291 ], "tournament_team_id": [ - 4462 + 4466 ], "trophy_config": [ - 4374 + 4378 ], "__typename": [ 78 @@ -100318,10 +100282,10 @@ export default { }, "tournament_trophies_aggregate": { "aggregate": [ - 4335 + 4339 ], "nodes": [ - 4329 + 4333 ], "__typename": [ 78 @@ -100329,13 +100293,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp": { "bool_and": [ - 4332 + 4336 ], "bool_or": [ - 4333 + 4337 ], "count": [ - 4334 + 4338 ], "__typename": [ 78 @@ -100343,13 +100307,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_and": { "arguments": [ - 4353 + 4357 ], "distinct": [ 3 ], "filter": [ - 4340 + 4344 ], "predicate": [ 4 @@ -100360,13 +100324,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_or": { "arguments": [ - 4354 + 4358 ], "distinct": [ 3 ], "filter": [ - 4340 + 4344 ], "predicate": [ 4 @@ -100377,13 +100341,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_count": { "arguments": [ - 4352 + 4356 ], "distinct": [ 3 ], "filter": [ - 4340 + 4344 ], "predicate": [ 39 @@ -100394,13 +100358,13 @@ export default { }, "tournament_trophies_aggregate_fields": { "avg": [ - 4338 + 4342 ], "count": [ 38, { "columns": [ - 4352, + 4356, "[tournament_trophies_select_column!]" ], "distinct": [ @@ -100409,31 +100373,31 @@ export default { } ], "max": [ - 4344 + 4348 ], "min": [ - 4346 + 4350 ], "stddev": [ - 4356 + 4360 ], "stddev_pop": [ - 4358 + 4362 ], "stddev_samp": [ - 4360 + 4364 ], "sum": [ - 4364 + 4368 ], "var_pop": [ - 4368 + 4372 ], "var_samp": [ - 4370 + 4374 ], "variance": [ - 4372 + 4376 ], "__typename": [ 78 @@ -100441,37 +100405,37 @@ export default { }, "tournament_trophies_aggregate_order_by": { "avg": [ - 4339 + 4343 ], "count": [ - 2481 + 2485 ], "max": [ - 4345 + 4349 ], "min": [ - 4347 + 4351 ], "stddev": [ - 4357 + 4361 ], "stddev_pop": [ - 4359 + 4363 ], "stddev_samp": [ - 4361 + 4365 ], "sum": [ - 4365 + 4369 ], "var_pop": [ - 4369 + 4373 ], "var_samp": [ - 4371 + 4375 ], "variance": [ - 4373 + 4377 ], "__typename": [ 78 @@ -100479,10 +100443,10 @@ export default { }, "tournament_trophies_arr_rel_insert_input": { "data": [ - 4343 + 4347 ], "on_conflict": [ - 4349 + 4353 ], "__typename": [ 78 @@ -100501,10 +100465,10 @@ export default { }, "tournament_trophies_avg_order_by": { "placement": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -100512,19 +100476,19 @@ export default { }, "tournament_trophies_bool_exp": { "_and": [ - 4340 + 4344 ], "_not": [ - 4340 + 4344 ], "_or": [ - 4340 + 4344 ], "created_at": [ - 4025 + 4029 ], "id": [ - 4464 + 4468 ], "manual": [ 4 @@ -100536,31 +100500,31 @@ export default { 80 ], "player": [ - 3443 + 3447 ], "player_steam_id": [ 182 ], "team": [ - 3990 + 3994 ], "team_id": [ - 4464 + 4468 ], "tournament": [ - 4427 + 4431 ], "tournament_id": [ - 4464 + 4468 ], "tournament_team": [ - 4296 + 4300 ], "tournament_team_id": [ - 4464 + 4468 ], "trophy_config": [ - 4383 + 4387 ], "__typename": [ 78 @@ -100580,10 +100544,10 @@ export default { }, "tournament_trophies_insert_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "manual": [ 3 @@ -100592,31 +100556,31 @@ export default { 38 ], "player": [ - 3450 + 3454 ], "player_steam_id": [ 180 ], "team": [ - 3999 + 4003 ], "team_id": [ - 4462 + 4466 ], "tournament": [ - 4436 + 4440 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team": [ - 4305 + 4309 ], "tournament_team_id": [ - 4462 + 4466 ], "trophy_config": [ - 4392 + 4396 ], "__typename": [ 78 @@ -100624,10 +100588,10 @@ export default { }, "tournament_trophies_max_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "placement": [ 38 @@ -100639,13 +100603,13 @@ export default { 180 ], "team_id": [ - 4462 + 4466 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -100653,28 +100617,28 @@ export default { }, "tournament_trophies_max_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "placement_tier": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "team_id": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -100682,10 +100646,10 @@ export default { }, "tournament_trophies_min_fields": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "placement": [ 38 @@ -100697,13 +100661,13 @@ export default { 180 ], "team_id": [ - 4462 + 4466 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -100711,28 +100675,28 @@ export default { }, "tournament_trophies_min_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "placement_tier": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "team_id": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -100743,7 +100707,7 @@ export default { 38 ], "returning": [ - 4329 + 4333 ], "__typename": [ 78 @@ -100751,13 +100715,13 @@ export default { }, "tournament_trophies_on_conflict": { "constraint": [ - 4341 + 4345 ], "update_columns": [ - 4366 + 4370 ], "where": [ - 4340 + 4344 ], "__typename": [ 78 @@ -100765,46 +100729,46 @@ export default { }, "tournament_trophies_order_by": { "created_at": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "manual": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "placement_tier": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "player_steam_id": [ - 2481 + 2485 ], "team": [ - 4001 + 4005 ], "team_id": [ - 2481 + 2485 ], "tournament": [ - 4438 + 4442 ], "tournament_id": [ - 2481 + 2485 ], "tournament_team": [ - 4307 + 4311 ], "tournament_team_id": [ - 2481 + 2485 ], "trophy_config": [ - 4394 + 4398 ], "__typename": [ 78 @@ -100812,7 +100776,7 @@ export default { }, "tournament_trophies_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -100823,10 +100787,10 @@ export default { "tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_trophies_set_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "manual": [ 3 @@ -100838,13 +100802,13 @@ export default { 180 ], "team_id": [ - 4462 + 4466 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -100863,10 +100827,10 @@ export default { }, "tournament_trophies_stddev_order_by": { "placement": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -100885,10 +100849,10 @@ export default { }, "tournament_trophies_stddev_pop_order_by": { "placement": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -100907,10 +100871,10 @@ export default { }, "tournament_trophies_stddev_samp_order_by": { "placement": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -100918,7 +100882,7 @@ export default { }, "tournament_trophies_stream_cursor_input": { "initial_value": [ - 4363 + 4367 ], "ordering": [ 236 @@ -100929,10 +100893,10 @@ export default { }, "tournament_trophies_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "id": [ - 4462 + 4466 ], "manual": [ 3 @@ -100947,13 +100911,13 @@ export default { 180 ], "team_id": [ - 4462 + 4466 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -100972,10 +100936,10 @@ export default { }, "tournament_trophies_sum_order_by": { "placement": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -100984,13 +100948,13 @@ export default { "tournament_trophies_update_column": {}, "tournament_trophies_updates": { "_inc": [ - 4342 + 4346 ], "_set": [ - 4355 + 4359 ], "where": [ - 4340 + 4344 ], "__typename": [ 78 @@ -101009,10 +100973,10 @@ export default { }, "tournament_trophies_var_pop_order_by": { "placement": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -101031,10 +100995,10 @@ export default { }, "tournament_trophies_var_samp_order_by": { "placement": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -101053,10 +101017,10 @@ export default { }, "tournament_trophies_variance_order_by": { "placement": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -101064,13 +101028,13 @@ export default { }, "tournament_trophy_configs": { "created_at": [ - 4024 + 4028 ], "custom_name": [ 78 ], "id": [ - 4462 + 4466 ], "image_url": [ 78 @@ -101082,13 +101046,13 @@ export default { 38 ], "tournament": [ - 4416 + 4420 ], "tournament_id": [ - 4462 + 4466 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -101096,10 +101060,10 @@ export default { }, "tournament_trophy_configs_aggregate": { "aggregate": [ - 4378 + 4382 ], "nodes": [ - 4374 + 4378 ], "__typename": [ 78 @@ -101107,7 +101071,7 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp": { "count": [ - 4377 + 4381 ], "__typename": [ 78 @@ -101115,13 +101079,13 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp_count": { "arguments": [ - 4396 + 4400 ], "distinct": [ 3 ], "filter": [ - 4383 + 4387 ], "predicate": [ 39 @@ -101132,13 +101096,13 @@ export default { }, "tournament_trophy_configs_aggregate_fields": { "avg": [ - 4381 + 4385 ], "count": [ 38, { "columns": [ - 4396, + 4400, "[tournament_trophy_configs_select_column!]" ], "distinct": [ @@ -101147,31 +101111,31 @@ export default { } ], "max": [ - 4387 + 4391 ], "min": [ - 4389 + 4393 ], "stddev": [ - 4398 + 4402 ], "stddev_pop": [ - 4400 + 4404 ], "stddev_samp": [ - 4402 + 4406 ], "sum": [ - 4406 + 4410 ], "var_pop": [ - 4410 + 4414 ], "var_samp": [ - 4412 + 4416 ], "variance": [ - 4414 + 4418 ], "__typename": [ 78 @@ -101179,37 +101143,37 @@ export default { }, "tournament_trophy_configs_aggregate_order_by": { "avg": [ - 4382 + 4386 ], "count": [ - 2481 + 2485 ], "max": [ - 4388 + 4392 ], "min": [ - 4390 + 4394 ], "stddev": [ - 4399 + 4403 ], "stddev_pop": [ - 4401 + 4405 ], "stddev_samp": [ - 4403 + 4407 ], "sum": [ - 4407 + 4411 ], "var_pop": [ - 4411 + 4415 ], "var_samp": [ - 4413 + 4417 ], "variance": [ - 4415 + 4419 ], "__typename": [ 78 @@ -101217,10 +101181,10 @@ export default { }, "tournament_trophy_configs_arr_rel_insert_input": { "data": [ - 4386 + 4390 ], "on_conflict": [ - 4393 + 4397 ], "__typename": [ 78 @@ -101239,10 +101203,10 @@ export default { }, "tournament_trophy_configs_avg_order_by": { "placement": [ - 2481 + 2485 ], "silhouette": [ - 2481 + 2485 ], "__typename": [ 78 @@ -101250,22 +101214,22 @@ export default { }, "tournament_trophy_configs_bool_exp": { "_and": [ - 4383 + 4387 ], "_not": [ - 4383 + 4387 ], "_or": [ - 4383 + 4387 ], "created_at": [ - 4025 + 4029 ], "custom_name": [ 80 ], "id": [ - 4464 + 4468 ], "image_url": [ 80 @@ -101277,13 +101241,13 @@ export default { 39 ], "tournament": [ - 4427 + 4431 ], "tournament_id": [ - 4464 + 4468 ], "updated_at": [ - 4025 + 4029 ], "__typename": [ 78 @@ -101303,13 +101267,13 @@ export default { }, "tournament_trophy_configs_insert_input": { "created_at": [ - 4024 + 4028 ], "custom_name": [ 78 ], "id": [ - 4462 + 4466 ], "image_url": [ 78 @@ -101321,13 +101285,13 @@ export default { 38 ], "tournament": [ - 4436 + 4440 ], "tournament_id": [ - 4462 + 4466 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -101335,13 +101299,13 @@ export default { }, "tournament_trophy_configs_max_fields": { "created_at": [ - 4024 + 4028 ], "custom_name": [ 78 ], "id": [ - 4462 + 4466 ], "image_url": [ 78 @@ -101353,10 +101317,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4466 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -101364,28 +101328,28 @@ export default { }, "tournament_trophy_configs_max_order_by": { "created_at": [ - 2481 + 2485 ], "custom_name": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "image_url": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "silhouette": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "__typename": [ 78 @@ -101393,13 +101357,13 @@ export default { }, "tournament_trophy_configs_min_fields": { "created_at": [ - 4024 + 4028 ], "custom_name": [ 78 ], "id": [ - 4462 + 4466 ], "image_url": [ 78 @@ -101411,10 +101375,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4466 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -101422,28 +101386,28 @@ export default { }, "tournament_trophy_configs_min_order_by": { "created_at": [ - 2481 + 2485 ], "custom_name": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "image_url": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "silhouette": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "__typename": [ 78 @@ -101454,7 +101418,7 @@ export default { 38 ], "returning": [ - 4374 + 4378 ], "__typename": [ 78 @@ -101462,10 +101426,10 @@ export default { }, "tournament_trophy_configs_obj_rel_insert_input": { "data": [ - 4386 + 4390 ], "on_conflict": [ - 4393 + 4397 ], "__typename": [ 78 @@ -101473,13 +101437,13 @@ export default { }, "tournament_trophy_configs_on_conflict": { "constraint": [ - 4384 + 4388 ], "update_columns": [ - 4408 + 4412 ], "where": [ - 4383 + 4387 ], "__typename": [ 78 @@ -101487,31 +101451,31 @@ export default { }, "tournament_trophy_configs_order_by": { "created_at": [ - 2481 + 2485 ], "custom_name": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "image_url": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "silhouette": [ - 2481 + 2485 ], "tournament": [ - 4438 + 4442 ], "tournament_id": [ - 2481 + 2485 ], "updated_at": [ - 2481 + 2485 ], "__typename": [ 78 @@ -101519,7 +101483,7 @@ export default { }, "tournament_trophy_configs_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -101528,13 +101492,13 @@ export default { "tournament_trophy_configs_select_column": {}, "tournament_trophy_configs_set_input": { "created_at": [ - 4024 + 4028 ], "custom_name": [ 78 ], "id": [ - 4462 + 4466 ], "image_url": [ 78 @@ -101546,10 +101510,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4466 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -101568,10 +101532,10 @@ export default { }, "tournament_trophy_configs_stddev_order_by": { "placement": [ - 2481 + 2485 ], "silhouette": [ - 2481 + 2485 ], "__typename": [ 78 @@ -101590,10 +101554,10 @@ export default { }, "tournament_trophy_configs_stddev_pop_order_by": { "placement": [ - 2481 + 2485 ], "silhouette": [ - 2481 + 2485 ], "__typename": [ 78 @@ -101612,10 +101576,10 @@ export default { }, "tournament_trophy_configs_stddev_samp_order_by": { "placement": [ - 2481 + 2485 ], "silhouette": [ - 2481 + 2485 ], "__typename": [ 78 @@ -101623,7 +101587,7 @@ export default { }, "tournament_trophy_configs_stream_cursor_input": { "initial_value": [ - 4405 + 4409 ], "ordering": [ 236 @@ -101634,13 +101598,13 @@ export default { }, "tournament_trophy_configs_stream_cursor_value_input": { "created_at": [ - 4024 + 4028 ], "custom_name": [ 78 ], "id": [ - 4462 + 4466 ], "image_url": [ 78 @@ -101652,10 +101616,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4466 ], "updated_at": [ - 4024 + 4028 ], "__typename": [ 78 @@ -101674,10 +101638,10 @@ export default { }, "tournament_trophy_configs_sum_order_by": { "placement": [ - 2481 + 2485 ], "silhouette": [ - 2481 + 2485 ], "__typename": [ 78 @@ -101686,13 +101650,13 @@ export default { "tournament_trophy_configs_update_column": {}, "tournament_trophy_configs_updates": { "_inc": [ - 4385 + 4389 ], "_set": [ - 4397 + 4401 ], "where": [ - 4383 + 4387 ], "__typename": [ 78 @@ -101711,10 +101675,10 @@ export default { }, "tournament_trophy_configs_var_pop_order_by": { "placement": [ - 2481 + 2485 ], "silhouette": [ - 2481 + 2485 ], "__typename": [ 78 @@ -101733,10 +101697,10 @@ export default { }, "tournament_trophy_configs_var_samp_order_by": { "placement": [ - 2481 + 2485 ], "silhouette": [ - 2481 + 2485 ], "__typename": [ 78 @@ -101755,10 +101719,10 @@ export default { }, "tournament_trophy_configs_variance_order_by": { "placement": [ - 2481 + 2485 ], "silhouette": [ - 2481 + 2485 ], "__typename": [ 78 @@ -101766,7 +101730,7 @@ export default { }, "tournaments": { "admin": [ - 3439 + 3443 ], "auto_start": [ 3 @@ -101796,7 +101760,7 @@ export default { 3 ], "created_at": [ - 4024 + 4028 ], "description": [ 78 @@ -101859,10 +101823,7 @@ export default { 3 ], "id": [ - 4462 - ], - "is_league": [ - 3 + 4466 ], "is_organizer": [ 3 @@ -101874,7 +101835,7 @@ export default { 1530 ], "match_options_id": [ - 4462 + 4466 ], "max_players_per_lineup": [ 38 @@ -101886,16 +101847,16 @@ export default { 78 ], "options": [ - 2176 + 2180 ], "organizer_steam_id": [ 180 ], "organizers": [ - 4072, + 4076, { "distinct_on": [ - 4093, + 4097, "[tournament_organizers_select_column!]" ], "limit": [ @@ -101905,19 +101866,19 @@ export default { 38 ], "order_by": [ - 4091, + 4095, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4085 ] } ], "organizers_aggregate": [ - 4073, + 4077, { "distinct_on": [ - 4093, + 4097, "[tournament_organizers_select_column!]" ], "limit": [ @@ -101927,19 +101888,19 @@ export default { 38 ], "order_by": [ - 4091, + 4095, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4085 ] } ], "player_stats": [ - 5246, + 5250, { "distinct_on": [ - 5272, + 5276, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -101949,19 +101910,19 @@ export default { 38 ], "order_by": [ - 5271, + 5275, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5269 ] } ], "player_stats_aggregate": [ - 5247, + 5251, { "distinct_on": [ - 5272, + 5276, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -101971,19 +101932,19 @@ export default { 38 ], "order_by": [ - 5271, + 5275, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5269 ] } ], "results": [ - 5195, + 5199, { "distinct_on": [ - 5221, + 5225, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -101993,19 +101954,19 @@ export default { 38 ], "order_by": [ - 5220, + 5224, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5218 ] } ], "results_aggregate": [ - 5196, + 5200, { "distinct_on": [ - 5221, + 5225, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -102015,19 +101976,19 @@ export default { 38 ], "order_by": [ - 5220, + 5224, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5218 ] } ], "rosters": [ - 4246, + 4250, { "distinct_on": [ - 4267, + 4271, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -102037,19 +101998,19 @@ export default { 38 ], "order_by": [ - 4265, + 4269, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4259 ] } ], "rosters_aggregate": [ - 4247, + 4251, { "distinct_on": [ - 4267, + 4271, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -102059,11 +102020,11 @@ export default { 38 ], "order_by": [ - 4265, + 4269, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4259 ] } ], @@ -102071,10 +102032,10 @@ export default { 78 ], "stages": [ - 4154, + 4158, { "distinct_on": [ - 4183, + 4187, "[tournament_stages_select_column!]" ], "limit": [ @@ -102084,19 +102045,19 @@ export default { 38 ], "order_by": [ - 4180, + 4184, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4170 ] } ], "stages_aggregate": [ - 4155, + 4159, { "distinct_on": [ - 4183, + 4187, "[tournament_stages_select_column!]" ], "limit": [ @@ -102106,25 +102067,25 @@ export default { 38 ], "order_by": [ - 4180, + 4184, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4170 ] } ], "start": [ - 4024 + 4028 ], "status": [ 1124 ], "teams": [ - 4287, + 4291, { "distinct_on": [ - 4309, + 4313, "[tournament_teams_select_column!]" ], "limit": [ @@ -102134,19 +102095,19 @@ export default { 38 ], "order_by": [ - 4307, + 4311, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4300 ] } ], "teams_aggregate": [ - 4288, + 4292, { "distinct_on": [ - 4309, + 4313, "[tournament_teams_select_column!]" ], "limit": [ @@ -102156,19 +102117,19 @@ export default { 38 ], "order_by": [ - 4307, + 4311, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4300 ] } ], "trophies": [ - 4329, + 4333, { "distinct_on": [ - 4352, + 4356, "[tournament_trophies_select_column!]" ], "limit": [ @@ -102178,19 +102139,19 @@ export default { 38 ], "order_by": [ - 4350, + 4354, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4344 ] } ], "trophies_aggregate": [ - 4330, + 4334, { "distinct_on": [ - 4352, + 4356, "[tournament_trophies_select_column!]" ], "limit": [ @@ -102200,11 +102161,11 @@ export default { 38 ], "order_by": [ - 4350, + 4354, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4344 ] } ], @@ -102212,10 +102173,10 @@ export default { 3 ], "trophy_configs": [ - 4374, + 4378, { "distinct_on": [ - 4396, + 4400, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -102225,19 +102186,19 @@ export default { 38 ], "order_by": [ - 4394, + 4398, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4383 + 4387 ] } ], "trophy_configs_aggregate": [ - 4375, + 4379, { "distinct_on": [ - 4396, + 4400, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -102247,11 +102208,11 @@ export default { 38 ], "order_by": [ - 4394, + 4398, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4383 + 4387 ] } ], @@ -102261,10 +102222,10 @@ export default { }, "tournaments_aggregate": { "aggregate": [ - 4422 + 4426 ], "nodes": [ - 4416 + 4420 ], "__typename": [ 78 @@ -102272,13 +102233,13 @@ export default { }, "tournaments_aggregate_bool_exp": { "bool_and": [ - 4419 + 4423 ], "bool_or": [ - 4420 + 4424 ], "count": [ - 4421 + 4425 ], "__typename": [ 78 @@ -102286,13 +102247,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 4441 + 4445 ], "distinct": [ 3 ], "filter": [ - 4427 + 4431 ], "predicate": [ 4 @@ -102303,13 +102264,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 4442 + 4446 ], "distinct": [ 3 ], "filter": [ - 4427 + 4431 ], "predicate": [ 4 @@ -102320,13 +102281,13 @@ export default { }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 4440 + 4444 ], "distinct": [ 3 ], "filter": [ - 4427 + 4431 ], "predicate": [ 39 @@ -102337,13 +102298,13 @@ export default { }, "tournaments_aggregate_fields": { "avg": [ - 4425 + 4429 ], "count": [ 38, { "columns": [ - 4440, + 4444, "[tournaments_select_column!]" ], "distinct": [ @@ -102352,31 +102313,31 @@ export default { } ], "max": [ - 4431 + 4435 ], "min": [ - 4433 + 4437 ], "stddev": [ - 4444 + 4448 ], "stddev_pop": [ - 4446 + 4450 ], "stddev_samp": [ - 4448 + 4452 ], "sum": [ - 4452 + 4456 ], "var_pop": [ - 4456 + 4460 ], "var_samp": [ - 4458 + 4462 ], "variance": [ - 4460 + 4464 ], "__typename": [ 78 @@ -102384,37 +102345,37 @@ export default { }, "tournaments_aggregate_order_by": { "avg": [ - 4426 + 4430 ], "count": [ - 2481 + 2485 ], "max": [ - 4432 + 4436 ], "min": [ - 4434 + 4438 ], "stddev": [ - 4445 + 4449 ], "stddev_pop": [ - 4447 + 4451 ], "stddev_samp": [ - 4449 + 4453 ], "sum": [ - 4453 + 4457 ], "var_pop": [ - 4457 + 4461 ], "var_samp": [ - 4459 + 4463 ], "variance": [ - 4461 + 4465 ], "__typename": [ 78 @@ -102422,10 +102383,10 @@ export default { }, "tournaments_arr_rel_insert_input": { "data": [ - 4430 + 4434 ], "on_conflict": [ - 4437 + 4441 ], "__typename": [ 78 @@ -102447,7 +102408,7 @@ export default { }, "tournaments_avg_order_by": { "organizer_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -102455,16 +102416,16 @@ export default { }, "tournaments_bool_exp": { "_and": [ - 4427 + 4431 ], "_not": [ - 4427 + 4431 ], "_or": [ - 4427 + 4431 ], "admin": [ - 3443 + 3447 ], "auto_start": [ 4 @@ -102494,7 +102455,7 @@ export default { 4 ], "created_at": [ - 4025 + 4029 ], "description": [ 80 @@ -102557,10 +102518,7 @@ export default { 4 ], "id": [ - 4464 - ], - "is_league": [ - 4 + 4468 ], "is_organizer": [ 4 @@ -102572,7 +102530,7 @@ export default { 1537 ], "match_options_id": [ - 4464 + 4468 ], "max_players_per_lineup": [ 39 @@ -102584,70 +102542,70 @@ export default { 80 ], "options": [ - 2180 + 2184 ], "organizer_steam_id": [ 182 ], "organizers": [ - 4081 + 4085 ], "organizers_aggregate": [ - 4074 + 4078 ], "player_stats": [ - 5265 + 5269 ], "player_stats_aggregate": [ - 5248 + 5252 ], "results": [ - 5214 + 5218 ], "results_aggregate": [ - 5197 + 5201 ], "rosters": [ - 4255 + 4259 ], "rosters_aggregate": [ - 4248 + 4252 ], "scheduling_mode": [ 80 ], "stages": [ - 4166 + 4170 ], "stages_aggregate": [ - 4156 + 4160 ], "start": [ - 4025 + 4029 ], "status": [ 1125 ], "teams": [ - 4296 + 4300 ], "teams_aggregate": [ - 4289 + 4293 ], "trophies": [ - 4340 + 4344 ], "trophies_aggregate": [ - 4331 + 4335 ], "trophies_enabled": [ 4 ], "trophy_configs": [ - 4383 + 4387 ], "trophy_configs_aggregate": [ - 4376 + 4380 ], "__typename": [ 78 @@ -102664,13 +102622,13 @@ export default { }, "tournaments_insert_input": { "admin": [ - 3450 + 3454 ], "auto_start": [ 3 ], "created_at": [ - 4024 + 4028 ], "description": [ 78 @@ -102730,61 +102688,58 @@ export default { 1130 ], "id": [ - 4462 - ], - "is_league": [ - 3 + 4466 ], "league_season_division": [ 1545 ], "match_options_id": [ - 4462 + 4466 ], "name": [ 78 ], "options": [ - 2187 + 2191 ], "organizer_steam_id": [ 180 ], "organizers": [ - 4078 + 4082 ], "player_stats": [ - 5262 + 5266 ], "results": [ - 5211 + 5215 ], "rosters": [ - 4252 + 4256 ], "scheduling_mode": [ 78 ], "stages": [ - 4163 + 4167 ], "start": [ - 4024 + 4028 ], "status": [ 1124 ], "teams": [ - 4293 + 4297 ], "trophies": [ - 4337 + 4341 ], "trophies_enabled": [ 3 ], "trophy_configs": [ - 4380 + 4384 ], "__typename": [ 78 @@ -102792,7 +102747,7 @@ export default { }, "tournaments_max_fields": { "created_at": [ - 4024 + 4028 ], "description": [ 78 @@ -102807,10 +102762,10 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "max_players_per_lineup": [ 38 @@ -102828,7 +102783,7 @@ export default { 78 ], "start": [ - 4024 + 4028 ], "__typename": [ 78 @@ -102836,37 +102791,37 @@ export default { }, "tournaments_max_order_by": { "created_at": [ - 2481 + 2485 ], "description": [ - 2481 + 2485 ], "discord_guild_id": [ - 2481 + 2485 ], "discord_role_id": [ - 2481 + 2485 ], "discord_webhook": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "organizer_steam_id": [ - 2481 + 2485 ], "scheduling_mode": [ - 2481 + 2485 ], "start": [ - 2481 + 2485 ], "__typename": [ 78 @@ -102874,7 +102829,7 @@ export default { }, "tournaments_min_fields": { "created_at": [ - 4024 + 4028 ], "description": [ 78 @@ -102889,10 +102844,10 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match_options_id": [ - 4462 + 4466 ], "max_players_per_lineup": [ 38 @@ -102910,7 +102865,7 @@ export default { 78 ], "start": [ - 4024 + 4028 ], "__typename": [ 78 @@ -102918,37 +102873,37 @@ export default { }, "tournaments_min_order_by": { "created_at": [ - 2481 + 2485 ], "description": [ - 2481 + 2485 ], "discord_guild_id": [ - 2481 + 2485 ], "discord_role_id": [ - 2481 + 2485 ], "discord_webhook": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "match_options_id": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "organizer_steam_id": [ - 2481 + 2485 ], "scheduling_mode": [ - 2481 + 2485 ], "start": [ - 2481 + 2485 ], "__typename": [ 78 @@ -102959,7 +102914,7 @@ export default { 38 ], "returning": [ - 4416 + 4420 ], "__typename": [ 78 @@ -102967,10 +102922,10 @@ export default { }, "tournaments_obj_rel_insert_input": { "data": [ - 4430 + 4434 ], "on_conflict": [ - 4437 + 4441 ], "__typename": [ 78 @@ -102978,13 +102933,13 @@ export default { }, "tournaments_on_conflict": { "constraint": [ - 4428 + 4432 ], "update_columns": [ - 4454 + 4458 ], "where": [ - 4427 + 4431 ], "__typename": [ 78 @@ -102992,166 +102947,163 @@ export default { }, "tournaments_order_by": { "admin": [ - 3452 + 3456 ], "auto_start": [ - 2481 + 2485 ], "can_cancel": [ - 2481 + 2485 ], "can_close_registration": [ - 2481 + 2485 ], "can_join": [ - 2481 + 2485 ], "can_open_registration": [ - 2481 + 2485 ], "can_pause": [ - 2481 + 2485 ], "can_resume": [ - 2481 + 2485 ], "can_setup": [ - 2481 + 2485 ], "can_start": [ - 2481 + 2485 ], "created_at": [ - 2481 + 2485 ], "description": [ - 2481 + 2485 ], "discord_guild_id": [ - 2481 + 2485 ], "discord_notifications_enabled": [ - 2481 + 2485 ], "discord_notify_Canceled": [ - 2481 + 2485 ], "discord_notify_Finished": [ - 2481 + 2485 ], "discord_notify_Forfeit": [ - 2481 + 2485 ], "discord_notify_Live": [ - 2481 + 2485 ], "discord_notify_MapPaused": [ - 2481 + 2485 ], "discord_notify_PickingPlayers": [ - 2481 + 2485 ], "discord_notify_Scheduled": [ - 2481 + 2485 ], "discord_notify_Surrendered": [ - 2481 + 2485 ], "discord_notify_Tie": [ - 2481 + 2485 ], "discord_notify_Veto": [ - 2481 + 2485 ], "discord_notify_WaitingForCheckIn": [ - 2481 + 2485 ], "discord_notify_WaitingForServer": [ - 2481 + 2485 ], "discord_role_id": [ - 2481 + 2485 ], "discord_voice_enabled": [ - 2481 + 2485 ], "discord_webhook": [ - 2481 + 2485 ], "e_tournament_status": [ 1132 ], "has_min_teams": [ - 2481 + 2485 ], "id": [ - 2481 - ], - "is_league": [ - 2481 + 2485 ], "is_organizer": [ - 2481 + 2485 ], "joined_tournament": [ - 2481 + 2485 ], "league_season_division": [ 1547 ], "match_options_id": [ - 2481 + 2485 ], "max_players_per_lineup": [ - 2481 + 2485 ], "min_players_per_lineup": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "options": [ - 2189 + 2193 ], "organizer_steam_id": [ - 2481 + 2485 ], "organizers_aggregate": [ - 4077 + 4081 ], "player_stats_aggregate": [ - 5261 + 5265 ], "results_aggregate": [ - 5210 + 5214 ], "rosters_aggregate": [ - 4251 + 4255 ], "scheduling_mode": [ - 2481 + 2485 ], "stages_aggregate": [ - 4161 + 4165 ], "start": [ - 2481 + 2485 ], "status": [ - 2481 + 2485 ], "teams_aggregate": [ - 4292 + 4296 ], "trophies_aggregate": [ - 4336 + 4340 ], "trophies_enabled": [ - 2481 + 2485 ], "trophy_configs_aggregate": [ - 4379 + 4383 ], "__typename": [ 78 @@ -103159,7 +103111,7 @@ export default { }, "tournaments_pk_columns_input": { "id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -103173,176 +103125,7 @@ export default { 3 ], "created_at": [ - 4024 - ], - "description": [ - 78 - ], - "discord_guild_id": [ - 78 - ], - "discord_notifications_enabled": [ - 3 - ], - "discord_notify_Canceled": [ - 3 - ], - "discord_notify_Finished": [ - 3 - ], - "discord_notify_Forfeit": [ - 3 - ], - "discord_notify_Live": [ - 3 - ], - "discord_notify_MapPaused": [ - 3 - ], - "discord_notify_PickingPlayers": [ - 3 - ], - "discord_notify_Scheduled": [ - 3 - ], - "discord_notify_Surrendered": [ - 3 - ], - "discord_notify_Tie": [ - 3 - ], - "discord_notify_Veto": [ - 3 - ], - "discord_notify_WaitingForCheckIn": [ - 3 - ], - "discord_notify_WaitingForServer": [ - 3 - ], - "discord_role_id": [ - 78 - ], - "discord_voice_enabled": [ - 3 - ], - "discord_webhook": [ - 78 - ], - "id": [ - 4462 - ], - "is_league": [ - 3 - ], - "match_options_id": [ - 4462 - ], - "name": [ - 78 - ], - "organizer_steam_id": [ - 180 - ], - "scheduling_mode": [ - 78 - ], - "start": [ - 4024 - ], - "status": [ - 1124 - ], - "trophies_enabled": [ - 3 - ], - "__typename": [ - 78 - ] - }, - "tournaments_stddev_fields": { - "max_players_per_lineup": [ - 38 - ], - "min_players_per_lineup": [ - 38 - ], - "organizer_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "tournaments_stddev_order_by": { - "organizer_steam_id": [ - 2481 - ], - "__typename": [ - 78 - ] - }, - "tournaments_stddev_pop_fields": { - "max_players_per_lineup": [ - 38 - ], - "min_players_per_lineup": [ - 38 - ], - "organizer_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "tournaments_stddev_pop_order_by": { - "organizer_steam_id": [ - 2481 - ], - "__typename": [ - 78 - ] - }, - "tournaments_stddev_samp_fields": { - "max_players_per_lineup": [ - 38 - ], - "min_players_per_lineup": [ - 38 - ], - "organizer_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "tournaments_stddev_samp_order_by": { - "organizer_steam_id": [ - 2481 - ], - "__typename": [ - 78 - ] - }, - "tournaments_stream_cursor_input": { - "initial_value": [ - 4451 - ], - "ordering": [ - 236 - ], - "__typename": [ - 78 - ] - }, - "tournaments_stream_cursor_value_input": { - "auto_start": [ - 3 - ], - "created_at": [ - 4024 + 4028 ], "description": [ 78 @@ -103399,13 +103182,176 @@ export default { 78 ], "id": [ - 4462 + 4466 + ], + "match_options_id": [ + 4466 + ], + "name": [ + 78 + ], + "organizer_steam_id": [ + 180 + ], + "scheduling_mode": [ + 78 ], - "is_league": [ + "start": [ + 4028 + ], + "status": [ + 1124 + ], + "trophies_enabled": [ 3 ], + "__typename": [ + 78 + ] + }, + "tournaments_stddev_fields": { + "max_players_per_lineup": [ + 38 + ], + "min_players_per_lineup": [ + 38 + ], + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournaments_stddev_order_by": { + "organizer_steam_id": [ + 2485 + ], + "__typename": [ + 78 + ] + }, + "tournaments_stddev_pop_fields": { + "max_players_per_lineup": [ + 38 + ], + "min_players_per_lineup": [ + 38 + ], + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournaments_stddev_pop_order_by": { + "organizer_steam_id": [ + 2485 + ], + "__typename": [ + 78 + ] + }, + "tournaments_stddev_samp_fields": { + "max_players_per_lineup": [ + 38 + ], + "min_players_per_lineup": [ + 38 + ], + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournaments_stddev_samp_order_by": { + "organizer_steam_id": [ + 2485 + ], + "__typename": [ + 78 + ] + }, + "tournaments_stream_cursor_input": { + "initial_value": [ + 4455 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "tournaments_stream_cursor_value_input": { + "auto_start": [ + 3 + ], + "created_at": [ + 4028 + ], + "description": [ + 78 + ], + "discord_guild_id": [ + 78 + ], + "discord_notifications_enabled": [ + 3 + ], + "discord_notify_Canceled": [ + 3 + ], + "discord_notify_Finished": [ + 3 + ], + "discord_notify_Forfeit": [ + 3 + ], + "discord_notify_Live": [ + 3 + ], + "discord_notify_MapPaused": [ + 3 + ], + "discord_notify_PickingPlayers": [ + 3 + ], + "discord_notify_Scheduled": [ + 3 + ], + "discord_notify_Surrendered": [ + 3 + ], + "discord_notify_Tie": [ + 3 + ], + "discord_notify_Veto": [ + 3 + ], + "discord_notify_WaitingForCheckIn": [ + 3 + ], + "discord_notify_WaitingForServer": [ + 3 + ], + "discord_role_id": [ + 78 + ], + "discord_voice_enabled": [ + 3 + ], + "discord_webhook": [ + 78 + ], + "id": [ + 4466 + ], "match_options_id": [ - 4462 + 4466 ], "name": [ 78 @@ -103417,7 +103363,7 @@ export default { 78 ], "start": [ - 4024 + 4028 ], "status": [ 1124 @@ -103445,7 +103391,7 @@ export default { }, "tournaments_sum_order_by": { "organizer_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -103454,13 +103400,13 @@ export default { "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 4429 + 4433 ], "_set": [ - 4443 + 4447 ], "where": [ - 4427 + 4431 ], "__typename": [ 78 @@ -103482,7 +103428,7 @@ export default { }, "tournaments_var_pop_order_by": { "organizer_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -103504,7 +103450,7 @@ export default { }, "tournaments_var_samp_order_by": { "organizer_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -103526,7 +103472,7 @@ export default { }, "tournaments_variance_order_by": { "organizer_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -103535,37 +103481,37 @@ export default { "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 4462 + 4466 ], "_contains": [ - 4462 + 4466 ], "_eq": [ - 4462 + 4466 ], "_gt": [ - 4462 + 4466 ], "_gte": [ - 4462 + 4466 ], "_in": [ - 4462 + 4466 ], "_is_null": [ 3 ], "_lt": [ - 4462 + 4466 ], "_lte": [ - 4462 + 4466 ], "_neq": [ - 4462 + 4466 ], "_nin": [ - 4462 + 4466 ], "__typename": [ 78 @@ -103573,31 +103519,31 @@ export default { }, "uuid_comparison_exp": { "_eq": [ - 4462 + 4466 ], "_gt": [ - 4462 + 4466 ], "_gte": [ - 4462 + 4466 ], "_in": [ - 4462 + 4466 ], "_is_null": [ 3 ], "_lt": [ - 4462 + 4466 ], "_lte": [ - 4462 + 4466 ], "_neq": [ - 4462 + 4466 ], "_nin": [ - 4462 + 4466 ], "__typename": [ 78 @@ -103652,10 +103598,10 @@ export default { }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 4467 + 4471 ], "nodes": [ - 4465 + 4469 ], "__typename": [ 78 @@ -103663,13 +103609,13 @@ export default { }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 4468 + 4472 ], "count": [ 38, { "columns": [ - 4473, + 4477, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -103678,31 +103624,31 @@ export default { } ], "max": [ - 4470 + 4474 ], "min": [ - 4471 + 4475 ], "stddev": [ - 4474 + 4478 ], "stddev_pop": [ - 4475 + 4479 ], "stddev_samp": [ - 4476 + 4480 ], "sum": [ - 4479 + 4483 ], "var_pop": [ - 4480 + 4484 ], "var_samp": [ - 4481 + 4485 ], "variance": [ - 4482 + 4486 ], "__typename": [ 78 @@ -103745,13 +103691,13 @@ export default { }, "v_gpu_pool_status_bool_exp": { "_and": [ - 4469 + 4473 ], "_not": [ - 4469 + 4473 ], "_or": [ - 4469 + 4473 ], "demo_free_gpu_nodes": [ 39 @@ -103871,46 +103817,46 @@ export default { }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 2481 + 2485 ], "demo_in_progress": [ - 2481 + 2485 ], "demo_total_gpu_nodes": [ - 2481 + 2485 ], "free_gpu_nodes": [ - 2481 + 2485 ], "free_gpu_nodes_for_batch": [ - 2481 + 2485 ], "highlights_in_progress": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "live_in_progress": [ - 2481 + 2485 ], "registered_gpu_nodes": [ - 2481 + 2485 ], "rendering_total_gpu_nodes": [ - 2481 + 2485 ], "renders_paused_for_active_match": [ - 2481 + 2485 ], "streaming_free_gpu_nodes": [ - 2481 + 2485 ], "streaming_total_gpu_nodes": [ - 2481 + 2485 ], "total_gpu_nodes": [ - 2481 + 2485 ], "__typename": [ 78 @@ -104024,7 +103970,7 @@ export default { }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 4478 + 4482 ], "ordering": [ 236 @@ -104228,22 +104174,22 @@ export default { 38 ], "league_division_id": [ - 4462 + 4466 ], "league_season_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team": [ 1712 ], "league_team_id": [ - 4462 + 4466 ], "league_team_season_id": [ - 4462 + 4466 ], "losses": [ 38 @@ -104279,7 +104225,7 @@ export default { 1670 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -104290,10 +104236,10 @@ export default { }, "v_league_division_standings_aggregate": { "aggregate": [ - 4487 + 4491 ], "nodes": [ - 4483 + 4487 ], "__typename": [ 78 @@ -104301,7 +104247,7 @@ export default { }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 4486 + 4490 ], "__typename": [ 78 @@ -104309,13 +104255,13 @@ export default { }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 4499 + 4503 ], "distinct": [ 3 ], "filter": [ - 4492 + 4496 ], "predicate": [ 39 @@ -104326,13 +104272,13 @@ export default { }, "v_league_division_standings_aggregate_fields": { "avg": [ - 4490 + 4494 ], "count": [ 38, { "columns": [ - 4499, + 4503, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -104341,31 +104287,31 @@ export default { } ], "max": [ - 4494 + 4498 ], "min": [ - 4496 + 4500 ], "stddev": [ - 4500 + 4504 ], "stddev_pop": [ - 4502 + 4506 ], "stddev_samp": [ - 4504 + 4508 ], "sum": [ - 4508 + 4512 ], "var_pop": [ - 4510 + 4514 ], "var_samp": [ - 4512 + 4516 ], "variance": [ - 4514 + 4518 ], "__typename": [ 78 @@ -104373,37 +104319,37 @@ export default { }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 4491 + 4495 ], "count": [ - 2481 + 2485 ], "max": [ - 4495 + 4499 ], "min": [ - 4497 + 4501 ], "stddev": [ - 4501 + 4505 ], "stddev_pop": [ - 4503 + 4507 ], "stddev_samp": [ - 4505 + 4509 ], "sum": [ - 4509 + 4513 ], "var_pop": [ - 4511 + 4515 ], "var_samp": [ - 4513 + 4517 ], "variance": [ - 4515 + 4519 ], "__typename": [ 78 @@ -104411,7 +104357,7 @@ export default { }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 4493 + 4497 ], "__typename": [ 78 @@ -104460,40 +104406,40 @@ export default { }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "round_diff": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -104501,13 +104447,13 @@ export default { }, "v_league_division_standings_bool_exp": { "_and": [ - 4492 + 4496 ], "_not": [ - 4492 + 4496 ], "_or": [ - 4492 + 4496 ], "head_to_head_match_wins": [ 39 @@ -104516,22 +104462,22 @@ export default { 39 ], "league_division_id": [ - 4464 + 4468 ], "league_season_division_id": [ - 4464 + 4468 ], "league_season_id": [ - 4464 + 4468 ], "league_team": [ 1715 ], "league_team_id": [ - 4464 + 4468 ], "league_team_season_id": [ - 4464 + 4468 ], "losses": [ 39 @@ -104567,7 +104513,7 @@ export default { 1679 ], "tournament_team_id": [ - 4464 + 4468 ], "wins": [ 39 @@ -104584,22 +104530,22 @@ export default { 38 ], "league_division_id": [ - 4462 + 4466 ], "league_season_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team": [ 1721 ], "league_team_id": [ - 4462 + 4466 ], "league_team_season_id": [ - 4462 + 4466 ], "losses": [ 38 @@ -104635,7 +104581,7 @@ export default { 1688 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -104652,19 +104598,19 @@ export default { 38 ], "league_division_id": [ - 4462 + 4466 ], "league_season_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team_id": [ - 4462 + 4466 ], "league_team_season_id": [ - 4462 + 4466 ], "losses": [ 38 @@ -104694,7 +104640,7 @@ export default { 38 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -104705,58 +104651,58 @@ export default { }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "league_division_id": [ - 2481 + 2485 ], "league_season_division_id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "league_team_id": [ - 2481 + 2485 ], "league_team_season_id": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "round_diff": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -104770,19 +104716,19 @@ export default { 38 ], "league_division_id": [ - 4462 + 4466 ], "league_season_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team_id": [ - 4462 + 4466 ], "league_team_season_id": [ - 4462 + 4466 ], "losses": [ 38 @@ -104812,7 +104758,7 @@ export default { 38 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -104823,58 +104769,58 @@ export default { }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "league_division_id": [ - 2481 + 2485 ], "league_season_division_id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "league_team_id": [ - 2481 + 2485 ], "league_team_season_id": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "round_diff": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -104882,55 +104828,55 @@ export default { }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "league_division_id": [ - 2481 + 2485 ], "league_season_division_id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "league_team": [ 1723 ], "league_team_id": [ - 2481 + 2485 ], "league_team_season_id": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "round_diff": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "season_division": [ 1547 @@ -104939,10 +104885,10 @@ export default { 1690 ], "tournament_team_id": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -104992,40 +104938,40 @@ export default { }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "round_diff": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -105074,40 +105020,40 @@ export default { }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "round_diff": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -105156,40 +105102,40 @@ export default { }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "round_diff": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -105197,7 +105143,7 @@ export default { }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 4507 + 4511 ], "ordering": [ 236 @@ -105214,19 +105160,19 @@ export default { 38 ], "league_division_id": [ - 4462 + 4466 ], "league_season_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team_id": [ - 4462 + 4466 ], "league_team_season_id": [ - 4462 + 4466 ], "losses": [ 38 @@ -105256,7 +105202,7 @@ export default { 38 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -105308,40 +105254,40 @@ export default { }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "round_diff": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -105390,40 +105336,40 @@ export default { }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "round_diff": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -105472,40 +105418,40 @@ export default { }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "round_diff": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -105554,40 +105500,40 @@ export default { }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "round_diff": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -105613,28 +105559,28 @@ export default { 38 ], "league_division_id": [ - 4462 + 4466 ], "league_season_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team": [ 1712 ], "league_team_id": [ - 4462 + 4466 ], "league_team_season_id": [ - 4462 + 4466 ], "matches_played": [ 38 ], "player": [ - 3439 + 3443 ], "player_steam_id": [ 180 @@ -105645,10 +105591,10 @@ export default { }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 4530 + 4534 ], "nodes": [ - 4516 + 4520 ], "__typename": [ 78 @@ -105656,31 +105602,31 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 4519 + 4523 ], "corr": [ - 4520 + 4524 ], "count": [ - 4522 + 4526 ], "covar_samp": [ - 4523 + 4527 ], "max": [ - 4525 + 4529 ], "min": [ - 4526 + 4530 ], "stddev_samp": [ - 4527 + 4531 ], "sum": [ - 4528 + 4532 ], "var_samp": [ - 4529 + 4533 ], "__typename": [ 78 @@ -105688,13 +105634,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4543 + 4547 ], "distinct": [ 3 ], "filter": [ - 4535 + 4539 ], "predicate": [ 1201 @@ -105705,13 +105651,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 4521 + 4525 ], "distinct": [ 3 ], "filter": [ - 4535 + 4539 ], "predicate": [ 1201 @@ -105722,10 +105668,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4544 + 4548 ], "Y": [ - 4544 + 4548 ], "__typename": [ 78 @@ -105733,13 +105679,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4542 + 4546 ], "distinct": [ 3 ], "filter": [ - 4535 + 4539 ], "predicate": [ 39 @@ -105750,13 +105696,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4524 + 4528 ], "distinct": [ 3 ], "filter": [ - 4535 + 4539 ], "predicate": [ 1201 @@ -105767,10 +105713,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4545 + 4549 ], "Y": [ - 4545 + 4549 ], "__typename": [ 78 @@ -105778,13 +105724,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4546 + 4550 ], "distinct": [ 3 ], "filter": [ - 4535 + 4539 ], "predicate": [ 1201 @@ -105795,13 +105741,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4547 + 4551 ], "distinct": [ 3 ], "filter": [ - 4535 + 4539 ], "predicate": [ 1201 @@ -105812,13 +105758,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4548 + 4552 ], "distinct": [ 3 ], "filter": [ - 4535 + 4539 ], "predicate": [ 1201 @@ -105829,13 +105775,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4549 + 4553 ], "distinct": [ 3 ], "filter": [ - 4535 + 4539 ], "predicate": [ 1201 @@ -105846,13 +105792,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4550 + 4554 ], "distinct": [ 3 ], "filter": [ - 4535 + 4539 ], "predicate": [ 1201 @@ -105863,13 +105809,13 @@ export default { }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 4533 + 4537 ], "count": [ 38, { "columns": [ - 4542, + 4546, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -105878,31 +105824,31 @@ export default { } ], "max": [ - 4537 + 4541 ], "min": [ - 4539 + 4543 ], "stddev": [ - 4551 + 4555 ], "stddev_pop": [ - 4553 + 4557 ], "stddev_samp": [ - 4555 + 4559 ], "sum": [ - 4559 + 4563 ], "var_pop": [ - 4561 + 4565 ], "var_samp": [ - 4563 + 4567 ], "variance": [ - 4565 + 4569 ], "__typename": [ 78 @@ -105910,37 +105856,37 @@ export default { }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 4534 + 4538 ], "count": [ - 2481 + 2485 ], "max": [ - 4538 + 4542 ], "min": [ - 4540 + 4544 ], "stddev": [ - 4552 + 4556 ], "stddev_pop": [ - 4554 + 4558 ], "stddev_samp": [ - 4556 + 4560 ], "sum": [ - 4560 + 4564 ], "var_pop": [ - 4562 + 4566 ], "var_samp": [ - 4564 + 4568 ], "variance": [ - 4566 + 4570 ], "__typename": [ 78 @@ -105948,7 +105894,7 @@ export default { }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 4536 + 4540 ], "__typename": [ 78 @@ -105985,28 +105931,28 @@ export default { }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -106014,13 +105960,13 @@ export default { }, "v_league_season_player_stats_bool_exp": { "_and": [ - 4535 + 4539 ], "_not": [ - 4535 + 4539 ], "_or": [ - 4535 + 4539 ], "assists": [ 39 @@ -106041,28 +105987,28 @@ export default { 39 ], "league_division_id": [ - 4464 + 4468 ], "league_season_division_id": [ - 4464 + 4468 ], "league_season_id": [ - 4464 + 4468 ], "league_team": [ 1715 ], "league_team_id": [ - 4464 + 4468 ], "league_team_season_id": [ - 4464 + 4468 ], "matches_played": [ 39 ], "player": [ - 3443 + 3447 ], "player_steam_id": [ 182 @@ -106091,28 +106037,28 @@ export default { 38 ], "league_division_id": [ - 4462 + 4466 ], "league_season_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team": [ 1721 ], "league_team_id": [ - 4462 + 4466 ], "league_team_season_id": [ - 4462 + 4466 ], "matches_played": [ 38 ], "player": [ - 3450 + 3454 ], "player_steam_id": [ 180 @@ -106141,19 +106087,19 @@ export default { 38 ], "league_division_id": [ - 4462 + 4466 ], "league_season_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team_id": [ - 4462 + 4466 ], "league_team_season_id": [ - 4462 + 4466 ], "matches_played": [ 38 @@ -106167,43 +106113,43 @@ export default { }, "v_league_season_player_stats_max_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "league_division_id": [ - 2481 + 2485 ], "league_season_division_id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "league_team_id": [ - 2481 + 2485 ], "league_team_season_id": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -106229,19 +106175,19 @@ export default { 38 ], "league_division_id": [ - 4462 + 4466 ], "league_season_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team_id": [ - 4462 + 4466 ], "league_team_season_id": [ - 4462 + 4466 ], "matches_played": [ 38 @@ -106255,43 +106201,43 @@ export default { }, "v_league_season_player_stats_min_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "league_division_id": [ - 2481 + 2485 ], "league_season_division_id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "league_team_id": [ - 2481 + 2485 ], "league_team_season_id": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -106299,49 +106245,49 @@ export default { }, "v_league_season_player_stats_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "league_division_id": [ - 2481 + 2485 ], "league_season_division_id": [ - 2481 + 2485 ], "league_season_id": [ - 2481 + 2485 ], "league_team": [ 1723 ], "league_team_id": [ - 2481 + 2485 ], "league_team_season_id": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -106387,28 +106333,28 @@ export default { }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -106445,28 +106391,28 @@ export default { }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -106503,28 +106449,28 @@ export default { }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -106532,7 +106478,7 @@ export default { }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 4558 + 4562 ], "ordering": [ 236 @@ -106561,19 +106507,19 @@ export default { 38 ], "league_division_id": [ - 4462 + 4466 ], "league_season_division_id": [ - 4462 + 4466 ], "league_season_id": [ - 4462 + 4466 ], "league_team_id": [ - 4462 + 4466 ], "league_team_season_id": [ - 4462 + 4466 ], "matches_played": [ 38 @@ -106616,28 +106562,28 @@ export default { }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -106674,28 +106620,28 @@ export default { }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -106732,28 +106678,28 @@ export default { }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -106790,28 +106736,28 @@ export default { }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -106825,19 +106771,19 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "lineup": [ 1976 ], "match_lineup_id": [ - 4462 + 4466 ], "placeholder_name": [ 78 ], "player": [ - 3439 + 3443 ], "steam_id": [ 180 @@ -106848,10 +106794,10 @@ export default { }, "v_match_captains_aggregate": { "aggregate": [ - 4569 + 4573 ], "nodes": [ - 4567 + 4571 ], "__typename": [ 78 @@ -106859,13 +106805,13 @@ export default { }, "v_match_captains_aggregate_fields": { "avg": [ - 4570 + 4574 ], "count": [ 38, { "columns": [ - 4579, + 4583, "[v_match_captains_select_column!]" ], "distinct": [ @@ -106874,31 +106820,31 @@ export default { } ], "max": [ - 4574 + 4578 ], "min": [ - 4575 + 4579 ], "stddev": [ - 4581 + 4585 ], "stddev_pop": [ - 4582 + 4586 ], "stddev_samp": [ - 4583 + 4587 ], "sum": [ - 4586 + 4590 ], "var_pop": [ - 4588 + 4592 ], "var_samp": [ - 4589 + 4593 ], "variance": [ - 4590 + 4594 ], "__typename": [ 78 @@ -106914,13 +106860,13 @@ export default { }, "v_match_captains_bool_exp": { "_and": [ - 4571 + 4575 ], "_not": [ - 4571 + 4575 ], "_or": [ - 4571 + 4575 ], "captain": [ 4 @@ -106929,19 +106875,19 @@ export default { 80 ], "id": [ - 4464 + 4468 ], "lineup": [ 1985 ], "match_lineup_id": [ - 4464 + 4468 ], "placeholder_name": [ 80 ], "player": [ - 3443 + 3447 ], "steam_id": [ 182 @@ -106966,19 +106912,19 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "lineup": [ 1994 ], "match_lineup_id": [ - 4462 + 4466 ], "placeholder_name": [ 78 ], "player": [ - 3450 + 3454 ], "steam_id": [ 180 @@ -106992,10 +106938,10 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "placeholder_name": [ 78 @@ -107012,10 +106958,10 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "placeholder_name": [ 78 @@ -107032,7 +106978,7 @@ export default { 38 ], "returning": [ - 4567 + 4571 ], "__typename": [ 78 @@ -107040,7 +106986,7 @@ export default { }, "v_match_captains_obj_rel_insert_input": { "data": [ - 4573 + 4577 ], "__typename": [ 78 @@ -107048,28 +106994,28 @@ export default { }, "v_match_captains_order_by": { "captain": [ - 2481 + 2485 ], "discord_id": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "lineup": [ 1996 ], "match_lineup_id": [ - 2481 + 2485 ], "placeholder_name": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -107084,10 +107030,10 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "placeholder_name": [ 78 @@ -107125,7 +107071,7 @@ export default { }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 4585 + 4589 ], "ordering": [ 236 @@ -107142,10 +107088,10 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "placeholder_name": [ 78 @@ -107167,13 +107113,13 @@ export default { }, "v_match_captains_updates": { "_inc": [ - 4572 + 4576 ], "_set": [ - 4580 + 4584 ], "where": [ - 4571 + 4575 ], "__typename": [ 78 @@ -107208,7 +107154,7 @@ export default { 38 ], "clutcher": [ - 3439 + 3443 ], "clutcher_steam_id": [ 180 @@ -107217,22 +107163,22 @@ export default { 38 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_lineup": [ 1976 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "outcome": [ 78 @@ -107249,10 +107195,10 @@ export default { }, "v_match_clutches_aggregate": { "aggregate": [ - 4595 + 4599 ], "nodes": [ - 4591 + 4595 ], "__typename": [ 78 @@ -107260,7 +107206,7 @@ export default { }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 4594 + 4598 ], "__typename": [ 78 @@ -107268,13 +107214,13 @@ export default { }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 4607 + 4611 ], "distinct": [ 3 ], "filter": [ - 4600 + 4604 ], "predicate": [ 39 @@ -107285,13 +107231,13 @@ export default { }, "v_match_clutches_aggregate_fields": { "avg": [ - 4598 + 4602 ], "count": [ 38, { "columns": [ - 4607, + 4611, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -107300,31 +107246,31 @@ export default { } ], "max": [ - 4602 + 4606 ], "min": [ - 4604 + 4608 ], "stddev": [ - 4608 + 4612 ], "stddev_pop": [ - 4610 + 4614 ], "stddev_samp": [ - 4612 + 4616 ], "sum": [ - 4616 + 4620 ], "var_pop": [ - 4618 + 4622 ], "var_samp": [ - 4620 + 4624 ], "variance": [ - 4622 + 4626 ], "__typename": [ 78 @@ -107332,37 +107278,37 @@ export default { }, "v_match_clutches_aggregate_order_by": { "avg": [ - 4599 + 4603 ], "count": [ - 2481 + 2485 ], "max": [ - 4603 + 4607 ], "min": [ - 4605 + 4609 ], "stddev": [ - 4609 + 4613 ], "stddev_pop": [ - 4611 + 4615 ], "stddev_samp": [ - 4613 + 4617 ], "sum": [ - 4617 + 4621 ], "var_pop": [ - 4619 + 4623 ], "var_samp": [ - 4621 + 4625 ], "variance": [ - 4623 + 4627 ], "__typename": [ 78 @@ -107370,7 +107316,7 @@ export default { }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 4601 + 4605 ], "__typename": [ 78 @@ -107395,16 +107341,16 @@ export default { }, "v_match_clutches_avg_order_by": { "against_count": [ - 2481 + 2485 ], "clutcher_steam_id": [ - 2481 + 2485 ], "kills_in_clutch": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -107412,19 +107358,19 @@ export default { }, "v_match_clutches_bool_exp": { "_and": [ - 4600 + 4604 ], "_not": [ - 4600 + 4604 ], "_or": [ - 4600 + 4604 ], "against_count": [ 39 ], "clutcher": [ - 3443 + 3447 ], "clutcher_steam_id": [ 182 @@ -107433,22 +107379,22 @@ export default { 39 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_lineup": [ 1985 ], "match_lineup_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "outcome": [ 80 @@ -107468,7 +107414,7 @@ export default { 38 ], "clutcher": [ - 3450 + 3454 ], "clutcher_steam_id": [ 180 @@ -107477,22 +107423,22 @@ export default { 38 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_lineup": [ 1994 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map": [ - 2152 + 2154 ], "match_map_id": [ - 4462 + 4466 ], "outcome": [ 78 @@ -107518,13 +107464,13 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "outcome": [ 78 @@ -107541,31 +107487,31 @@ export default { }, "v_match_clutches_max_order_by": { "against_count": [ - 2481 + 2485 ], "clutcher_steam_id": [ - 2481 + 2485 ], "kills_in_clutch": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_lineup_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "outcome": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "side": [ - 2481 + 2485 ], "__typename": [ 78 @@ -107582,13 +107528,13 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "outcome": [ 78 @@ -107605,31 +107551,31 @@ export default { }, "v_match_clutches_min_order_by": { "against_count": [ - 2481 + 2485 ], "clutcher_steam_id": [ - 2481 + 2485 ], "kills_in_clutch": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_lineup_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "outcome": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "side": [ - 2481 + 2485 ], "__typename": [ 78 @@ -107637,43 +107583,43 @@ export default { }, "v_match_clutches_order_by": { "against_count": [ - 2481 + 2485 ], "clutcher": [ - 3452 + 3456 ], "clutcher_steam_id": [ - 2481 + 2485 ], "kills_in_clutch": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_lineup": [ 1996 ], "match_lineup_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "outcome": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "side": [ - 2481 + 2485 ], "__typename": [ 78 @@ -107699,16 +107645,16 @@ export default { }, "v_match_clutches_stddev_order_by": { "against_count": [ - 2481 + 2485 ], "clutcher_steam_id": [ - 2481 + 2485 ], "kills_in_clutch": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -107733,16 +107679,16 @@ export default { }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 2481 + 2485 ], "clutcher_steam_id": [ - 2481 + 2485 ], "kills_in_clutch": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -107767,16 +107713,16 @@ export default { }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 2481 + 2485 ], "clutcher_steam_id": [ - 2481 + 2485 ], "kills_in_clutch": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -107784,7 +107730,7 @@ export default { }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 4615 + 4619 ], "ordering": [ 236 @@ -107804,13 +107750,13 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "outcome": [ 78 @@ -107844,16 +107790,16 @@ export default { }, "v_match_clutches_sum_order_by": { "against_count": [ - 2481 + 2485 ], "clutcher_steam_id": [ - 2481 + 2485 ], "kills_in_clutch": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -107878,16 +107824,16 @@ export default { }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 2481 + 2485 ], "clutcher_steam_id": [ - 2481 + 2485 ], "kills_in_clutch": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -107912,16 +107858,16 @@ export default { }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 2481 + 2485 ], "clutcher_steam_id": [ - 2481 + 2485 ], "kills_in_clutch": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -107946,16 +107892,16 @@ export default { }, "v_match_clutches_variance_order_by": { "against_count": [ - 2481 + 2485 ], "clutcher_steam_id": [ - 2481 + 2485 ], "kills_in_clutch": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -107972,16 +107918,16 @@ export default { 38 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "victim_side": [ 78 @@ -107998,10 +107944,10 @@ export default { }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 4626 + 4630 ], "nodes": [ - 4624 + 4628 ], "__typename": [ 78 @@ -108009,13 +107955,13 @@ export default { }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 4627 + 4631 ], "count": [ 38, { "columns": [ - 4632, + 4636, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -108024,31 +107970,31 @@ export default { } ], "max": [ - 4629 + 4633 ], "min": [ - 4630 + 4634 ], "stddev": [ - 4633 + 4637 ], "stddev_pop": [ - 4634 + 4638 ], "stddev_samp": [ - 4635 + 4639 ], "sum": [ - 4638 + 4642 ], "var_pop": [ - 4639 + 4643 ], "var_samp": [ - 4640 + 4644 ], "variance": [ - 4641 + 4645 ], "__typename": [ 78 @@ -108070,13 +108016,13 @@ export default { }, "v_match_kill_pairs_bool_exp": { "_and": [ - 4628 + 4632 ], "_not": [ - 4628 + 4632 ], "_or": [ - 4628 + 4632 ], "killer_side": [ 80 @@ -108088,16 +108034,16 @@ export default { 39 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "victim_side": [ 80 @@ -108123,10 +108069,10 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "victim_side": [ 78 @@ -108152,10 +108098,10 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "victim_side": [ 78 @@ -108172,34 +108118,34 @@ export default { }, "v_match_kill_pairs_order_by": { "killer_side": [ - 2481 + 2485 ], "killer_steam_id": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "victim_side": [ - 2481 + 2485 ], "victim_steam_id": [ - 2481 + 2485 ], "weapon": [ - 2481 + 2485 ], "__typename": [ 78 @@ -108250,7 +108196,7 @@ export default { }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 4637 + 4641 ], "ordering": [ 236 @@ -108270,10 +108216,10 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "victim_side": [ 78 @@ -108346,22 +108292,22 @@ export default { }, "v_match_lineup_buy_types": { "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_lineup": [ 1976 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "matchup": [ 78 @@ -108381,10 +108327,10 @@ export default { }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 4644 + 4648 ], "nodes": [ - 4642 + 4646 ], "__typename": [ 78 @@ -108392,13 +108338,13 @@ export default { }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 4645 + 4649 ], "count": [ 38, { "columns": [ - 4650, + 4654, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -108407,31 +108353,31 @@ export default { } ], "max": [ - 4647 + 4651 ], "min": [ - 4648 + 4652 ], "stddev": [ - 4651 + 4655 ], "stddev_pop": [ - 4652 + 4656 ], "stddev_samp": [ - 4653 + 4657 ], "sum": [ - 4656 + 4660 ], "var_pop": [ - 4657 + 4661 ], "var_samp": [ - 4658 + 4662 ], "variance": [ - 4659 + 4663 ], "__typename": [ 78 @@ -108450,31 +108396,31 @@ export default { }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 4646 + 4650 ], "_not": [ - 4646 + 4650 ], "_or": [ - 4646 + 4650 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_lineup": [ 1985 ], "match_lineup_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "matchup": [ 80 @@ -108494,13 +108440,13 @@ export default { }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "matchup": [ 78 @@ -108520,13 +108466,13 @@ export default { }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "matchup": [ 78 @@ -108546,34 +108492,34 @@ export default { }, "v_match_lineup_buy_types_order_by": { "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_lineup": [ 1996 ], "match_lineup_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "matchup": [ - 2481 + 2485 ], "rounds": [ - 2481 + 2485 ], "side": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -108615,7 +108561,7 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 4655 + 4659 ], "ordering": [ 236 @@ -108626,13 +108572,13 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "matchup": [ 78 @@ -108708,22 +108654,22 @@ export default { 38 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_lineup": [ 1976 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "opening_attempts": [ 38 @@ -108764,10 +108710,10 @@ export default { }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 4662 + 4666 ], "nodes": [ - 4660 + 4664 ], "__typename": [ 78 @@ -108775,13 +108721,13 @@ export default { }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 4663 + 4667 ], "count": [ 38, { "columns": [ - 4668, + 4672, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -108790,31 +108736,31 @@ export default { } ], "max": [ - 4665 + 4669 ], "min": [ - 4666 + 4670 ], "stddev": [ - 4669 + 4673 ], "stddev_pop": [ - 4670 + 4674 ], "stddev_samp": [ - 4671 + 4675 ], "sum": [ - 4674 + 4678 ], "var_pop": [ - 4675 + 4679 ], "var_samp": [ - 4676 + 4680 ], "variance": [ - 4677 + 4681 ], "__typename": [ 78 @@ -108869,13 +108815,13 @@ export default { }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 4664 + 4668 ], "_not": [ - 4664 + 4668 ], "_or": [ - 4664 + 4668 ], "man_adv_rounds": [ 39 @@ -108890,22 +108836,22 @@ export default { 39 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_lineup": [ 1985 ], "match_lineup_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "opening_attempts": [ 39 @@ -108958,13 +108904,13 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "opening_attempts": [ 38 @@ -109017,13 +108963,13 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "opening_attempts": [ 38 @@ -109064,67 +109010,67 @@ export default { }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 2481 + 2485 ], "man_adv_wins": [ - 2481 + 2485 ], "man_dis_rounds": [ - 2481 + 2485 ], "man_dis_wins": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_lineup": [ 1996 ], "match_lineup_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "opening_attempts": [ - 2481 + 2485 ], "opening_wins": [ - 2481 + 2485 ], "pistol_rounds": [ - 2481 + 2485 ], "pistol_wins": [ - 2481 + 2485 ], "round_wins": [ - 2481 + 2485 ], "rounds": [ - 2481 + 2485 ], "side": [ - 2481 + 2485 ], "won_buy_eco": [ - 2481 + 2485 ], "won_buy_force": [ - 2481 + 2485 ], "won_buy_full": [ - 2481 + 2485 ], "won_buy_pistol": [ - 2481 + 2485 ], "__typename": [ 78 @@ -109274,7 +109220,7 @@ export default { }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 4673 + 4677 ], "ordering": [ 236 @@ -109297,13 +109243,13 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "opening_attempts": [ 38 @@ -109535,7 +109481,7 @@ export default { 3 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 @@ -109546,10 +109492,10 @@ export default { }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 4680 + 4684 ], "nodes": [ - 4678 + 4682 ], "__typename": [ 78 @@ -109557,13 +109503,13 @@ export default { }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 4681 + 4685 ], "count": [ 38, { "columns": [ - 4689, + 4693, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -109572,31 +109518,31 @@ export default { } ], "max": [ - 4685 + 4689 ], "min": [ - 4686 + 4690 ], "stddev": [ - 4691 + 4695 ], "stddev_pop": [ - 4692 + 4696 ], "stddev_samp": [ - 4693 + 4697 ], "sum": [ - 4696 + 4700 ], "var_pop": [ - 4698 + 4702 ], "var_samp": [ - 4699 + 4703 ], "variance": [ - 4700 + 4704 ], "__typename": [ 78 @@ -109612,19 +109558,19 @@ export default { }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 4682 + 4686 ], "_not": [ - 4682 + 4686 ], "_or": [ - 4682 + 4686 ], "has_backup_file": [ 4 ], "match_map_id": [ - 4464 + 4468 ], "round": [ 39 @@ -109646,7 +109592,7 @@ export default { 3 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 @@ -109657,7 +109603,7 @@ export default { }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 4462 + 4466 ], "round": [ 38 @@ -109668,7 +109614,7 @@ export default { }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 4462 + 4466 ], "round": [ 38 @@ -109682,7 +109628,7 @@ export default { 38 ], "returning": [ - 4678 + 4682 ], "__typename": [ 78 @@ -109690,13 +109636,13 @@ export default { }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -109708,7 +109654,7 @@ export default { 3 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 @@ -109743,7 +109689,7 @@ export default { }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 4695 + 4699 ], "ordering": [ 236 @@ -109757,7 +109703,7 @@ export default { 3 ], "match_map_id": [ - 4462 + 4466 ], "round": [ 38 @@ -109776,13 +109722,13 @@ export default { }, "v_match_map_backup_rounds_updates": { "_inc": [ - 4683 + 4687 ], "_set": [ - 4690 + 4694 ], "where": [ - 4682 + 4686 ], "__typename": [ 78 @@ -109820,28 +109766,28 @@ export default { 38 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_lineup": [ 1976 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "matchup": [ 78 ], "player": [ - 3439 + 3443 ], "rounds": [ 38 @@ -109858,10 +109804,10 @@ export default { }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 4703 + 4707 ], "nodes": [ - 4701 + 4705 ], "__typename": [ 78 @@ -109869,13 +109815,13 @@ export default { }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 4704 + 4708 ], "count": [ 38, { "columns": [ - 4709, + 4713, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -109884,31 +109830,31 @@ export default { } ], "max": [ - 4706 + 4710 ], "min": [ - 4707 + 4711 ], "stddev": [ - 4710 + 4714 ], "stddev_pop": [ - 4711 + 4715 ], "stddev_samp": [ - 4712 + 4716 ], "sum": [ - 4715 + 4719 ], "var_pop": [ - 4716 + 4720 ], "var_samp": [ - 4717 + 4721 ], "variance": [ - 4718 + 4722 ], "__typename": [ 78 @@ -109933,13 +109879,13 @@ export default { }, "v_match_player_buy_types_bool_exp": { "_and": [ - 4705 + 4709 ], "_not": [ - 4705 + 4709 ], "_or": [ - 4705 + 4709 ], "deaths": [ 39 @@ -109948,28 +109894,28 @@ export default { 39 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_lineup": [ 1985 ], "match_lineup_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "matchup": [ 80 ], "player": [ - 3443 + 3447 ], "rounds": [ 39 @@ -109992,13 +109938,13 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "matchup": [ 78 @@ -110024,13 +109970,13 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "matchup": [ 78 @@ -110050,43 +109996,43 @@ export default { }, "v_match_player_buy_types_order_by": { "deaths": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_lineup": [ 1996 ], "match_lineup_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "matchup": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "rounds": [ - 2481 + 2485 ], "side": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -110146,7 +110092,7 @@ export default { }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 4714 + 4718 ], "ordering": [ 236 @@ -110163,13 +110109,13 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "matchup": [ 78 @@ -110263,25 +110209,25 @@ export default { 38 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_lineup": [ 1976 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3439 + 3443 ], "side": [ 78 @@ -110301,10 +110247,10 @@ export default { }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 4723 + 4727 ], "nodes": [ - 4719 + 4723 ], "__typename": [ 78 @@ -110312,7 +110258,7 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 4722 + 4726 ], "__typename": [ 78 @@ -110320,13 +110266,13 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 4735 + 4739 ], "distinct": [ 3 ], "filter": [ - 4728 + 4732 ], "predicate": [ 39 @@ -110337,13 +110283,13 @@ export default { }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 4726 + 4730 ], "count": [ 38, { "columns": [ - 4735, + 4739, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -110352,31 +110298,31 @@ export default { } ], "max": [ - 4730 + 4734 ], "min": [ - 4732 + 4736 ], "stddev": [ - 4736 + 4740 ], "stddev_pop": [ - 4738 + 4742 ], "stddev_samp": [ - 4740 + 4744 ], "sum": [ - 4744 + 4748 ], "var_pop": [ - 4746 + 4750 ], "var_samp": [ - 4748 + 4752 ], "variance": [ - 4750 + 4754 ], "__typename": [ 78 @@ -110384,37 +110330,37 @@ export default { }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 4727 + 4731 ], "count": [ - 2481 + 2485 ], "max": [ - 4731 + 4735 ], "min": [ - 4733 + 4737 ], "stddev": [ - 4737 + 4741 ], "stddev_pop": [ - 4739 + 4743 ], "stddev_samp": [ - 4741 + 4745 ], "sum": [ - 4745 + 4749 ], "var_pop": [ - 4747 + 4751 ], "var_samp": [ - 4749 + 4753 ], "variance": [ - 4751 + 4755 ], "__typename": [ 78 @@ -110422,7 +110368,7 @@ export default { }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 4729 + 4733 ], "__typename": [ 78 @@ -110450,19 +110396,19 @@ export default { }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "traded_deaths": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -110470,13 +110416,13 @@ export default { }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 4728 + 4732 ], "_not": [ - 4728 + 4732 ], "_or": [ - 4728 + 4732 ], "attempts": [ 39 @@ -110485,25 +110431,25 @@ export default { 39 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_lineup": [ 1985 ], "match_lineup_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "player": [ - 3443 + 3447 ], "side": [ 80 @@ -110529,25 +110475,25 @@ export default { 38 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_lineup": [ 1994 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map": [ - 2152 + 2154 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3450 + 3454 ], "side": [ 78 @@ -110573,13 +110519,13 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "side": [ 78 @@ -110599,31 +110545,31 @@ export default { }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_lineup_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "side": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "traded_deaths": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -110637,13 +110583,13 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "side": [ 78 @@ -110663,31 +110609,31 @@ export default { }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_lineup_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "side": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "traded_deaths": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -110695,43 +110641,43 @@ export default { }, "v_match_player_opening_duels_order_by": { "attempts": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_lineup": [ 1996 ], "match_lineup_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "side": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "traded_deaths": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -110760,19 +110706,19 @@ export default { }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "traded_deaths": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -110800,19 +110746,19 @@ export default { }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "traded_deaths": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -110840,19 +110786,19 @@ export default { }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "traded_deaths": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -110860,7 +110806,7 @@ export default { }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 4743 + 4747 ], "ordering": [ 236 @@ -110877,13 +110823,13 @@ export default { 38 ], "match_id": [ - 4462 + 4466 ], "match_lineup_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "side": [ 78 @@ -110923,19 +110869,19 @@ export default { }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "traded_deaths": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -110963,19 +110909,19 @@ export default { }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "traded_deaths": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -111003,19 +110949,19 @@ export default { }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "traded_deaths": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -111043,19 +110989,19 @@ export default { }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "traded_deaths": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -111069,10 +111015,10 @@ export default { 180 ], "nemsis": [ - 3439 + 3443 ], "player": [ - 3439 + 3443 ], "victim_id": [ 180 @@ -111083,10 +111029,10 @@ export default { }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 4754 + 4758 ], "nodes": [ - 4752 + 4756 ], "__typename": [ 78 @@ -111094,13 +111040,13 @@ export default { }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 4755 + 4759 ], "count": [ 38, { "columns": [ - 4760, + 4764, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -111109,31 +111055,31 @@ export default { } ], "max": [ - 4757 + 4761 ], "min": [ - 4758 + 4762 ], "stddev": [ - 4761 + 4765 ], "stddev_pop": [ - 4762 + 4766 ], "stddev_samp": [ - 4763 + 4767 ], "sum": [ - 4766 + 4770 ], "var_pop": [ - 4767 + 4771 ], "var_samp": [ - 4768 + 4772 ], "variance": [ - 4769 + 4773 ], "__typename": [ 78 @@ -111155,13 +111101,13 @@ export default { }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 4756 + 4760 ], "_not": [ - 4756 + 4760 ], "_or": [ - 4756 + 4760 ], "attacker_id": [ 182 @@ -111170,10 +111116,10 @@ export default { 182 ], "nemsis": [ - 3443 + 3447 ], "player": [ - 3443 + 3447 ], "victim_id": [ 182 @@ -111212,19 +111158,19 @@ export default { }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 2481 + 2485 ], "kill_count": [ - 2481 + 2485 ], "nemsis": [ - 3452 + 3456 ], "player": [ - 3452 + 3456 ], "victim_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -111275,7 +111221,7 @@ export default { }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 4765 + 4769 ], "ordering": [ 236 @@ -111359,7 +111305,7 @@ export default { 180 ], "player": [ - 3439 + 3443 ], "player_steam_id": [ 180 @@ -111376,10 +111322,10 @@ export default { }, "v_player_damage_aggregate": { "aggregate": [ - 4772 + 4776 ], "nodes": [ - 4770 + 4774 ], "__typename": [ 78 @@ -111387,13 +111333,13 @@ export default { }, "v_player_damage_aggregate_fields": { "avg": [ - 4773 + 4777 ], "count": [ 38, { "columns": [ - 4778, + 4782, "[v_player_damage_select_column!]" ], "distinct": [ @@ -111402,31 +111348,31 @@ export default { } ], "max": [ - 4775 + 4779 ], "min": [ - 4776 + 4780 ], "stddev": [ - 4779 + 4783 ], "stddev_pop": [ - 4780 + 4784 ], "stddev_samp": [ - 4781 + 4785 ], "sum": [ - 4784 + 4788 ], "var_pop": [ - 4785 + 4789 ], "var_samp": [ - 4786 + 4790 ], "variance": [ - 4787 + 4791 ], "__typename": [ 78 @@ -111451,19 +111397,19 @@ export default { }, "v_player_damage_bool_exp": { "_and": [ - 4774 + 4778 ], "_not": [ - 4774 + 4778 ], "_or": [ - 4774 + 4778 ], "avg_damage_per_round": [ 182 ], "player": [ - 3443 + 3447 ], "player_steam_id": [ 182 @@ -111514,19 +111460,19 @@ export default { }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "player_steam_id": [ - 2481 + 2485 ], "total_damage": [ - 2481 + 2485 ], "total_rounds": [ - 2481 + 2485 ], "__typename": [ 78 @@ -111586,7 +111532,7 @@ export default { }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 4783 + 4787 ], "ordering": [ 236 @@ -111724,13 +111670,13 @@ export default { 38 ], "match": [ - 2296 + 2300 ], "match_created_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_result": [ 78 @@ -111751,7 +111697,7 @@ export default { 1200 ], "season_id": [ - 4462 + 4466 ], "series_multiplier": [ 38 @@ -111771,10 +111717,10 @@ export default { }, "v_player_elo_aggregate": { "aggregate": [ - 4802 + 4806 ], "nodes": [ - 4788 + 4792 ], "__typename": [ 78 @@ -111782,31 +111728,31 @@ export default { }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 4791 + 4795 ], "corr": [ - 4792 + 4796 ], "count": [ - 4794 + 4798 ], "covar_samp": [ - 4795 + 4799 ], "max": [ - 4797 + 4801 ], "min": [ - 4798 + 4802 ], "stddev_samp": [ - 4799 + 4803 ], "sum": [ - 4800 + 4804 ], "var_samp": [ - 4801 + 4805 ], "__typename": [ 78 @@ -111814,13 +111760,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 4815 + 4819 ], "distinct": [ 3 ], "filter": [ - 4807 + 4811 ], "predicate": [ 1201 @@ -111831,13 +111777,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 4793 + 4797 ], "distinct": [ 3 ], "filter": [ - 4807 + 4811 ], "predicate": [ 1201 @@ -111848,10 +111794,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 4816 + 4820 ], "Y": [ - 4816 + 4820 ], "__typename": [ 78 @@ -111859,13 +111805,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 4814 + 4818 ], "distinct": [ 3 ], "filter": [ - 4807 + 4811 ], "predicate": [ 39 @@ -111876,13 +111822,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 4796 + 4800 ], "distinct": [ 3 ], "filter": [ - 4807 + 4811 ], "predicate": [ 1201 @@ -111893,10 +111839,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4817 + 4821 ], "Y": [ - 4817 + 4821 ], "__typename": [ 78 @@ -111904,13 +111850,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 4818 + 4822 ], "distinct": [ 3 ], "filter": [ - 4807 + 4811 ], "predicate": [ 1201 @@ -111921,13 +111867,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 4819 + 4823 ], "distinct": [ 3 ], "filter": [ - 4807 + 4811 ], "predicate": [ 1201 @@ -111938,13 +111884,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4820 + 4824 ], "distinct": [ 3 ], "filter": [ - 4807 + 4811 ], "predicate": [ 1201 @@ -111955,13 +111901,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 4821 + 4825 ], "distinct": [ 3 ], "filter": [ - 4807 + 4811 ], "predicate": [ 1201 @@ -111972,13 +111918,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 4822 + 4826 ], "distinct": [ 3 ], "filter": [ - 4807 + 4811 ], "predicate": [ 1201 @@ -111989,13 +111935,13 @@ export default { }, "v_player_elo_aggregate_fields": { "avg": [ - 4805 + 4809 ], "count": [ 38, { "columns": [ - 4814, + 4818, "[v_player_elo_select_column!]" ], "distinct": [ @@ -112004,31 +111950,31 @@ export default { } ], "max": [ - 4809 + 4813 ], "min": [ - 4811 + 4815 ], "stddev": [ - 4823 + 4827 ], "stddev_pop": [ - 4825 + 4829 ], "stddev_samp": [ - 4827 + 4831 ], "sum": [ - 4831 + 4835 ], "var_pop": [ - 4833 + 4837 ], "var_samp": [ - 4835 + 4839 ], "variance": [ - 4837 + 4841 ], "__typename": [ 78 @@ -112036,37 +111982,37 @@ export default { }, "v_player_elo_aggregate_order_by": { "avg": [ - 4806 + 4810 ], "count": [ - 2481 + 2485 ], "max": [ - 4810 + 4814 ], "min": [ - 4812 + 4816 ], "stddev": [ - 4824 + 4828 ], "stddev_pop": [ - 4826 + 4830 ], "stddev_samp": [ - 4828 + 4832 ], "sum": [ - 4832 + 4836 ], "var_pop": [ - 4834 + 4838 ], "var_samp": [ - 4836 + 4840 ], "variance": [ - 4838 + 4842 ], "__typename": [ 78 @@ -112074,7 +112020,7 @@ export default { }, "v_player_elo_arr_rel_insert_input": { "data": [ - 4808 + 4812 ], "__typename": [ 78 @@ -112150,67 +112096,67 @@ export default { }, "v_player_elo_avg_order_by": { "actual_score": [ - 2481 + 2485 ], "assists": [ - 2481 + 2485 ], "current_elo": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_percent": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "elo_change": [ - 2481 + 2485 ], "expected_score": [ - 2481 + 2485 ], "impact": [ - 2481 + 2485 ], "k_factor": [ - 2481 + 2485 ], "kda": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "map_losses": [ - 2481 + 2485 ], "map_wins": [ - 2481 + 2485 ], "opponent_team_elo_avg": [ - 2481 + 2485 ], "performance_multiplier": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "player_team_elo_avg": [ - 2481 + 2485 ], "series_multiplier": [ - 2481 + 2485 ], "team_avg_kda": [ - 2481 + 2485 ], "updated_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -112218,13 +112164,13 @@ export default { }, "v_player_elo_bool_exp": { "_and": [ - 4807 + 4811 ], "_not": [ - 4807 + 4811 ], "_or": [ - 4807 + 4811 ], "actual_score": [ 1201 @@ -112269,13 +112215,13 @@ export default { 39 ], "match": [ - 2305 + 2309 ], "match_created_at": [ - 4025 + 4029 ], "match_id": [ - 4464 + 4468 ], "match_result": [ 80 @@ -112296,7 +112242,7 @@ export default { 1201 ], "season_id": [ - 4464 + 4468 ], "series_multiplier": [ 39 @@ -112358,13 +112304,13 @@ export default { 38 ], "match": [ - 2314 + 2318 ], "match_created_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_result": [ 78 @@ -112385,7 +112331,7 @@ export default { 1200 ], "season_id": [ - 4462 + 4466 ], "series_multiplier": [ 38 @@ -112447,10 +112393,10 @@ export default { 38 ], "match_created_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_result": [ 78 @@ -112471,7 +112417,7 @@ export default { 1200 ], "season_id": [ - 4462 + 4466 ], "series_multiplier": [ 38 @@ -112491,85 +112437,85 @@ export default { }, "v_player_elo_max_order_by": { "actual_score": [ - 2481 + 2485 ], "assists": [ - 2481 + 2485 ], "current_elo": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_percent": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "elo_change": [ - 2481 + 2485 ], "expected_score": [ - 2481 + 2485 ], "impact": [ - 2481 + 2485 ], "k_factor": [ - 2481 + 2485 ], "kda": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "map_losses": [ - 2481 + 2485 ], "map_wins": [ - 2481 + 2485 ], "match_created_at": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_result": [ - 2481 + 2485 ], "opponent_team_elo_avg": [ - 2481 + 2485 ], "performance_multiplier": [ - 2481 + 2485 ], "player_name": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "player_team_elo_avg": [ - 2481 + 2485 ], "season_id": [ - 2481 + 2485 ], "series_multiplier": [ - 2481 + 2485 ], "team_avg_kda": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "updated_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -112619,10 +112565,10 @@ export default { 38 ], "match_created_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_result": [ 78 @@ -112643,7 +112589,7 @@ export default { 1200 ], "season_id": [ - 4462 + 4466 ], "series_multiplier": [ 38 @@ -112663,85 +112609,85 @@ export default { }, "v_player_elo_min_order_by": { "actual_score": [ - 2481 + 2485 ], "assists": [ - 2481 + 2485 ], "current_elo": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_percent": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "elo_change": [ - 2481 + 2485 ], "expected_score": [ - 2481 + 2485 ], "impact": [ - 2481 + 2485 ], "k_factor": [ - 2481 + 2485 ], "kda": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "map_losses": [ - 2481 + 2485 ], "map_wins": [ - 2481 + 2485 ], "match_created_at": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_result": [ - 2481 + 2485 ], "opponent_team_elo_avg": [ - 2481 + 2485 ], "performance_multiplier": [ - 2481 + 2485 ], "player_name": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "player_team_elo_avg": [ - 2481 + 2485 ], "season_id": [ - 2481 + 2485 ], "series_multiplier": [ - 2481 + 2485 ], "team_avg_kda": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "updated_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -112749,88 +112695,88 @@ export default { }, "v_player_elo_order_by": { "actual_score": [ - 2481 + 2485 ], "assists": [ - 2481 + 2485 ], "current_elo": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_percent": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "elo_change": [ - 2481 + 2485 ], "expected_score": [ - 2481 + 2485 ], "impact": [ - 2481 + 2485 ], "k_factor": [ - 2481 + 2485 ], "kda": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "map_losses": [ - 2481 + 2485 ], "map_wins": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_created_at": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_result": [ - 2481 + 2485 ], "opponent_team_elo_avg": [ - 2481 + 2485 ], "performance_multiplier": [ - 2481 + 2485 ], "player_name": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "player_team_elo_avg": [ - 2481 + 2485 ], "season_id": [ - 2481 + 2485 ], "series_multiplier": [ - 2481 + 2485 ], "team_avg_kda": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "updated_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -112915,67 +112861,67 @@ export default { }, "v_player_elo_stddev_order_by": { "actual_score": [ - 2481 + 2485 ], "assists": [ - 2481 + 2485 ], "current_elo": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_percent": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "elo_change": [ - 2481 + 2485 ], "expected_score": [ - 2481 + 2485 ], "impact": [ - 2481 + 2485 ], "k_factor": [ - 2481 + 2485 ], "kda": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "map_losses": [ - 2481 + 2485 ], "map_wins": [ - 2481 + 2485 ], "opponent_team_elo_avg": [ - 2481 + 2485 ], "performance_multiplier": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "player_team_elo_avg": [ - 2481 + 2485 ], "series_multiplier": [ - 2481 + 2485 ], "team_avg_kda": [ - 2481 + 2485 ], "updated_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -113051,67 +112997,67 @@ export default { }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 2481 + 2485 ], "assists": [ - 2481 + 2485 ], "current_elo": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_percent": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "elo_change": [ - 2481 + 2485 ], "expected_score": [ - 2481 + 2485 ], "impact": [ - 2481 + 2485 ], "k_factor": [ - 2481 + 2485 ], "kda": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "map_losses": [ - 2481 + 2485 ], "map_wins": [ - 2481 + 2485 ], "opponent_team_elo_avg": [ - 2481 + 2485 ], "performance_multiplier": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "player_team_elo_avg": [ - 2481 + 2485 ], "series_multiplier": [ - 2481 + 2485 ], "team_avg_kda": [ - 2481 + 2485 ], "updated_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -113187,67 +113133,67 @@ export default { }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 2481 + 2485 ], "assists": [ - 2481 + 2485 ], "current_elo": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_percent": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "elo_change": [ - 2481 + 2485 ], "expected_score": [ - 2481 + 2485 ], "impact": [ - 2481 + 2485 ], "k_factor": [ - 2481 + 2485 ], "kda": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "map_losses": [ - 2481 + 2485 ], "map_wins": [ - 2481 + 2485 ], "opponent_team_elo_avg": [ - 2481 + 2485 ], "performance_multiplier": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "player_team_elo_avg": [ - 2481 + 2485 ], "series_multiplier": [ - 2481 + 2485 ], "team_avg_kda": [ - 2481 + 2485 ], "updated_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -113255,7 +113201,7 @@ export default { }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 4830 + 4834 ], "ordering": [ 236 @@ -113308,10 +113254,10 @@ export default { 38 ], "match_created_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_result": [ 78 @@ -113332,7 +113278,7 @@ export default { 1200 ], "season_id": [ - 4462 + 4466 ], "series_multiplier": [ 38 @@ -113420,67 +113366,67 @@ export default { }, "v_player_elo_sum_order_by": { "actual_score": [ - 2481 + 2485 ], "assists": [ - 2481 + 2485 ], "current_elo": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_percent": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "elo_change": [ - 2481 + 2485 ], "expected_score": [ - 2481 + 2485 ], "impact": [ - 2481 + 2485 ], "k_factor": [ - 2481 + 2485 ], "kda": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "map_losses": [ - 2481 + 2485 ], "map_wins": [ - 2481 + 2485 ], "opponent_team_elo_avg": [ - 2481 + 2485 ], "performance_multiplier": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "player_team_elo_avg": [ - 2481 + 2485 ], "series_multiplier": [ - 2481 + 2485 ], "team_avg_kda": [ - 2481 + 2485 ], "updated_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -113556,67 +113502,67 @@ export default { }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 2481 + 2485 ], "assists": [ - 2481 + 2485 ], "current_elo": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_percent": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "elo_change": [ - 2481 + 2485 ], "expected_score": [ - 2481 + 2485 ], "impact": [ - 2481 + 2485 ], "k_factor": [ - 2481 + 2485 ], "kda": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "map_losses": [ - 2481 + 2485 ], "map_wins": [ - 2481 + 2485 ], "opponent_team_elo_avg": [ - 2481 + 2485 ], "performance_multiplier": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "player_team_elo_avg": [ - 2481 + 2485 ], "series_multiplier": [ - 2481 + 2485 ], "team_avg_kda": [ - 2481 + 2485 ], "updated_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -113692,67 +113638,67 @@ export default { }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 2481 + 2485 ], "assists": [ - 2481 + 2485 ], "current_elo": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_percent": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "elo_change": [ - 2481 + 2485 ], "expected_score": [ - 2481 + 2485 ], "impact": [ - 2481 + 2485 ], "k_factor": [ - 2481 + 2485 ], "kda": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "map_losses": [ - 2481 + 2485 ], "map_wins": [ - 2481 + 2485 ], "opponent_team_elo_avg": [ - 2481 + 2485 ], "performance_multiplier": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "player_team_elo_avg": [ - 2481 + 2485 ], "series_multiplier": [ - 2481 + 2485 ], "team_avg_kda": [ - 2481 + 2485 ], "updated_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -113828,67 +113774,67 @@ export default { }, "v_player_elo_variance_order_by": { "actual_score": [ - 2481 + 2485 ], "assists": [ - 2481 + 2485 ], "current_elo": [ - 2481 + 2485 ], "damage": [ - 2481 + 2485 ], "damage_percent": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "elo_change": [ - 2481 + 2485 ], "expected_score": [ - 2481 + 2485 ], "impact": [ - 2481 + 2485 ], "k_factor": [ - 2481 + 2485 ], "kda": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "map_losses": [ - 2481 + 2485 ], "map_wins": [ - 2481 + 2485 ], "opponent_team_elo_avg": [ - 2481 + 2485 ], "performance_multiplier": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "player_team_elo_avg": [ - 2481 + 2485 ], "series_multiplier": [ - 2481 + 2485 ], "team_avg_kda": [ - 2481 + 2485 ], "updated_elo": [ - 2481 + 2485 ], "__typename": [ 78 @@ -113899,16 +113845,16 @@ export default { 1814 ], "map_id": [ - 4462 + 4466 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "started_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -113919,10 +113865,10 @@ export default { }, "v_player_map_losses_aggregate": { "aggregate": [ - 4841 + 4845 ], "nodes": [ - 4839 + 4843 ], "__typename": [ 78 @@ -113930,13 +113876,13 @@ export default { }, "v_player_map_losses_aggregate_fields": { "avg": [ - 4842 + 4846 ], "count": [ 38, { "columns": [ - 4847, + 4851, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -113945,31 +113891,31 @@ export default { } ], "max": [ - 4844 + 4848 ], "min": [ - 4845 + 4849 ], "stddev": [ - 4848 + 4852 ], "stddev_pop": [ - 4849 + 4853 ], "stddev_samp": [ - 4850 + 4854 ], "sum": [ - 4853 + 4857 ], "var_pop": [ - 4854 + 4858 ], "var_samp": [ - 4855 + 4859 ], "variance": [ - 4856 + 4860 ], "__typename": [ 78 @@ -113985,28 +113931,28 @@ export default { }, "v_player_map_losses_bool_exp": { "_and": [ - 4843 + 4847 ], "_not": [ - 4843 + 4847 ], "_or": [ - 4843 + 4847 ], "map": [ 1823 ], "map_id": [ - 4464 + 4468 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "started_at": [ - 4025 + 4029 ], "steam_id": [ 182 @@ -114017,13 +113963,13 @@ export default { }, "v_player_map_losses_max_fields": { "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "started_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -114034,13 +113980,13 @@ export default { }, "v_player_map_losses_min_fields": { "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "started_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -114054,19 +114000,19 @@ export default { 1833 ], "map_id": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "started_at": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -114099,7 +114045,7 @@ export default { }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 4852 + 4856 ], "ordering": [ 236 @@ -114110,13 +114056,13 @@ export default { }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "started_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -114162,16 +114108,16 @@ export default { 1814 ], "map_id": [ - 4462 + 4466 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "started_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -114182,10 +114128,10 @@ export default { }, "v_player_map_wins_aggregate": { "aggregate": [ - 4859 + 4863 ], "nodes": [ - 4857 + 4861 ], "__typename": [ 78 @@ -114193,13 +114139,13 @@ export default { }, "v_player_map_wins_aggregate_fields": { "avg": [ - 4860 + 4864 ], "count": [ 38, { "columns": [ - 4865, + 4869, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -114208,31 +114154,31 @@ export default { } ], "max": [ - 4862 + 4866 ], "min": [ - 4863 + 4867 ], "stddev": [ - 4866 + 4870 ], "stddev_pop": [ - 4867 + 4871 ], "stddev_samp": [ - 4868 + 4872 ], "sum": [ - 4871 + 4875 ], "var_pop": [ - 4872 + 4876 ], "var_samp": [ - 4873 + 4877 ], "variance": [ - 4874 + 4878 ], "__typename": [ 78 @@ -114248,28 +114194,28 @@ export default { }, "v_player_map_wins_bool_exp": { "_and": [ - 4861 + 4865 ], "_not": [ - 4861 + 4865 ], "_or": [ - 4861 + 4865 ], "map": [ 1823 ], "map_id": [ - 4464 + 4468 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "started_at": [ - 4025 + 4029 ], "steam_id": [ 182 @@ -114280,13 +114226,13 @@ export default { }, "v_player_map_wins_max_fields": { "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "started_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -114297,13 +114243,13 @@ export default { }, "v_player_map_wins_min_fields": { "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "started_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -114317,19 +114263,19 @@ export default { 1833 ], "map_id": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "started_at": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -114362,7 +114308,7 @@ export default { }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 4870 + 4874 ], "ordering": [ 236 @@ -114373,13 +114319,13 @@ export default { }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "started_at": [ - 4024 + 4028 ], "steam_id": [ 180 @@ -114422,13 +114368,13 @@ export default { }, "v_player_match_head_to_head": { "attacked": [ - 3439 + 3443 ], "attacked_steam_id": [ 180 ], "attacker": [ - 3439 + 3443 ], "attacker_steam_id": [ 180 @@ -114449,10 +114395,10 @@ export default { 180 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -114460,10 +114406,10 @@ export default { }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 4877 + 4881 ], "nodes": [ - 4875 + 4879 ], "__typename": [ 78 @@ -114471,13 +114417,13 @@ export default { }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 4878 + 4882 ], "count": [ 38, { "columns": [ - 4883, + 4887, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -114486,31 +114432,31 @@ export default { } ], "max": [ - 4880 + 4884 ], "min": [ - 4881 + 4885 ], "stddev": [ - 4884 + 4888 ], "stddev_pop": [ - 4885 + 4889 ], "stddev_samp": [ - 4886 + 4890 ], "sum": [ - 4889 + 4893 ], "var_pop": [ - 4890 + 4894 ], "var_samp": [ - 4891 + 4895 ], "variance": [ - 4892 + 4896 ], "__typename": [ 78 @@ -114544,22 +114490,22 @@ export default { }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 4879 + 4883 ], "_not": [ - 4879 + 4883 ], "_or": [ - 4879 + 4883 ], "attacked": [ - 3443 + 3447 ], "attacked_steam_id": [ 182 ], "attacker": [ - 3443 + 3447 ], "attacker_steam_id": [ 182 @@ -114580,10 +114526,10 @@ export default { 182 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -114612,7 +114558,7 @@ export default { 180 ], "match_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -114641,7 +114587,7 @@ export default { 180 ], "match_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -114649,37 +114595,37 @@ export default { }, "v_player_match_head_to_head_order_by": { "attacked": [ - 3452 + 3456 ], "attacked_steam_id": [ - 2481 + 2485 ], "attacker": [ - 3452 + 3456 ], "attacker_steam_id": [ - 2481 + 2485 ], "damage_dealt": [ - 2481 + 2485 ], "flash_count": [ - 2481 + 2485 ], "headshot_kills": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -114766,7 +114712,7 @@ export default { }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 4888 + 4892 ], "ordering": [ 236 @@ -114798,7 +114744,7 @@ export default { 180 ], "match_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -114910,37 +114856,37 @@ export default { }, "v_player_match_map_hltv": { "adr": [ - 2479 + 2483 ], "apr": [ - 2479 + 2483 ], "dpr": [ - 2479 + 2483 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kpr": [ - 2479 + 2483 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3439 + 3443 ], "rounds_played": [ 38 @@ -114954,10 +114900,10 @@ export default { }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 4897 + 4901 ], "nodes": [ - 4893 + 4897 ], "__typename": [ 78 @@ -114965,7 +114911,7 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 4896 + 4900 ], "__typename": [ 78 @@ -114973,13 +114919,13 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 4911 + 4915 ], "distinct": [ 3 ], "filter": [ - 4902 + 4906 ], "predicate": [ 39 @@ -114990,13 +114936,13 @@ export default { }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 4900 + 4904 ], "count": [ 38, { "columns": [ - 4911, + 4915, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -115005,31 +114951,31 @@ export default { } ], "max": [ - 4905 + 4909 ], "min": [ - 4907 + 4911 ], "stddev": [ - 4913 + 4917 ], "stddev_pop": [ - 4915 + 4919 ], "stddev_samp": [ - 4917 + 4921 ], "sum": [ - 4921 + 4925 ], "var_pop": [ - 4924 + 4928 ], "var_samp": [ - 4926 + 4930 ], "variance": [ - 4928 + 4932 ], "__typename": [ 78 @@ -115037,37 +114983,37 @@ export default { }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 4901 + 4905 ], "count": [ - 2481 + 2485 ], "max": [ - 4906 + 4910 ], "min": [ - 4908 + 4912 ], "stddev": [ - 4914 + 4918 ], "stddev_pop": [ - 4916 + 4920 ], "stddev_samp": [ - 4918 + 4922 ], "sum": [ - 4922 + 4926 ], "var_pop": [ - 4925 + 4929 ], "var_samp": [ - 4927 + 4931 ], "variance": [ - 4929 + 4933 ], "__typename": [ 78 @@ -115075,7 +115021,7 @@ export default { }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 4904 + 4908 ], "__typename": [ 78 @@ -115112,28 +115058,28 @@ export default { }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 2481 + 2485 ], "apr": [ - 2481 + 2485 ], "dpr": [ - 2481 + 2485 ], "hltv_rating": [ - 2481 + 2485 ], "kast_pct": [ - 2481 + 2485 ], "kpr": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -115141,46 +115087,46 @@ export default { }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 4902 + 4906 ], "_not": [ - 4902 + 4906 ], "_or": [ - 4902 + 4906 ], "adr": [ - 2480 + 2484 ], "apr": [ - 2480 + 2484 ], "dpr": [ - 2480 + 2484 ], "hltv_rating": [ - 2480 + 2484 ], "kast_pct": [ - 2480 + 2484 ], "kpr": [ - 2480 + 2484 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "player": [ - 3443 + 3447 ], "rounds_played": [ 39 @@ -115194,22 +115140,22 @@ export default { }, "v_player_match_map_hltv_inc_input": { "adr": [ - 2479 + 2483 ], "apr": [ - 2479 + 2483 ], "dpr": [ - 2479 + 2483 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kpr": [ - 2479 + 2483 ], "rounds_played": [ 38 @@ -115223,37 +115169,37 @@ export default { }, "v_player_match_map_hltv_insert_input": { "adr": [ - 2479 + 2483 ], "apr": [ - 2479 + 2483 ], "dpr": [ - 2479 + 2483 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kpr": [ - 2479 + 2483 ], "match": [ - 2314 + 2318 ], "match_id": [ - 4462 + 4466 ], "match_map": [ - 2152 + 2154 ], "match_map_id": [ - 4462 + 4466 ], "player": [ - 3450 + 3454 ], "rounds_played": [ 38 @@ -115267,28 +115213,28 @@ export default { }, "v_player_match_map_hltv_max_fields": { "adr": [ - 2479 + 2483 ], "apr": [ - 2479 + 2483 ], "dpr": [ - 2479 + 2483 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kpr": [ - 2479 + 2483 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "rounds_played": [ 38 @@ -115302,34 +115248,34 @@ export default { }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 2481 + 2485 ], "apr": [ - 2481 + 2485 ], "dpr": [ - 2481 + 2485 ], "hltv_rating": [ - 2481 + 2485 ], "kast_pct": [ - 2481 + 2485 ], "kpr": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -115337,28 +115283,28 @@ export default { }, "v_player_match_map_hltv_min_fields": { "adr": [ - 2479 + 2483 ], "apr": [ - 2479 + 2483 ], "dpr": [ - 2479 + 2483 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kpr": [ - 2479 + 2483 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "rounds_played": [ 38 @@ -115372,34 +115318,34 @@ export default { }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 2481 + 2485 ], "apr": [ - 2481 + 2485 ], "dpr": [ - 2481 + 2485 ], "hltv_rating": [ - 2481 + 2485 ], "kast_pct": [ - 2481 + 2485 ], "kpr": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_map_id": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -115410,7 +115356,7 @@ export default { 38 ], "returning": [ - 4893 + 4897 ], "__typename": [ 78 @@ -115418,43 +115364,43 @@ export default { }, "v_player_match_map_hltv_order_by": { "adr": [ - 2481 + 2485 ], "apr": [ - 2481 + 2485 ], "dpr": [ - 2481 + 2485 ], "hltv_rating": [ - 2481 + 2485 ], "kast_pct": [ - 2481 + 2485 ], "kpr": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "rounds_played": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -115463,28 +115409,28 @@ export default { "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 2479 + 2483 ], "apr": [ - 2479 + 2483 ], "dpr": [ - 2479 + 2483 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kpr": [ - 2479 + 2483 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "rounds_played": [ 38 @@ -115527,28 +115473,28 @@ export default { }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 2481 + 2485 ], "apr": [ - 2481 + 2485 ], "dpr": [ - 2481 + 2485 ], "hltv_rating": [ - 2481 + 2485 ], "kast_pct": [ - 2481 + 2485 ], "kpr": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -115585,28 +115531,28 @@ export default { }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 2481 + 2485 ], "apr": [ - 2481 + 2485 ], "dpr": [ - 2481 + 2485 ], "hltv_rating": [ - 2481 + 2485 ], "kast_pct": [ - 2481 + 2485 ], "kpr": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -115643,28 +115589,28 @@ export default { }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 2481 + 2485 ], "apr": [ - 2481 + 2485 ], "dpr": [ - 2481 + 2485 ], "hltv_rating": [ - 2481 + 2485 ], "kast_pct": [ - 2481 + 2485 ], "kpr": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -115672,7 +115618,7 @@ export default { }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 4920 + 4924 ], "ordering": [ 236 @@ -115683,28 +115629,28 @@ export default { }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 2479 + 2483 ], "apr": [ - 2479 + 2483 ], "dpr": [ - 2479 + 2483 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kpr": [ - 2479 + 2483 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "rounds_played": [ 38 @@ -115718,22 +115664,22 @@ export default { }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 2479 + 2483 ], "apr": [ - 2479 + 2483 ], "dpr": [ - 2479 + 2483 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kpr": [ - 2479 + 2483 ], "rounds_played": [ 38 @@ -115747,28 +115693,28 @@ export default { }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 2481 + 2485 ], "apr": [ - 2481 + 2485 ], "dpr": [ - 2481 + 2485 ], "hltv_rating": [ - 2481 + 2485 ], "kast_pct": [ - 2481 + 2485 ], "kpr": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -115776,13 +115722,13 @@ export default { }, "v_player_match_map_hltv_updates": { "_inc": [ - 4903 + 4907 ], "_set": [ - 4912 + 4916 ], "where": [ - 4902 + 4906 ], "__typename": [ 78 @@ -115819,28 +115765,28 @@ export default { }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 2481 + 2485 ], "apr": [ - 2481 + 2485 ], "dpr": [ - 2481 + 2485 ], "hltv_rating": [ - 2481 + 2485 ], "kast_pct": [ - 2481 + 2485 ], "kpr": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -115877,28 +115823,28 @@ export default { }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 2481 + 2485 ], "apr": [ - 2481 + 2485 ], "dpr": [ - 2481 + 2485 ], "hltv_rating": [ - 2481 + 2485 ], "kast_pct": [ - 2481 + 2485 ], "kpr": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -115935,28 +115881,28 @@ export default { }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 2481 + 2485 ], "apr": [ - 2481 + 2485 ], "dpr": [ - 2481 + 2485 ], "hltv_rating": [ - 2481 + 2485 ], "kast_pct": [ - 2481 + 2485 ], "kpr": [ - 2481 + 2485 ], "rounds_played": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -115964,52 +115910,52 @@ export default { }, "v_player_match_map_roles": { "adr": [ - 2479 + 2483 ], "awp_kills": [ 38 ], "awp_share": [ - 2479 + 2483 ], "deaths": [ 38 ], "dpr": [ - 2479 + 2483 ], "entry_rate": [ - 2479 + 2483 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kills": [ 38 ], "kpr": [ - 2479 + 2483 ], "lineup_id": [ - 4462 + 4466 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "match_map": [ 2134 ], "match_map_id": [ - 4462 + 4466 ], "open_deaths": [ 38 @@ -116021,7 +115967,7 @@ export default { 38 ], "player": [ - 3439 + 3443 ], "role": [ 78 @@ -116033,7 +115979,7 @@ export default { 180 ], "support_idx": [ - 2479 + 2483 ], "total_kills": [ 38 @@ -116053,10 +115999,10 @@ export default { }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 4932 + 4936 ], "nodes": [ - 4930 + 4934 ], "__typename": [ 78 @@ -116064,13 +116010,13 @@ export default { }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 4933 + 4937 ], "count": [ 38, { "columns": [ - 4938, + 4942, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -116079,31 +116025,31 @@ export default { } ], "max": [ - 4935 + 4939 ], "min": [ - 4936 + 4940 ], "stddev": [ - 4939 + 4943 ], "stddev_pop": [ - 4940 + 4944 ], "stddev_samp": [ - 4941 + 4945 ], "sum": [ - 4944 + 4948 ], "var_pop": [ - 4945 + 4949 ], "var_samp": [ - 4946 + 4950 ], "variance": [ - 4947 + 4951 ], "__typename": [ 78 @@ -116179,61 +116125,61 @@ export default { }, "v_player_match_map_roles_bool_exp": { "_and": [ - 4934 + 4938 ], "_not": [ - 4934 + 4938 ], "_or": [ - 4934 + 4938 ], "adr": [ - 2480 + 2484 ], "awp_kills": [ 39 ], "awp_share": [ - 2480 + 2484 ], "deaths": [ 39 ], "dpr": [ - 2480 + 2484 ], "entry_rate": [ - 2480 + 2484 ], "flash_assists": [ 39 ], "hltv_rating": [ - 2480 + 2484 ], "kast_pct": [ - 2480 + 2484 ], "kills": [ 39 ], "kpr": [ - 2480 + 2484 ], "lineup_id": [ - 4464 + 4468 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "match_map": [ - 2143 + 2145 ], "match_map_id": [ - 4464 + 4468 ], "open_deaths": [ 39 @@ -116245,7 +116191,7 @@ export default { 39 ], "player": [ - 3443 + 3447 ], "role": [ 80 @@ -116257,7 +116203,7 @@ export default { 182 ], "support_idx": [ - 2480 + 2484 ], "total_kills": [ 39 @@ -116277,46 +116223,46 @@ export default { }, "v_player_match_map_roles_max_fields": { "adr": [ - 2479 + 2483 ], "awp_kills": [ 38 ], "awp_share": [ - 2479 + 2483 ], "deaths": [ 38 ], "dpr": [ - 2479 + 2483 ], "entry_rate": [ - 2479 + 2483 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kills": [ 38 ], "kpr": [ - 2479 + 2483 ], "lineup_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "open_deaths": [ 38 @@ -116337,7 +116283,7 @@ export default { 180 ], "support_idx": [ - 2479 + 2483 ], "total_kills": [ 38 @@ -116357,46 +116303,46 @@ export default { }, "v_player_match_map_roles_min_fields": { "adr": [ - 2479 + 2483 ], "awp_kills": [ 38 ], "awp_share": [ - 2479 + 2483 ], "deaths": [ 38 ], "dpr": [ - 2479 + 2483 ], "entry_rate": [ - 2479 + 2483 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kills": [ 38 ], "kpr": [ - 2479 + 2483 ], "lineup_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "open_deaths": [ 38 @@ -116417,7 +116363,7 @@ export default { 180 ], "support_idx": [ - 2479 + 2483 ], "total_kills": [ 38 @@ -116437,88 +116383,88 @@ export default { }, "v_player_match_map_roles_order_by": { "adr": [ - 2481 + 2485 ], "awp_kills": [ - 2481 + 2485 ], "awp_share": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "dpr": [ - 2481 + 2485 ], "entry_rate": [ - 2481 + 2485 ], "flash_assists": [ - 2481 + 2485 ], "hltv_rating": [ - 2481 + 2485 ], "kast_pct": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "kpr": [ - 2481 + 2485 ], "lineup_id": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "match_map": [ - 2154 + 2156 ], "match_map_id": [ - 2481 + 2485 ], "open_deaths": [ - 2481 + 2485 ], "open_kills": [ - 2481 + 2485 ], "opening_attempts": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "role": [ - 2481 + 2485 ], "rounds": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "support_idx": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "trade_kill_successes": [ - 2481 + 2485 ], "traded_death_successes": [ - 2481 + 2485 ], "util_damage": [ - 2481 + 2485 ], "__typename": [ 78 @@ -116731,7 +116677,7 @@ export default { }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 4943 + 4947 ], "ordering": [ 236 @@ -116742,46 +116688,46 @@ export default { }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 2479 + 2483 ], "awp_kills": [ 38 ], "awp_share": [ - 2479 + 2483 ], "deaths": [ 38 ], "dpr": [ - 2479 + 2483 ], "entry_rate": [ - 2479 + 2483 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kills": [ 38 ], "kpr": [ - 2479 + 2483 ], "lineup_id": [ - 4462 + 4466 ], "match_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462 + 4466 ], "open_deaths": [ 38 @@ -116802,7 +116748,7 @@ export default { 180 ], "support_idx": [ - 2479 + 2483 ], "total_kills": [ 38 @@ -116822,37 +116768,37 @@ export default { }, "v_player_match_map_roles_sum_fields": { "adr": [ - 2479 + 2483 ], "awp_kills": [ 38 ], "awp_share": [ - 2479 + 2483 ], "deaths": [ 38 ], "dpr": [ - 2479 + 2483 ], "entry_rate": [ - 2479 + 2483 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kills": [ 38 ], "kpr": [ - 2479 + 2483 ], "open_deaths": [ 38 @@ -116870,7 +116816,7 @@ export default { 180 ], "support_idx": [ - 2479 + 2483 ], "total_kills": [ 38 @@ -117106,16 +117052,16 @@ export default { 1814 ], "map_id": [ - 4462 + 4466 ], "match": [ - 2296 + 2300 ], "match_created_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_result": [ 78 @@ -117135,10 +117081,10 @@ export default { }, "v_player_match_performance_aggregate": { "aggregate": [ - 4950 + 4954 ], "nodes": [ - 4948 + 4952 ], "__typename": [ 78 @@ -117146,13 +117092,13 @@ export default { }, "v_player_match_performance_aggregate_fields": { "avg": [ - 4951 + 4955 ], "count": [ 38, { "columns": [ - 4956, + 4960, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -117161,31 +117107,31 @@ export default { } ], "max": [ - 4953 + 4957 ], "min": [ - 4954 + 4958 ], "stddev": [ - 4957 + 4961 ], "stddev_pop": [ - 4958 + 4962 ], "stddev_samp": [ - 4959 + 4963 ], "sum": [ - 4962 + 4966 ], "var_pop": [ - 4963 + 4967 ], "var_samp": [ - 4964 + 4968 ], "variance": [ - 4965 + 4969 ], "__typename": [ 78 @@ -117210,13 +117156,13 @@ export default { }, "v_player_match_performance_bool_exp": { "_and": [ - 4952 + 4956 ], "_not": [ - 4952 + 4956 ], "_or": [ - 4952 + 4956 ], "assists": [ 39 @@ -117231,16 +117177,16 @@ export default { 1823 ], "map_id": [ - 4464 + 4468 ], "match": [ - 2305 + 2309 ], "match_created_at": [ - 4025 + 4029 ], "match_id": [ - 4464 + 4468 ], "match_result": [ 80 @@ -117269,13 +117215,13 @@ export default { 38 ], "map_id": [ - 4462 + 4466 ], "match_created_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_result": [ 78 @@ -117304,13 +117250,13 @@ export default { 38 ], "map_id": [ - 4462 + 4466 ], "match_created_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_result": [ 78 @@ -117330,40 +117276,40 @@ export default { }, "v_player_match_performance_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "map": [ 1833 ], "map_id": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_created_at": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "match_result": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "source": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "__typename": [ 78 @@ -117423,7 +117369,7 @@ export default { }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 4961 + 4965 ], "ordering": [ 236 @@ -117443,13 +117389,13 @@ export default { 38 ], "map_id": [ - 4462 + 4466 ], "match_created_at": [ - 4024 + 4028 ], "match_id": [ - 4462 + 4466 ], "match_result": [ 78 @@ -117537,28 +117483,28 @@ export default { }, "v_player_match_rating": { "adr": [ - 2479 + 2483 ], "dpr": [ - 2479 + 2483 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kpr": [ - 2479 + 2483 ], "match": [ - 2296 + 2300 ], "match_id": [ - 4462 + 4466 ], "player": [ - 3439 + 3443 ], "rounds_played": [ 38 @@ -117572,10 +117518,10 @@ export default { }, "v_player_match_rating_aggregate": { "aggregate": [ - 4968 + 4972 ], "nodes": [ - 4966 + 4970 ], "__typename": [ 78 @@ -117583,13 +117529,13 @@ export default { }, "v_player_match_rating_aggregate_fields": { "avg": [ - 4969 + 4973 ], "count": [ 38, { "columns": [ - 4974, + 4978, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -117598,31 +117544,31 @@ export default { } ], "max": [ - 4971 + 4975 ], "min": [ - 4972 + 4976 ], "stddev": [ - 4975 + 4979 ], "stddev_pop": [ - 4976 + 4980 ], "stddev_samp": [ - 4977 + 4981 ], "sum": [ - 4980 + 4984 ], "var_pop": [ - 4981 + 4985 ], "var_samp": [ - 4982 + 4986 ], "variance": [ - 4983 + 4987 ], "__typename": [ 78 @@ -117656,37 +117602,37 @@ export default { }, "v_player_match_rating_bool_exp": { "_and": [ - 4970 + 4974 ], "_not": [ - 4970 + 4974 ], "_or": [ - 4970 + 4974 ], "adr": [ - 2480 + 2484 ], "dpr": [ - 2480 + 2484 ], "hltv_rating": [ - 2480 + 2484 ], "kast_pct": [ - 2480 + 2484 ], "kpr": [ - 2480 + 2484 ], "match": [ - 2305 + 2309 ], "match_id": [ - 4464 + 4468 ], "player": [ - 3443 + 3447 ], "rounds_played": [ 39 @@ -117700,22 +117646,22 @@ export default { }, "v_player_match_rating_max_fields": { "adr": [ - 2479 + 2483 ], "dpr": [ - 2479 + 2483 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kpr": [ - 2479 + 2483 ], "match_id": [ - 4462 + 4466 ], "rounds_played": [ 38 @@ -117729,22 +117675,22 @@ export default { }, "v_player_match_rating_min_fields": { "adr": [ - 2479 + 2483 ], "dpr": [ - 2479 + 2483 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kpr": [ - 2479 + 2483 ], "match_id": [ - 4462 + 4466 ], "rounds_played": [ 38 @@ -117758,34 +117704,34 @@ export default { }, "v_player_match_rating_order_by": { "adr": [ - 2481 + 2485 ], "dpr": [ - 2481 + 2485 ], "hltv_rating": [ - 2481 + 2485 ], "kast_pct": [ - 2481 + 2485 ], "kpr": [ - 2481 + 2485 ], "match": [ - 2316 + 2320 ], "match_id": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "rounds_played": [ - 2481 + 2485 ], "steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -117872,7 +117818,7 @@ export default { }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 4979 + 4983 ], "ordering": [ 236 @@ -117883,22 +117829,22 @@ export default { }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 2479 + 2483 ], "dpr": [ - 2479 + 2483 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kpr": [ - 2479 + 2483 ], "match_id": [ - 4462 + 4466 ], "rounds_played": [ 38 @@ -117912,19 +117858,19 @@ export default { }, "v_player_match_rating_sum_fields": { "adr": [ - 2479 + 2483 ], "dpr": [ - 2479 + 2483 ], "hltv_rating": [ - 2479 + 2483 ], "kast_pct": [ - 2479 + 2483 ], "kpr": [ - 2479 + 2483 ], "rounds_played": [ 38 @@ -118022,7 +117968,7 @@ export default { 180 ], "match_id": [ - 4462 + 4466 ], "round": [ 38 @@ -118033,10 +117979,10 @@ export default { }, "v_player_multi_kills_aggregate": { "aggregate": [ - 4988 + 4992 ], "nodes": [ - 4984 + 4988 ], "__typename": [ 78 @@ -118044,7 +117990,7 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 4987 + 4991 ], "__typename": [ 78 @@ -118052,13 +117998,13 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5000 + 5004 ], "distinct": [ 3 ], "filter": [ - 4993 + 4997 ], "predicate": [ 39 @@ -118069,13 +118015,13 @@ export default { }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 4991 + 4995 ], "count": [ 38, { "columns": [ - 5000, + 5004, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -118084,31 +118030,31 @@ export default { } ], "max": [ - 4995 + 4999 ], "min": [ - 4997 + 5001 ], "stddev": [ - 5001 + 5005 ], "stddev_pop": [ - 5003 + 5007 ], "stddev_samp": [ - 5005 + 5009 ], "sum": [ - 5009 + 5013 ], "var_pop": [ - 5011 + 5015 ], "var_samp": [ - 5013 + 5017 ], "variance": [ - 5015 + 5019 ], "__typename": [ 78 @@ -118116,37 +118062,37 @@ export default { }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 4992 + 4996 ], "count": [ - 2481 + 2485 ], "max": [ - 4996 + 5000 ], "min": [ - 4998 + 5002 ], "stddev": [ - 5002 + 5006 ], "stddev_pop": [ - 5004 + 5008 ], "stddev_samp": [ - 5006 + 5010 ], "sum": [ - 5010 + 5014 ], "var_pop": [ - 5012 + 5016 ], "var_samp": [ - 5014 + 5018 ], "variance": [ - 5016 + 5020 ], "__typename": [ 78 @@ -118154,7 +118100,7 @@ export default { }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 4994 + 4998 ], "__typename": [ 78 @@ -118176,13 +118122,13 @@ export default { }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -118190,13 +118136,13 @@ export default { }, "v_player_multi_kills_bool_exp": { "_and": [ - 4993 + 4997 ], "_not": [ - 4993 + 4997 ], "_or": [ - 4993 + 4997 ], "attacker_steam_id": [ 182 @@ -118205,7 +118151,7 @@ export default { 182 ], "match_id": [ - 4464 + 4468 ], "round": [ 39 @@ -118222,7 +118168,7 @@ export default { 180 ], "match_id": [ - 4462 + 4466 ], "round": [ 38 @@ -118239,7 +118185,7 @@ export default { 180 ], "match_id": [ - 4462 + 4466 ], "round": [ 38 @@ -118250,16 +118196,16 @@ export default { }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -118273,7 +118219,7 @@ export default { 180 ], "match_id": [ - 4462 + 4466 ], "round": [ 38 @@ -118284,16 +118230,16 @@ export default { }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -118301,16 +118247,16 @@ export default { }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "match_id": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -118333,13 +118279,13 @@ export default { }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -118361,13 +118307,13 @@ export default { }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -118389,13 +118335,13 @@ export default { }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -118403,7 +118349,7 @@ export default { }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5008 + 5012 ], "ordering": [ 236 @@ -118420,7 +118366,7 @@ export default { 180 ], "match_id": [ - 4462 + 4466 ], "round": [ 38 @@ -118445,13 +118391,13 @@ export default { }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -118473,13 +118419,13 @@ export default { }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -118501,13 +118447,13 @@ export default { }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -118529,13 +118475,13 @@ export default { }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "round": [ - 2481 + 2485 ], "__typename": [ 78 @@ -118566,10 +118512,10 @@ export default { }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5019 + 5023 ], "nodes": [ - 5017 + 5021 ], "__typename": [ 78 @@ -118577,13 +118523,13 @@ export default { }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5020 + 5024 ], "count": [ 38, { "columns": [ - 5025, + 5029, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -118592,31 +118538,31 @@ export default { } ], "max": [ - 5022 + 5026 ], "min": [ - 5023 + 5027 ], "stddev": [ - 5026 + 5030 ], "stddev_pop": [ - 5027 + 5031 ], "stddev_samp": [ - 5028 + 5032 ], "sum": [ - 5031 + 5035 ], "var_pop": [ - 5032 + 5036 ], "var_samp": [ - 5033 + 5037 ], "variance": [ - 5034 + 5038 ], "__typename": [ 78 @@ -118638,13 +118584,13 @@ export default { }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5021 + 5025 ], "_not": [ - 5021 + 5025 ], "_or": [ - 5021 + 5025 ], "damage": [ 182 @@ -118716,22 +118662,22 @@ export default { }, "v_player_weapon_damage_order_by": { "damage": [ - 2481 + 2485 ], "hits": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "source": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "with": [ - 2481 + 2485 ], "__typename": [ 78 @@ -118782,7 +118728,7 @@ export default { }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5030 + 5034 ], "ordering": [ 236 @@ -118895,10 +118841,10 @@ export default { }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5037 + 5041 ], "nodes": [ - 5035 + 5039 ], "__typename": [ 78 @@ -118906,13 +118852,13 @@ export default { }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5038 + 5042 ], "count": [ 38, { "columns": [ - 5043, + 5047, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -118921,31 +118867,31 @@ export default { } ], "max": [ - 5040 + 5044 ], "min": [ - 5041 + 5045 ], "stddev": [ - 5044 + 5048 ], "stddev_pop": [ - 5045 + 5049 ], "stddev_samp": [ - 5046 + 5050 ], "sum": [ - 5049 + 5053 ], "var_pop": [ - 5050 + 5054 ], "var_samp": [ - 5051 + 5055 ], "variance": [ - 5052 + 5056 ], "__typename": [ 78 @@ -118967,13 +118913,13 @@ export default { }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5039 + 5043 ], "_not": [ - 5039 + 5043 ], "_or": [ - 5039 + 5043 ], "kill_count": [ 182 @@ -119045,22 +118991,22 @@ export default { }, "v_player_weapon_kills_order_by": { "kill_count": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "rounds": [ - 2481 + 2485 ], "source": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "with": [ - 2481 + 2485 ], "__typename": [ 78 @@ -119111,7 +119057,7 @@ export default { }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5048 + 5052 ], "ordering": [ 236 @@ -119204,7 +119150,7 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "label": [ 78 @@ -119213,7 +119159,7 @@ export default { 1795 ], "map_pool_id": [ - 4462 + 4466 ], "name": [ 78 @@ -119236,10 +119182,10 @@ export default { }, "v_pool_maps_aggregate": { "aggregate": [ - 5059 + 5063 ], "nodes": [ - 5053 + 5057 ], "__typename": [ 78 @@ -119247,13 +119193,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5056 + 5060 ], "bool_or": [ - 5057 + 5061 ], "count": [ - 5058 + 5062 ], "__typename": [ 78 @@ -119261,13 +119207,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5071 + 5075 ], "distinct": [ 3 ], "filter": [ - 5062 + 5066 ], "predicate": [ 4 @@ -119278,13 +119224,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5072 + 5076 ], "distinct": [ 3 ], "filter": [ - 5062 + 5066 ], "predicate": [ 4 @@ -119295,13 +119241,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5070 + 5074 ], "distinct": [ 3 ], "filter": [ - 5062 + 5066 ], "predicate": [ 39 @@ -119315,7 +119261,7 @@ export default { 38, { "columns": [ - 5070, + 5074, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -119324,10 +119270,10 @@ export default { } ], "max": [ - 5064 + 5068 ], "min": [ - 5066 + 5070 ], "__typename": [ 78 @@ -119335,13 +119281,13 @@ export default { }, "v_pool_maps_aggregate_order_by": { "count": [ - 2481 + 2485 ], "max": [ - 5065 + 5069 ], "min": [ - 5067 + 5071 ], "__typename": [ 78 @@ -119349,7 +119295,7 @@ export default { }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5063 + 5067 ], "__typename": [ 78 @@ -119357,19 +119303,19 @@ export default { }, "v_pool_maps_bool_exp": { "_and": [ - 5062 + 5066 ], "_not": [ - 5062 + 5066 ], "_or": [ - 5062 + 5066 ], "active_pool": [ 4 ], "id": [ - 4464 + 4468 ], "label": [ 80 @@ -119378,7 +119324,7 @@ export default { 1798 ], "map_pool_id": [ - 4464 + 4468 ], "name": [ 80 @@ -119404,7 +119350,7 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "label": [ 78 @@ -119413,7 +119359,7 @@ export default { 1804 ], "map_pool_id": [ - 4462 + 4466 ], "name": [ 78 @@ -119436,13 +119382,13 @@ export default { }, "v_pool_maps_max_fields": { "id": [ - 4462 + 4466 ], "label": [ 78 ], "map_pool_id": [ - 4462 + 4466 ], "name": [ 78 @@ -119465,28 +119411,28 @@ export default { }, "v_pool_maps_max_order_by": { "id": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "map_pool_id": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "patch": [ - 2481 + 2485 ], "poster": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "workshop_map_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -119494,13 +119440,13 @@ export default { }, "v_pool_maps_min_fields": { "id": [ - 4462 + 4466 ], "label": [ 78 ], "map_pool_id": [ - 4462 + 4466 ], "name": [ 78 @@ -119523,28 +119469,28 @@ export default { }, "v_pool_maps_min_order_by": { "id": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "map_pool_id": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "patch": [ - 2481 + 2485 ], "poster": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "workshop_map_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -119555,7 +119501,7 @@ export default { 38 ], "returning": [ - 5053 + 5057 ], "__typename": [ 78 @@ -119563,34 +119509,34 @@ export default { }, "v_pool_maps_order_by": { "active_pool": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "label": [ - 2481 + 2485 ], "map_pool": [ 1806 ], "map_pool_id": [ - 2481 + 2485 ], "name": [ - 2481 + 2485 ], "patch": [ - 2481 + 2485 ], "poster": [ - 2481 + 2485 ], "type": [ - 2481 + 2485 ], "workshop_map_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -119604,13 +119550,13 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "label": [ 78 ], "map_pool_id": [ - 4462 + 4466 ], "name": [ 78 @@ -119633,7 +119579,7 @@ export default { }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5075 + 5079 ], "ordering": [ 236 @@ -119647,13 +119593,13 @@ export default { 3 ], "id": [ - 4462 + 4466 ], "label": [ 78 ], "map_pool_id": [ - 4462 + 4466 ], "name": [ 78 @@ -119676,10 +119622,10 @@ export default { }, "v_pool_maps_updates": { "_set": [ - 5073 + 5077 ], "where": [ - 5062 + 5066 ], "__typename": [ 78 @@ -119704,10 +119650,10 @@ export default { }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5079 + 5083 ], "nodes": [ - 5077 + 5081 ], "__typename": [ 78 @@ -119715,13 +119661,13 @@ export default { }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5080 + 5084 ], "count": [ 38, { "columns": [ - 5085, + 5089, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -119730,31 +119676,31 @@ export default { } ], "max": [ - 5082 + 5086 ], "min": [ - 5083 + 5087 ], "stddev": [ - 5086 + 5090 ], "stddev_pop": [ - 5087 + 5091 ], "stddev_samp": [ - 5088 + 5092 ], "sum": [ - 5091 + 5095 ], "var_pop": [ - 5092 + 5096 ], "var_samp": [ - 5093 + 5097 ], "variance": [ - 5094 + 5098 ], "__typename": [ 78 @@ -119779,13 +119725,13 @@ export default { }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5081 + 5085 ], "_not": [ - 5081 + 5085 ], "_or": [ - 5081 + 5085 ], "busy_accounts": [ 39 @@ -119839,16 +119785,16 @@ export default { }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 2481 + 2485 ], "free_accounts": [ - 2481 + 2485 ], "id": [ - 2481 + 2485 ], "total_accounts": [ - 2481 + 2485 ], "__typename": [ 78 @@ -119908,7 +119854,7 @@ export default { }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5090 + 5094 ], "ordering": [ 236 @@ -120025,10 +119971,10 @@ export default { 180 ], "team": [ - 3981 + 3985 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -120036,10 +119982,10 @@ export default { }, "v_team_ranks_aggregate": { "aggregate": [ - 5097 + 5101 ], "nodes": [ - 5095 + 5099 ], "__typename": [ 78 @@ -120047,13 +119993,13 @@ export default { }, "v_team_ranks_aggregate_fields": { "avg": [ - 5098 + 5102 ], "count": [ 38, { "columns": [ - 5105, + 5109, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -120062,31 +120008,31 @@ export default { } ], "max": [ - 5101 + 5105 ], "min": [ - 5102 + 5106 ], "stddev": [ - 5106 + 5110 ], "stddev_pop": [ - 5107 + 5111 ], "stddev_samp": [ - 5108 + 5112 ], "sum": [ - 5111 + 5115 ], "var_pop": [ - 5112 + 5116 ], "var_samp": [ - 5113 + 5117 ], "variance": [ - 5114 + 5118 ], "__typename": [ 78 @@ -120120,13 +120066,13 @@ export default { }, "v_team_ranks_bool_exp": { "_and": [ - 5099 + 5103 ], "_not": [ - 5099 + 5103 ], "_or": [ - 5099 + 5103 ], "avg_elo": [ 39 @@ -120150,10 +120096,10 @@ export default { 182 ], "team": [ - 3990 + 3994 ], "team_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -120182,10 +120128,10 @@ export default { 180 ], "team": [ - 3999 + 4003 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -120214,7 +120160,7 @@ export default { 180 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -120243,7 +120189,7 @@ export default { 180 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -120251,7 +120197,7 @@ export default { }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5100 + 5104 ], "__typename": [ 78 @@ -120259,31 +120205,31 @@ export default { }, "v_team_ranks_order_by": { "avg_elo": [ - 2481 + 2485 ], "avg_faceit_elo": [ - 2481 + 2485 ], "avg_faceit_level": [ - 2481 + 2485 ], "avg_premier": [ - 2481 + 2485 ], "max_elo": [ - 2481 + 2485 ], "min_elo": [ - 2481 + 2485 ], "roster_size": [ - 2481 + 2485 ], "team": [ - 4001 + 4005 ], "team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -120370,7 +120316,7 @@ export default { }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5110 + 5114 ], "ordering": [ 236 @@ -120402,7 +120348,7 @@ export default { 180 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -120520,16 +120466,16 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2483 ], "scrims_completed": [ 180 ], "team": [ - 3981 + 3985 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -120537,10 +120483,10 @@ export default { }, "v_team_reputation_aggregate": { "aggregate": [ - 5117 + 5121 ], "nodes": [ - 5115 + 5119 ], "__typename": [ 78 @@ -120548,13 +120494,13 @@ export default { }, "v_team_reputation_aggregate_fields": { "avg": [ - 5118 + 5122 ], "count": [ 38, { "columns": [ - 5125, + 5129, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -120563,31 +120509,31 @@ export default { } ], "max": [ - 5121 + 5125 ], "min": [ - 5122 + 5126 ], "stddev": [ - 5126 + 5130 ], "stddev_pop": [ - 5127 + 5131 ], "stddev_samp": [ - 5128 + 5132 ], "sum": [ - 5131 + 5135 ], "var_pop": [ - 5132 + 5136 ], "var_samp": [ - 5133 + 5137 ], "variance": [ - 5134 + 5138 ], "__typename": [ 78 @@ -120612,13 +120558,13 @@ export default { }, "v_team_reputation_bool_exp": { "_and": [ - 5119 + 5123 ], "_not": [ - 5119 + 5123 ], "_or": [ - 5119 + 5123 ], "late_cancels": [ 182 @@ -120627,16 +120573,16 @@ export default { 182 ], "reliability_pct": [ - 2480 + 2484 ], "scrims_completed": [ 182 ], "team": [ - 3990 + 3994 ], "team_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -120650,16 +120596,16 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2483 ], "scrims_completed": [ 180 ], "team": [ - 3999 + 4003 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -120673,13 +120619,13 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2483 ], "scrims_completed": [ 180 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -120693,13 +120639,13 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2483 ], "scrims_completed": [ 180 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -120707,7 +120653,7 @@ export default { }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5120 + 5124 ], "__typename": [ 78 @@ -120715,22 +120661,22 @@ export default { }, "v_team_reputation_order_by": { "late_cancels": [ - 2481 + 2485 ], "no_shows": [ - 2481 + 2485 ], "reliability_pct": [ - 2481 + 2485 ], "scrims_completed": [ - 2481 + 2485 ], "team": [ - 4001 + 4005 ], "team_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -120790,7 +120736,7 @@ export default { }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5130 + 5134 ], "ordering": [ 236 @@ -120807,13 +120753,13 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2483 ], "scrims_completed": [ 180 ], "team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -120827,7 +120773,7 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2483 ], "scrims_completed": [ 180 @@ -120925,10 +120871,10 @@ export default { 38 ], "stage": [ - 4154 + 4158 ], "team": [ - 4287 + 4291 ], "team_kdr": [ 1200 @@ -120940,10 +120886,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -120954,10 +120900,10 @@ export default { }, "v_team_stage_results_aggregate": { "aggregate": [ - 5149 + 5153 ], "nodes": [ - 5135 + 5139 ], "__typename": [ 78 @@ -120965,31 +120911,31 @@ export default { }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5138 + 5142 ], "corr": [ - 5139 + 5143 ], "count": [ - 5141 + 5145 ], "covar_samp": [ - 5142 + 5146 ], "max": [ - 5144 + 5148 ], "min": [ - 5145 + 5149 ], "stddev_samp": [ - 5146 + 5150 ], "sum": [ - 5147 + 5151 ], "var_samp": [ - 5148 + 5152 ], "__typename": [ 78 @@ -120997,13 +120943,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5168 + 5172 ], "distinct": [ 3 ], "filter": [ - 5154 + 5158 ], "predicate": [ 1201 @@ -121014,13 +120960,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5140 + 5144 ], "distinct": [ 3 ], "filter": [ - 5154 + 5158 ], "predicate": [ 1201 @@ -121031,10 +120977,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5169 + 5173 ], "Y": [ - 5169 + 5173 ], "__typename": [ 78 @@ -121042,13 +120988,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5167 + 5171 ], "distinct": [ 3 ], "filter": [ - 5154 + 5158 ], "predicate": [ 39 @@ -121059,13 +121005,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5143 + 5147 ], "distinct": [ 3 ], "filter": [ - 5154 + 5158 ], "predicate": [ 1201 @@ -121076,10 +121022,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5170 + 5174 ], "Y": [ - 5170 + 5174 ], "__typename": [ 78 @@ -121087,13 +121033,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5171 + 5175 ], "distinct": [ 3 ], "filter": [ - 5154 + 5158 ], "predicate": [ 1201 @@ -121104,13 +121050,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5172 + 5176 ], "distinct": [ 3 ], "filter": [ - 5154 + 5158 ], "predicate": [ 1201 @@ -121121,13 +121067,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5173 + 5177 ], "distinct": [ 3 ], "filter": [ - 5154 + 5158 ], "predicate": [ 1201 @@ -121138,13 +121084,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5174 + 5178 ], "distinct": [ 3 ], "filter": [ - 5154 + 5158 ], "predicate": [ 1201 @@ -121155,13 +121101,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5175 + 5179 ], "distinct": [ 3 ], "filter": [ - 5154 + 5158 ], "predicate": [ 1201 @@ -121172,13 +121118,13 @@ export default { }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5152 + 5156 ], "count": [ 38, { "columns": [ - 5167, + 5171, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -121187,31 +121133,31 @@ export default { } ], "max": [ - 5158 + 5162 ], "min": [ - 5160 + 5164 ], "stddev": [ - 5177 + 5181 ], "stddev_pop": [ - 5179 + 5183 ], "stddev_samp": [ - 5181 + 5185 ], "sum": [ - 5185 + 5189 ], "var_pop": [ - 5189 + 5193 ], "var_samp": [ - 5191 + 5195 ], "variance": [ - 5193 + 5197 ], "__typename": [ 78 @@ -121219,37 +121165,37 @@ export default { }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5153 + 5157 ], "count": [ - 2481 + 2485 ], "max": [ - 5159 + 5163 ], "min": [ - 5161 + 5165 ], "stddev": [ - 5178 + 5182 ], "stddev_pop": [ - 5180 + 5184 ], "stddev_samp": [ - 5182 + 5186 ], "sum": [ - 5186 + 5190 ], "var_pop": [ - 5190 + 5194 ], "var_samp": [ - 5192 + 5196 ], "variance": [ - 5194 + 5198 ], "__typename": [ 78 @@ -121257,10 +121203,10 @@ export default { }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5157 + 5161 ], "on_conflict": [ - 5164 + 5168 ], "__typename": [ 78 @@ -121321,52 +121267,52 @@ export default { }, "v_team_stage_results_avg_order_by": { "group_number": [ - 2481 + 2485 ], "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -121374,13 +121320,13 @@ export default { }, "v_team_stage_results_bool_exp": { "_and": [ - 5154 + 5158 ], "_not": [ - 5154 + 5158 ], "_or": [ - 5154 + 5158 ], "group_number": [ 39 @@ -121419,10 +121365,10 @@ export default { 39 ], "stage": [ - 4166 + 4170 ], "team": [ - 4296 + 4300 ], "team_kdr": [ 1201 @@ -121434,10 +121380,10 @@ export default { 39 ], "tournament_stage_id": [ - 4464 + 4468 ], "tournament_team_id": [ - 4464 + 4468 ], "wins": [ 39 @@ -121538,10 +121484,10 @@ export default { 38 ], "stage": [ - 4178 + 4182 ], "team": [ - 4305 + 4309 ], "team_kdr": [ 1200 @@ -121553,10 +121499,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -121612,10 +121558,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -121626,58 +121572,58 @@ export default { }, "v_team_stage_results_max_order_by": { "group_number": [ - 2481 + 2485 ], "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "tournament_stage_id": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -121730,10 +121676,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -121744,58 +121690,58 @@ export default { }, "v_team_stage_results_min_order_by": { "group_number": [ - 2481 + 2485 ], "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "tournament_stage_id": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -121806,7 +121752,7 @@ export default { 38 ], "returning": [ - 5135 + 5139 ], "__typename": [ 78 @@ -121814,10 +121760,10 @@ export default { }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5157 + 5161 ], "on_conflict": [ - 5164 + 5168 ], "__typename": [ 78 @@ -121825,13 +121771,13 @@ export default { }, "v_team_stage_results_on_conflict": { "constraint": [ - 5155 + 5159 ], "update_columns": [ - 5187 + 5191 ], "where": [ - 5154 + 5158 ], "__typename": [ 78 @@ -121839,64 +121785,64 @@ export default { }, "v_team_stage_results_order_by": { "group_number": [ - 2481 + 2485 ], "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "stage": [ - 4180 + 4184 ], "team": [ - 4307 + 4311 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "tournament_stage_id": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -121904,10 +121850,10 @@ export default { }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -121969,10 +121915,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -122036,52 +121982,52 @@ export default { }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 2481 + 2485 ], "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -122142,52 +122088,52 @@ export default { }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 2481 + 2485 ], "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -122248,52 +122194,52 @@ export default { }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 2481 + 2485 ], "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -122301,7 +122247,7 @@ export default { }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5184 + 5188 ], "ordering": [ 236 @@ -122357,10 +122303,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -122424,52 +122370,52 @@ export default { }, "v_team_stage_results_sum_order_by": { "group_number": [ - 2481 + 2485 ], "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -122478,13 +122424,13 @@ export default { "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5156 + 5160 ], "_set": [ - 5176 + 5180 ], "where": [ - 5154 + 5158 ], "__typename": [ 78 @@ -122545,52 +122491,52 @@ export default { }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 2481 + 2485 ], "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -122651,52 +122597,52 @@ export default { }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 2481 + 2485 ], "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -122757,52 +122703,52 @@ export default { }, "v_team_stage_results_variance_order_by": { "group_number": [ - 2481 + 2485 ], "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "placement": [ - 2481 + 2485 ], "rank": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -122837,7 +122783,7 @@ export default { 38 ], "team": [ - 4287 + 4291 ], "team_kdr": [ 1200 @@ -122849,13 +122795,13 @@ export default { 38 ], "tournament": [ - 4416 + 4420 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -122866,10 +122812,10 @@ export default { }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5209 + 5213 ], "nodes": [ - 5195 + 5199 ], "__typename": [ 78 @@ -122877,31 +122823,31 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5198 + 5202 ], "corr": [ - 5199 + 5203 ], "count": [ - 5201 + 5205 ], "covar_samp": [ - 5202 + 5206 ], "max": [ - 5204 + 5208 ], "min": [ - 5205 + 5209 ], "stddev_samp": [ - 5206 + 5210 ], "sum": [ - 5207 + 5211 ], "var_samp": [ - 5208 + 5212 ], "__typename": [ 78 @@ -122909,13 +122855,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5222 + 5226 ], "distinct": [ 3 ], "filter": [ - 5214 + 5218 ], "predicate": [ 1201 @@ -122926,13 +122872,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5200 + 5204 ], "distinct": [ 3 ], "filter": [ - 5214 + 5218 ], "predicate": [ 1201 @@ -122943,10 +122889,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5223 + 5227 ], "Y": [ - 5223 + 5227 ], "__typename": [ 78 @@ -122954,13 +122900,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5221 + 5225 ], "distinct": [ 3 ], "filter": [ - 5214 + 5218 ], "predicate": [ 39 @@ -122971,13 +122917,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5203 + 5207 ], "distinct": [ 3 ], "filter": [ - 5214 + 5218 ], "predicate": [ 1201 @@ -122988,10 +122934,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5224 + 5228 ], "Y": [ - 5224 + 5228 ], "__typename": [ 78 @@ -122999,13 +122945,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 5225 + 5229 ], "distinct": [ 3 ], "filter": [ - 5214 + 5218 ], "predicate": [ 1201 @@ -123016,13 +122962,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 5226 + 5230 ], "distinct": [ 3 ], "filter": [ - 5214 + 5218 ], "predicate": [ 1201 @@ -123033,13 +122979,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5227 + 5231 ], "distinct": [ 3 ], "filter": [ - 5214 + 5218 ], "predicate": [ 1201 @@ -123050,13 +122996,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 5228 + 5232 ], "distinct": [ 3 ], "filter": [ - 5214 + 5218 ], "predicate": [ 1201 @@ -123067,13 +123013,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5229 + 5233 ], "distinct": [ 3 ], "filter": [ - 5214 + 5218 ], "predicate": [ 1201 @@ -123084,13 +123030,13 @@ export default { }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5212 + 5216 ], "count": [ 38, { "columns": [ - 5221, + 5225, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -123099,31 +123045,31 @@ export default { } ], "max": [ - 5216 + 5220 ], "min": [ - 5218 + 5222 ], "stddev": [ - 5230 + 5234 ], "stddev_pop": [ - 5232 + 5236 ], "stddev_samp": [ - 5234 + 5238 ], "sum": [ - 5238 + 5242 ], "var_pop": [ - 5240 + 5244 ], "var_samp": [ - 5242 + 5246 ], "variance": [ - 5244 + 5248 ], "__typename": [ 78 @@ -123131,37 +123077,37 @@ export default { }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5213 + 5217 ], "count": [ - 2481 + 2485 ], "max": [ - 5217 + 5221 ], "min": [ - 5219 + 5223 ], "stddev": [ - 5231 + 5235 ], "stddev_pop": [ - 5233 + 5237 ], "stddev_samp": [ - 5235 + 5239 ], "sum": [ - 5239 + 5243 ], "var_pop": [ - 5241 + 5245 ], "var_samp": [ - 5243 + 5247 ], "variance": [ - 5245 + 5249 ], "__typename": [ 78 @@ -123169,7 +123115,7 @@ export default { }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5215 + 5219 ], "__typename": [ 78 @@ -123221,43 +123167,43 @@ export default { }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -123265,13 +123211,13 @@ export default { }, "v_team_tournament_results_bool_exp": { "_and": [ - 5214 + 5218 ], "_not": [ - 5214 + 5218 ], "_or": [ - 5214 + 5218 ], "head_to_head_match_wins": [ 39 @@ -123301,7 +123247,7 @@ export default { 39 ], "team": [ - 4296 + 4300 ], "team_kdr": [ 1201 @@ -123313,13 +123259,13 @@ export default { 39 ], "tournament": [ - 4427 + 4431 ], "tournament_id": [ - 4464 + 4468 ], "tournament_team_id": [ - 4464 + 4468 ], "wins": [ 39 @@ -123357,7 +123303,7 @@ export default { 38 ], "team": [ - 4305 + 4309 ], "team_kdr": [ 1200 @@ -123369,13 +123315,13 @@ export default { 38 ], "tournament": [ - 4436 + 4440 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -123422,10 +123368,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -123436,49 +123382,49 @@ export default { }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -123522,10 +123468,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -123536,49 +123482,49 @@ export default { }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -123586,55 +123532,55 @@ export default { }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team": [ - 4307 + 4311 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "tournament": [ - 4438 + 4442 ], "tournament_id": [ - 2481 + 2485 ], "tournament_team_id": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -123695,43 +123641,43 @@ export default { }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -123783,43 +123729,43 @@ export default { }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -123871,43 +123817,43 @@ export default { }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -123915,7 +123861,7 @@ export default { }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 5237 + 5241 ], "ordering": [ 236 @@ -123962,10 +123908,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4466 ], "tournament_team_id": [ - 4462 + 4466 ], "wins": [ 38 @@ -124020,43 +123966,43 @@ export default { }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -124108,43 +124054,43 @@ export default { }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -124196,43 +124142,43 @@ export default { }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -124284,43 +124230,43 @@ export default { }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 2481 + 2485 ], "head_to_head_rounds_won": [ - 2481 + 2485 ], "losses": [ - 2481 + 2485 ], "maps_lost": [ - 2481 + 2485 ], "maps_won": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "matches_remaining": [ - 2481 + 2485 ], "rounds_lost": [ - 2481 + 2485 ], "rounds_won": [ - 2481 + 2485 ], "team_kdr": [ - 2481 + 2485 ], "total_deaths": [ - 2481 + 2485 ], "total_kills": [ - 2481 + 2485 ], "wins": [ - 2481 + 2485 ], "__typename": [ 78 @@ -124349,16 +124295,16 @@ export default { 38 ], "player": [ - 3439 + 3443 ], "player_steam_id": [ 180 ], "tournament": [ - 4416 + 4420 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -124366,10 +124312,10 @@ export default { }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 5260 + 5264 ], "nodes": [ - 5246 + 5250 ], "__typename": [ 78 @@ -124377,31 +124323,31 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 5249 + 5253 ], "corr": [ - 5250 + 5254 ], "count": [ - 5252 + 5256 ], "covar_samp": [ - 5253 + 5257 ], "max": [ - 5255 + 5259 ], "min": [ - 5256 + 5260 ], "stddev_samp": [ - 5257 + 5261 ], "sum": [ - 5258 + 5262 ], "var_samp": [ - 5259 + 5263 ], "__typename": [ 78 @@ -124409,13 +124355,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5273 + 5277 ], "distinct": [ 3 ], "filter": [ - 5265 + 5269 ], "predicate": [ 1201 @@ -124426,13 +124372,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5251 + 5255 ], "distinct": [ 3 ], "filter": [ - 5265 + 5269 ], "predicate": [ 1201 @@ -124443,10 +124389,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5274 + 5278 ], "Y": [ - 5274 + 5278 ], "__typename": [ 78 @@ -124454,13 +124400,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5272 + 5276 ], "distinct": [ 3 ], "filter": [ - 5265 + 5269 ], "predicate": [ 39 @@ -124471,13 +124417,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5254 + 5258 ], "distinct": [ 3 ], "filter": [ - 5265 + 5269 ], "predicate": [ 1201 @@ -124488,10 +124434,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5275 + 5279 ], "Y": [ - 5275 + 5279 ], "__typename": [ 78 @@ -124499,13 +124445,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5276 + 5280 ], "distinct": [ 3 ], "filter": [ - 5265 + 5269 ], "predicate": [ 1201 @@ -124516,13 +124462,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5277 + 5281 ], "distinct": [ 3 ], "filter": [ - 5265 + 5269 ], "predicate": [ 1201 @@ -124533,13 +124479,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5278 + 5282 ], "distinct": [ 3 ], "filter": [ - 5265 + 5269 ], "predicate": [ 1201 @@ -124550,13 +124496,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5279 + 5283 ], "distinct": [ 3 ], "filter": [ - 5265 + 5269 ], "predicate": [ 1201 @@ -124567,13 +124513,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5280 + 5284 ], "distinct": [ 3 ], "filter": [ - 5265 + 5269 ], "predicate": [ 1201 @@ -124584,13 +124530,13 @@ export default { }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 5263 + 5267 ], "count": [ 38, { "columns": [ - 5272, + 5276, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -124599,31 +124545,31 @@ export default { } ], "max": [ - 5267 + 5271 ], "min": [ - 5269 + 5273 ], "stddev": [ - 5281 + 5285 ], "stddev_pop": [ - 5283 + 5287 ], "stddev_samp": [ - 5285 + 5289 ], "sum": [ - 5289 + 5293 ], "var_pop": [ - 5291 + 5295 ], "var_samp": [ - 5293 + 5297 ], "variance": [ - 5295 + 5299 ], "__typename": [ 78 @@ -124631,37 +124577,37 @@ export default { }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 5264 + 5268 ], "count": [ - 2481 + 2485 ], "max": [ - 5268 + 5272 ], "min": [ - 5270 + 5274 ], "stddev": [ - 5282 + 5286 ], "stddev_pop": [ - 5284 + 5288 ], "stddev_samp": [ - 5286 + 5290 ], "sum": [ - 5290 + 5294 ], "var_pop": [ - 5292 + 5296 ], "var_samp": [ - 5294 + 5298 ], "variance": [ - 5296 + 5300 ], "__typename": [ 78 @@ -124669,7 +124615,7 @@ export default { }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 5266 + 5270 ], "__typename": [ 78 @@ -124706,28 +124652,28 @@ export default { }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -124735,13 +124681,13 @@ export default { }, "v_tournament_player_stats_bool_exp": { "_and": [ - 5265 + 5269 ], "_not": [ - 5265 + 5269 ], "_or": [ - 5265 + 5269 ], "assists": [ 39 @@ -124765,16 +124711,16 @@ export default { 39 ], "player": [ - 3443 + 3447 ], "player_steam_id": [ 182 ], "tournament": [ - 4427 + 4431 ], "tournament_id": [ - 4464 + 4468 ], "__typename": [ 78 @@ -124803,16 +124749,16 @@ export default { 38 ], "player": [ - 3450 + 3454 ], "player_steam_id": [ 180 ], "tournament": [ - 4436 + 4440 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -124844,7 +124790,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -124852,31 +124798,31 @@ export default { }, "v_tournament_player_stats_max_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -124908,7 +124854,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -124916,31 +124862,31 @@ export default { }, "v_tournament_player_stats_min_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -124948,37 +124894,37 @@ export default { }, "v_tournament_player_stats_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player": [ - 3452 + 3456 ], "player_steam_id": [ - 2481 + 2485 ], "tournament": [ - 4438 + 4442 ], "tournament_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -125024,28 +124970,28 @@ export default { }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -125082,28 +125028,28 @@ export default { }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -125140,28 +125086,28 @@ export default { }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -125169,7 +125115,7 @@ export default { }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 5288 + 5292 ], "ordering": [ 236 @@ -125204,7 +125150,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4466 ], "__typename": [ 78 @@ -125241,28 +125187,28 @@ export default { }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -125299,28 +125245,28 @@ export default { }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -125357,28 +125303,28 @@ export default { }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -125415,28 +125361,28 @@ export default { }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 2481 + 2485 ], "deaths": [ - 2481 + 2485 ], "headshot_percentage": [ - 2481 + 2485 ], "headshots": [ - 2481 + 2485 ], "kdr": [ - 2481 + 2485 ], "kills": [ - 2481 + 2485 ], "matches_played": [ - 2481 + 2485 ], "player_steam_id": [ - 2481 + 2485 ], "__typename": [ 78 @@ -125491,11 +125437,11 @@ export default { 92, { "map_id": [ - 4462, + 4466, "uuid!" ], "map_pool_id": [ - 4462, + 4466, "uuid!" ] } @@ -125548,7 +125494,7 @@ export default { 111, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -125601,7 +125547,7 @@ export default { 152, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -125654,7 +125600,7 @@ export default { 185, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -125710,7 +125656,7 @@ export default { 237, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -125763,7 +125709,7 @@ export default { 264, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -125816,7 +125762,7 @@ export default { 309, { "draft_game_id": [ - 4462, + 4466, "uuid!" ], "steam_id": [ @@ -125873,7 +125819,7 @@ export default { 354, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -128156,7 +128102,7 @@ export default { 1313, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -128192,7 +128138,7 @@ export default { 34, { "match_map_id": [ - 4462, + 4466, "uuid!" ], "target_steam_id": [ @@ -128381,14 +128327,14 @@ export default { } ], "get_player_leaderboard_rank": [ - 2922, + 2926, { "args": [ 1347, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2933, + 2937, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -128398,23 +128344,23 @@ export default { 38 ], "order_by": [ - 2932, + 2936, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 2930 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2923, + 2927, { "args": [ 1347, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2933, + 2937, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -128424,11 +128370,11 @@ export default { 38 ], "order_by": [ - 2932, + 2936, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 2930 ] } ], @@ -128524,7 +128470,7 @@ export default { 1379, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -128577,7 +128523,7 @@ export default { 1407, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -128630,7 +128576,7 @@ export default { 1448, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -128683,7 +128629,7 @@ export default { 1489, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -128736,7 +128682,7 @@ export default { 1530, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -128789,7 +128735,7 @@ export default { 1555, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -128842,7 +128788,7 @@ export default { 1588, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -128895,7 +128841,7 @@ export default { 1629, { "league_team_season_id": [ - 4462, + 4466, "uuid!" ], "player_steam_id": [ @@ -128952,7 +128898,7 @@ export default { 1670, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -129005,7 +128951,7 @@ export default { 1712, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -129073,7 +129019,7 @@ export default { 1731, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -129126,7 +129072,7 @@ export default { 1750, { "lobby_id": [ - 4462, + 4466, "uuid!" ], "steam_id": [ @@ -129183,7 +129129,7 @@ export default { 1795, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -129236,7 +129182,7 @@ export default { 1814, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -129289,7 +129235,7 @@ export default { 1843, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -129342,7 +129288,7 @@ export default { 1885, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -129395,7 +129341,7 @@ export default { 1931, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -129448,7 +129394,7 @@ export default { 1976, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -129501,7 +129447,7 @@ export default { 2018, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -129554,7 +129500,7 @@ export default { 2069, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -129607,7 +129553,7 @@ export default { 2110, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -129616,7 +129562,7 @@ export default { 2134, { "distinct_on": [ - 2156, + 2158, "[match_maps_select_column!]" ], "limit": [ @@ -129626,11 +129572,11 @@ export default { 38 ], "order_by": [ - 2154, + 2156, "[match_maps_order_by!]" ], "where": [ - 2143 + 2145 ] } ], @@ -129638,7 +129584,7 @@ export default { 2135, { "distinct_on": [ - 2156, + 2158, "[match_maps_select_column!]" ], "limit": [ @@ -129648,11 +129594,11 @@ export default { 38 ], "order_by": [ - 2154, + 2156, "[match_maps_order_by!]" ], "where": [ - 2143 + 2145 ] } ], @@ -129660,16 +129606,16 @@ export default { 2134, { "id": [ - 4462, + 4466, "uuid!" ] } ], "match_options": [ - 2176, + 2180, { "distinct_on": [ - 2191, + 2195, "[match_options_select_column!]" ], "limit": [ @@ -129679,19 +129625,19 @@ export default { 38 ], "order_by": [ - 2189, + 2193, "[match_options_order_by!]" ], "where": [ - 2180 + 2184 ] } ], "match_options_aggregate": [ - 2177, + 2181, { "distinct_on": [ - 2191, + 2195, "[match_options_select_column!]" ], "limit": [ @@ -129701,28 +129647,28 @@ export default { 38 ], "order_by": [ - 2189, + 2193, "[match_options_order_by!]" ], "where": [ - 2180 + 2184 ] } ], "match_options_by_pk": [ - 2176, + 2180, { "id": [ - 4462, + 4466, "uuid!" ] } ], "match_region_veto_picks": [ - 2204, + 2208, { "distinct_on": [ - 2222, + 2226, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -129732,19 +129678,19 @@ export default { 38 ], "order_by": [ - 2220, + 2224, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2215 ] } ], "match_region_veto_picks_aggregate": [ - 2205, + 2209, { "distinct_on": [ - 2222, + 2226, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -129754,28 +129700,28 @@ export default { 38 ], "order_by": [ - 2220, + 2224, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2215 ] } ], "match_region_veto_picks_by_pk": [ - 2204, + 2208, { "id": [ - 4462, + 4466, "uuid!" ] } ], "match_streams": [ - 2228, + 2232, { "distinct_on": [ - 2256, + 2260, "[match_streams_select_column!]" ], "limit": [ @@ -129785,19 +129731,19 @@ export default { 38 ], "order_by": [ - 2253, + 2257, "[match_streams_order_by!]" ], "where": [ - 2240 + 2244 ] } ], "match_streams_aggregate": [ - 2229, + 2233, { "distinct_on": [ - 2256, + 2260, "[match_streams_select_column!]" ], "limit": [ @@ -129807,28 +129753,28 @@ export default { 38 ], "order_by": [ - 2253, + 2257, "[match_streams_order_by!]" ], "where": [ - 2240 + 2244 ] } ], "match_streams_by_pk": [ - 2228, + 2232, { "id": [ - 4462, + 4466, "uuid!" ] } ], "match_type_cfgs": [ - 2278, + 2282, { "distinct_on": [ - 2290, + 2294, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -129838,19 +129784,19 @@ export default { 38 ], "order_by": [ - 2288, + 2292, "[match_type_cfgs_order_by!]" ], "where": [ - 2281 + 2285 ] } ], "match_type_cfgs_aggregate": [ - 2279, + 2283, { "distinct_on": [ - 2290, + 2294, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -129860,16 +129806,16 @@ export default { 38 ], "order_by": [ - 2288, + 2292, "[match_type_cfgs_order_by!]" ], "where": [ - 2281 + 2285 ] } ], "match_type_cfgs_by_pk": [ - 2278, + 2282, { "type": [ 551, @@ -129878,10 +129824,10 @@ export default { } ], "matches": [ - 2296, + 2300, { "distinct_on": [ - 2318, + 2322, "[matches_select_column!]" ], "limit": [ @@ -129891,19 +129837,19 @@ export default { 38 ], "order_by": [ - 2316, + 2320, "[matches_order_by!]" ], "where": [ - 2305 + 2309 ] } ], "matches_aggregate": [ - 2297, + 2301, { "distinct_on": [ - 2318, + 2322, "[matches_select_column!]" ], "limit": [ @@ -129913,19 +129859,19 @@ export default { 38 ], "order_by": [ - 2316, + 2320, "[matches_order_by!]" ], "where": [ - 2305 + 2309 ] } ], "matches_by_pk": [ - 2296, + 2300, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -129934,10 +129880,10 @@ export default { 45 ], "migration_hashes_hashes": [ - 2338, + 2342, { "distinct_on": [ - 2350, + 2354, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -129947,19 +129893,19 @@ export default { 38 ], "order_by": [ - 2348, + 2352, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2341 + 2345 ] } ], "migration_hashes_hashes_aggregate": [ - 2339, + 2343, { "distinct_on": [ - 2350, + 2354, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -129969,16 +129915,16 @@ export default { 38 ], "order_by": [ - 2348, + 2352, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2341 + 2345 ] } ], "migration_hashes_hashes_by_pk": [ - 2338, + 2342, { "name": [ 78, @@ -129987,10 +129933,10 @@ export default { } ], "my_friends": [ - 2356, + 2360, { "distinct_on": [ - 2381, + 2385, "[my_friends_select_column!]" ], "limit": [ @@ -130000,19 +129946,19 @@ export default { 38 ], "order_by": [ - 2379, + 2383, "[my_friends_order_by!]" ], "where": [ - 2368 + 2372 ] } ], "my_friends_aggregate": [ - 2357, + 2361, { "distinct_on": [ - 2381, + 2385, "[my_friends_select_column!]" ], "limit": [ @@ -130022,11 +129968,11 @@ export default { 38 ], "order_by": [ - 2379, + 2383, "[my_friends_order_by!]" ], "where": [ - 2368 + 2372 ] } ], @@ -130034,7 +129980,7 @@ export default { 48, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -130043,10 +129989,10 @@ export default { 48 ], "news_articles": [ - 2402, + 2406, { "distinct_on": [ - 2416, + 2420, "[news_articles_select_column!]" ], "limit": [ @@ -130056,19 +130002,19 @@ export default { 38 ], "order_by": [ - 2414, + 2418, "[news_articles_order_by!]" ], "where": [ - 2406 + 2410 ] } ], "news_articles_aggregate": [ - 2403, + 2407, { "distinct_on": [ - 2416, + 2420, "[news_articles_select_column!]" ], "limit": [ @@ -130078,28 +130024,28 @@ export default { 38 ], "order_by": [ - 2414, + 2418, "[news_articles_order_by!]" ], "where": [ - 2406 + 2410 ] } ], "news_articles_by_pk": [ - 2402, + 2406, { "id": [ - 4462, + 4466, "uuid!" ] } ], "notifications": [ - 2429, + 2433, { "distinct_on": [ - 2457, + 2461, "[notifications_select_column!]" ], "limit": [ @@ -130109,19 +130055,19 @@ export default { 38 ], "order_by": [ - 2454, + 2458, "[notifications_order_by!]" ], "where": [ - 2441 + 2445 ] } ], "notifications_aggregate": [ - 2430, + 2434, { "distinct_on": [ - 2457, + 2461, "[notifications_select_column!]" ], "limit": [ @@ -130131,28 +130077,28 @@ export default { 38 ], "order_by": [ - 2454, + 2458, "[notifications_order_by!]" ], "where": [ - 2441 + 2445 ] } ], "notifications_by_pk": [ - 2429, + 2433, { "id": [ - 4462, + 4466, "uuid!" ] } ], "pending_match_import_players": [ - 2482, + 2486, { "distinct_on": [ - 2503, + 2507, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -130162,19 +130108,19 @@ export default { 38 ], "order_by": [ - 2501, + 2505, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2495 ] } ], "pending_match_import_players_aggregate": [ - 2483, + 2487, { "distinct_on": [ - 2503, + 2507, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -130184,32 +130130,32 @@ export default { 38 ], "order_by": [ - 2501, + 2505, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2495 ] } ], "pending_match_import_players_by_pk": [ - 2482, + 2486, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2479, + 2483, "numeric!" ] } ], "pending_match_imports": [ - 2523, + 2527, { "distinct_on": [ - 2538, + 2542, "[pending_match_imports_select_column!]" ], "limit": [ @@ -130219,19 +130165,19 @@ export default { 38 ], "order_by": [ - 2536, + 2540, "[pending_match_imports_order_by!]" ], "where": [ - 2527 + 2531 ] } ], "pending_match_imports_aggregate": [ - 2524, + 2528, { "distinct_on": [ - 2538, + 2542, "[pending_match_imports_select_column!]" ], "limit": [ @@ -130241,28 +130187,28 @@ export default { 38 ], "order_by": [ - 2536, + 2540, "[pending_match_imports_order_by!]" ], "where": [ - 2527 + 2531 ] } ], "pending_match_imports_by_pk": [ - 2523, + 2527, { "valve_match_id": [ - 2479, + 2483, "numeric!" ] } ], "player_aim_stats_demo": [ - 2551, + 2555, { "distinct_on": [ - 2565, + 2569, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -130272,19 +130218,19 @@ export default { 38 ], "order_by": [ - 2563, + 2567, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2555 + 2559 ] } ], "player_aim_stats_demo_aggregate": [ - 2552, + 2556, { "distinct_on": [ - 2565, + 2569, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -130294,32 +130240,32 @@ export default { 38 ], "order_by": [ - 2563, + 2567, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2555 + 2559 ] } ], "player_aim_stats_demo_by_pk": [ - 2551, + 2555, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ] } ], "player_aim_weapon_stats": [ - 2578, + 2582, { "distinct_on": [ - 2599, + 2603, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -130329,19 +130275,19 @@ export default { 38 ], "order_by": [ - 2597, + 2601, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2591 ] } ], "player_aim_weapon_stats_aggregate": [ - 2579, + 2583, { "distinct_on": [ - 2599, + 2603, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -130351,19 +130297,19 @@ export default { 38 ], "order_by": [ - 2597, + 2601, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2591 ] } ], "player_aim_weapon_stats_by_pk": [ - 2578, + 2582, { "match_map_id": [ - 4462, + 4466, "uuid!" ], "steam_id": [ @@ -130377,10 +130323,10 @@ export default { } ], "player_assists": [ - 2619, + 2623, { "distinct_on": [ - 2642, + 2646, "[player_assists_select_column!]" ], "limit": [ @@ -130390,19 +130336,19 @@ export default { 38 ], "order_by": [ - 2640, + 2644, "[player_assists_order_by!]" ], "where": [ - 2630 + 2634 ] } ], "player_assists_aggregate": [ - 2620, + 2624, { "distinct_on": [ - 2642, + 2646, "[player_assists_select_column!]" ], "limit": [ @@ -130412,16 +130358,16 @@ export default { 38 ], "order_by": [ - 2640, + 2644, "[player_assists_order_by!]" ], "where": [ - 2630 + 2634 ] } ], "player_assists_by_pk": [ - 2619, + 2623, { "attacked_steam_id": [ 180, @@ -130432,20 +130378,20 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "player_career_stats_v": [ - 2664, + 2668, { "distinct_on": [ - 2672, + 2676, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -130455,19 +130401,19 @@ export default { 38 ], "order_by": [ - 2671, + 2675, "[player_career_stats_v_order_by!]" ], "where": [ - 2668 + 2672 ] } ], "player_career_stats_v_aggregate": [ - 2665, + 2669, { "distinct_on": [ - 2672, + 2676, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -130477,19 +130423,19 @@ export default { 38 ], "order_by": [ - 2671, + 2675, "[player_career_stats_v_order_by!]" ], "where": [ - 2668 + 2672 ] } ], "player_damages": [ - 2682, + 2686, { "distinct_on": [ - 2703, + 2707, "[player_damages_select_column!]" ], "limit": [ @@ -130499,19 +130445,19 @@ export default { 38 ], "order_by": [ - 2701, + 2705, "[player_damages_order_by!]" ], "where": [ - 2691 + 2695 ] } ], "player_damages_aggregate": [ - 2683, + 2687, { "distinct_on": [ - 2703, + 2707, "[player_damages_select_column!]" ], "limit": [ @@ -130521,36 +130467,36 @@ export default { 38 ], "order_by": [ - 2701, + 2705, "[player_damages_order_by!]" ], "where": [ - 2691 + 2695 ] } ], "player_damages_by_pk": [ - 2682, + 2686, { "id": [ - 4462, + 4466, "uuid!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "player_elo": [ - 2723, + 2727, { "distinct_on": [ - 2737, + 2741, "[player_elo_select_column!]" ], "limit": [ @@ -130560,19 +130506,19 @@ export default { 38 ], "order_by": [ - 2735, + 2739, "[player_elo_order_by!]" ], "where": [ - 2727 + 2731 ] } ], "player_elo_aggregate": [ - 2724, + 2728, { "distinct_on": [ - 2737, + 2741, "[player_elo_select_column!]" ], "limit": [ @@ -130582,19 +130528,19 @@ export default { 38 ], "order_by": [ - 2735, + 2739, "[player_elo_order_by!]" ], "where": [ - 2727 + 2731 ] } ], "player_elo_by_pk": [ - 2723, + 2727, { "match_id": [ - 4462, + 4466, "uuid!" ], "steam_id": [ @@ -130608,10 +130554,10 @@ export default { } ], "player_faceit_rank_history": [ - 2750, + 2754, { "distinct_on": [ - 2771, + 2775, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -130621,19 +130567,19 @@ export default { 38 ], "order_by": [ - 2769, + 2773, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 2763 ] } ], "player_faceit_rank_history_aggregate": [ - 2751, + 2755, { "distinct_on": [ - 2771, + 2775, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -130643,28 +130589,28 @@ export default { 38 ], "order_by": [ - 2769, + 2773, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 2763 ] } ], "player_faceit_rank_history_by_pk": [ - 2750, + 2754, { "id": [ - 4462, + 4466, "uuid!" ] } ], "player_flashes": [ - 2791, + 2795, { "distinct_on": [ - 2814, + 2818, "[player_flashes_select_column!]" ], "limit": [ @@ -130674,19 +130620,19 @@ export default { 38 ], "order_by": [ - 2812, + 2816, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2806 ] } ], "player_flashes_aggregate": [ - 2792, + 2796, { "distinct_on": [ - 2814, + 2818, "[player_flashes_select_column!]" ], "limit": [ @@ -130696,16 +130642,16 @@ export default { 38 ], "order_by": [ - 2812, + 2816, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2806 ] } ], "player_flashes_by_pk": [ - 2791, + 2795, { "attacked_steam_id": [ 180, @@ -130716,20 +130662,20 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "player_kills": [ - 2836, + 2840, { "distinct_on": [ - 2900, + 2904, "[player_kills_select_column!]" ], "limit": [ @@ -130739,19 +130685,19 @@ export default { 38 ], "order_by": [ - 2898, + 2902, "[player_kills_order_by!]" ], "where": [ - 2847 + 2851 ] } ], "player_kills_aggregate": [ - 2837, + 2841, { "distinct_on": [ - 2900, + 2904, "[player_kills_select_column!]" ], "limit": [ @@ -130761,16 +130707,16 @@ export default { 38 ], "order_by": [ - 2898, + 2902, "[player_kills_order_by!]" ], "where": [ - 2847 + 2851 ] } ], "player_kills_by_pk": [ - 2836, + 2840, { "attacked_steam_id": [ 180, @@ -130781,20 +130727,20 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2848, + 2852, { "distinct_on": [ - 2869, + 2873, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -130804,19 +130750,19 @@ export default { 38 ], "order_by": [ - 2867, + 2871, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 2861 ] } ], "player_kills_by_weapon_aggregate": [ - 2849, + 2853, { "distinct_on": [ - 2869, + 2873, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -130826,16 +130772,16 @@ export default { 38 ], "order_by": [ - 2867, + 2871, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 2861 ] } ], "player_kills_by_weapon_by_pk": [ - 2848, + 2852, { "player_steam_id": [ 180, @@ -130848,10 +130794,10 @@ export default { } ], "player_leaderboard_rank": [ - 2922, + 2926, { "distinct_on": [ - 2933, + 2937, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -130861,19 +130807,19 @@ export default { 38 ], "order_by": [ - 2932, + 2936, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 2930 ] } ], "player_leaderboard_rank_aggregate": [ - 2923, + 2927, { "distinct_on": [ - 2933, + 2937, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -130883,19 +130829,19 @@ export default { 38 ], "order_by": [ - 2932, + 2936, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 2930 ] } ], "player_match_map_stats": [ - 2945, + 2949, { "distinct_on": [ - 2966, + 2970, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -130905,19 +130851,19 @@ export default { 38 ], "order_by": [ - 2964, + 2968, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 2958 ] } ], "player_match_map_stats_aggregate": [ - 2946, + 2950, { "distinct_on": [ - 2966, + 2970, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -130927,19 +130873,19 @@ export default { 38 ], "order_by": [ - 2964, + 2968, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 2958 ] } ], "player_match_map_stats_by_pk": [ - 2945, + 2949, { "match_map_id": [ - 4462, + 4466, "uuid!" ], "steam_id": [ @@ -130949,10 +130895,10 @@ export default { } ], "player_match_performance_v": [ - 2986, + 2990, { "distinct_on": [ - 2994, + 2998, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -130962,19 +130908,19 @@ export default { 38 ], "order_by": [ - 2993, + 2997, "[player_match_performance_v_order_by!]" ], "where": [ - 2990 + 2994 ] } ], "player_match_performance_v_aggregate": [ - 2987, + 2991, { "distinct_on": [ - 2994, + 2998, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -130984,19 +130930,19 @@ export default { 38 ], "order_by": [ - 2993, + 2997, "[player_match_performance_v_order_by!]" ], "where": [ - 2990 + 2994 ] } ], "player_match_stats_v": [ - 3004, + 3008, { "distinct_on": [ - 3020, + 3024, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -131006,19 +130952,19 @@ export default { 38 ], "order_by": [ - 3019, + 3023, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3017 ] } ], "player_match_stats_v_aggregate": [ - 3005, + 3009, { "distinct_on": [ - 3020, + 3024, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -131028,19 +130974,19 @@ export default { 38 ], "order_by": [ - 3019, + 3023, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3017 ] } ], "player_objectives": [ - 3037, + 3041, { "distinct_on": [ - 3058, + 3062, "[player_objectives_select_column!]" ], "limit": [ @@ -131050,19 +130996,19 @@ export default { 38 ], "order_by": [ - 3056, + 3060, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3050 ] } ], "player_objectives_aggregate": [ - 3038, + 3042, { "distinct_on": [ - 3058, + 3062, "[player_objectives_select_column!]" ], "limit": [ @@ -131072,19 +131018,19 @@ export default { 38 ], "order_by": [ - 3056, + 3060, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3050 ] } ], "player_objectives_by_pk": [ - 3037, + 3041, { "match_map_id": [ - 4462, + 4466, "uuid!" ], "player_steam_id": [ @@ -131092,16 +131038,16 @@ export default { "bigint!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "player_performance_v": [ - 3078, + 3082, { "distinct_on": [ - 3086, + 3090, "[player_performance_v_select_column!]" ], "limit": [ @@ -131111,19 +131057,19 @@ export default { 38 ], "order_by": [ - 3085, + 3089, "[player_performance_v_order_by!]" ], "where": [ - 3082 + 3086 ] } ], "player_performance_v_aggregate": [ - 3079, + 3083, { "distinct_on": [ - 3086, + 3090, "[player_performance_v_select_column!]" ], "limit": [ @@ -131133,19 +131079,19 @@ export default { 38 ], "order_by": [ - 3085, + 3089, "[player_performance_v_order_by!]" ], "where": [ - 3082 + 3086 ] } ], "player_premier_rank_history": [ - 3096, + 3100, { "distinct_on": [ - 3117, + 3121, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -131155,19 +131101,19 @@ export default { 38 ], "order_by": [ - 3115, + 3119, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3109 ] } ], "player_premier_rank_history_aggregate": [ - 3097, + 3101, { "distinct_on": [ - 3117, + 3121, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -131177,28 +131123,28 @@ export default { 38 ], "order_by": [ - 3115, + 3119, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3109 ] } ], "player_premier_rank_history_by_pk": [ - 3096, + 3100, { "id": [ - 4462, + 4466, "uuid!" ] } ], "player_sanctions": [ - 3137, + 3141, { "distinct_on": [ - 3158, + 3162, "[player_sanctions_select_column!]" ], "limit": [ @@ -131208,19 +131154,19 @@ export default { 38 ], "order_by": [ - 3156, + 3160, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3150 ] } ], "player_sanctions_aggregate": [ - 3138, + 3142, { "distinct_on": [ - 3158, + 3162, "[player_sanctions_select_column!]" ], "limit": [ @@ -131230,32 +131176,32 @@ export default { 38 ], "order_by": [ - 3156, + 3160, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3150 ] } ], "player_sanctions_by_pk": [ - 3137, + 3141, { "created_at": [ - 4024, + 4028, "timestamptz!" ], "id": [ - 4462, + 4466, "uuid!" ] } ], "player_season_stats": [ - 3178, + 3182, { "distinct_on": [ - 3209, + 3213, "[player_season_stats_select_column!]" ], "limit": [ @@ -131265,19 +131211,19 @@ export default { 38 ], "order_by": [ - 3207, + 3211, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3201 ] } ], "player_season_stats_aggregate": [ - 3179, + 3183, { "distinct_on": [ - 3209, + 3213, "[player_season_stats_select_column!]" ], "limit": [ @@ -131287,32 +131233,32 @@ export default { 38 ], "order_by": [ - 3207, + 3211, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3201 ] } ], "player_season_stats_by_pk": [ - 3178, + 3182, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4462, + 4466, "uuid!" ] } ], "player_stats": [ - 3237, + 3241, { "distinct_on": [ - 3252, + 3256, "[player_stats_select_column!]" ], "limit": [ @@ -131322,19 +131268,19 @@ export default { 38 ], "order_by": [ - 3250, + 3254, "[player_stats_order_by!]" ], "where": [ - 3241 + 3245 ] } ], "player_stats_aggregate": [ - 3238, + 3242, { "distinct_on": [ - 3252, + 3256, "[player_stats_select_column!]" ], "limit": [ @@ -131344,16 +131290,16 @@ export default { 38 ], "order_by": [ - 3250, + 3254, "[player_stats_order_by!]" ], "where": [ - 3241 + 3245 ] } ], "player_stats_by_pk": [ - 3237, + 3241, { "player_steam_id": [ 180, @@ -131362,10 +131308,10 @@ export default { } ], "player_steam_bot_friend": [ - 3265, + 3269, { "distinct_on": [ - 3284, + 3288, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -131375,19 +131321,19 @@ export default { 38 ], "order_by": [ - 3281, + 3285, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3270 + 3274 ] } ], "player_steam_bot_friend_aggregate": [ - 3266, + 3270, { "distinct_on": [ - 3284, + 3288, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -131397,16 +131343,16 @@ export default { 38 ], "order_by": [ - 3281, + 3285, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3270 + 3274 ] } ], "player_steam_bot_friend_by_pk": [ - 3265, + 3269, { "steam_id": [ 180, @@ -131415,10 +131361,10 @@ export default { } ], "player_steam_match_auth": [ - 3297, + 3301, { "distinct_on": [ - 3311, + 3315, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -131428,19 +131374,19 @@ export default { 38 ], "order_by": [ - 3309, + 3313, "[player_steam_match_auth_order_by!]" ], "where": [ - 3301 + 3305 ] } ], "player_steam_match_auth_aggregate": [ - 3298, + 3302, { "distinct_on": [ - 3311, + 3315, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -131450,16 +131396,16 @@ export default { 38 ], "order_by": [ - 3309, + 3313, "[player_steam_match_auth_order_by!]" ], "where": [ - 3301 + 3305 ] } ], "player_steam_match_auth_by_pk": [ - 3297, + 3301, { "steam_id": [ 180, @@ -131468,10 +131414,10 @@ export default { } ], "player_unused_utility": [ - 3324, + 3328, { "distinct_on": [ - 3345, + 3349, "[player_unused_utility_select_column!]" ], "limit": [ @@ -131481,19 +131427,19 @@ export default { 38 ], "order_by": [ - 3343, + 3347, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3337 ] } ], "player_unused_utility_aggregate": [ - 3325, + 3329, { "distinct_on": [ - 3345, + 3349, "[player_unused_utility_select_column!]" ], "limit": [ @@ -131503,19 +131449,19 @@ export default { 38 ], "order_by": [ - 3343, + 3347, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3337 ] } ], "player_unused_utility_by_pk": [ - 3324, + 3328, { "match_map_id": [ - 4462, + 4466, "uuid!" ], "player_steam_id": [ @@ -131525,10 +131471,10 @@ export default { } ], "player_utility": [ - 3365, + 3369, { "distinct_on": [ - 3386, + 3390, "[player_utility_select_column!]" ], "limit": [ @@ -131538,19 +131484,19 @@ export default { 38 ], "order_by": [ - 3384, + 3388, "[player_utility_order_by!]" ], "where": [ - 3374 + 3378 ] } ], "player_utility_aggregate": [ - 3366, + 3370, { "distinct_on": [ - 3386, + 3390, "[player_utility_select_column!]" ], "limit": [ @@ -131560,36 +131506,36 @@ export default { 38 ], "order_by": [ - 3384, + 3388, "[player_utility_order_by!]" ], "where": [ - 3374 + 3378 ] } ], "player_utility_by_pk": [ - 3365, + 3369, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 3406, + 3410, { "distinct_on": [ - 3422, + 3426, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -131599,19 +131545,19 @@ export default { 38 ], "order_by": [ - 3421, + 3425, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3419 ] } ], "player_weapon_stats_v_aggregate": [ - 3407, + 3411, { "distinct_on": [ - 3422, + 3426, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -131621,19 +131567,19 @@ export default { 38 ], "order_by": [ - 3421, + 3425, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3419 ] } ], "players": [ - 3439, + 3443, { "distinct_on": [ - 3454, + 3458, "[players_select_column!]" ], "limit": [ @@ -131643,19 +131589,19 @@ export default { 38 ], "order_by": [ - 3452, + 3456, "[players_order_by!]" ], "where": [ - 3443 + 3447 ] } ], "players_aggregate": [ - 3440, + 3444, { "distinct_on": [ - 3454, + 3458, "[players_select_column!]" ], "limit": [ @@ -131665,16 +131611,16 @@ export default { 38 ], "order_by": [ - 3452, + 3456, "[players_order_by!]" ], "where": [ - 3443 + 3447 ] } ], "players_by_pk": [ - 3439, + 3443, { "steam_id": [ 180, @@ -131683,10 +131629,10 @@ export default { } ], "plugin_versions": [ - 3467, + 3471, { "distinct_on": [ - 3481, + 3485, "[plugin_versions_select_column!]" ], "limit": [ @@ -131696,19 +131642,19 @@ export default { 38 ], "order_by": [ - 3479, + 3483, "[plugin_versions_order_by!]" ], "where": [ - 3471 + 3475 ] } ], "plugin_versions_aggregate": [ - 3468, + 3472, { "distinct_on": [ - 3481, + 3485, "[plugin_versions_select_column!]" ], "limit": [ @@ -131718,16 +131664,16 @@ export default { 38 ], "order_by": [ - 3479, + 3483, "[plugin_versions_order_by!]" ], "where": [ - 3471 + 3475 ] } ], "plugin_versions_by_pk": [ - 3467, + 3471, { "runtime": [ 901, @@ -131756,10 +131702,10 @@ export default { } ], "seasons": [ - 3498, + 3502, { "distinct_on": [ - 3513, + 3517, "[seasons_select_column!]" ], "limit": [ @@ -131769,19 +131715,19 @@ export default { 38 ], "order_by": [ - 3511, + 3515, "[seasons_order_by!]" ], "where": [ - 3502 + 3506 ] } ], "seasons_aggregate": [ - 3499, + 3503, { "distinct_on": [ - 3513, + 3517, "[seasons_select_column!]" ], "limit": [ @@ -131791,28 +131737,28 @@ export default { 38 ], "order_by": [ - 3511, + 3515, "[seasons_order_by!]" ], "where": [ - 3502 + 3506 ] } ], "seasons_by_pk": [ - 3498, + 3502, { "id": [ - 4462, + 4466, "uuid!" ] } ], "server_regions": [ - 3526, + 3530, { "distinct_on": [ - 3540, + 3544, "[server_regions_select_column!]" ], "limit": [ @@ -131822,19 +131768,19 @@ export default { 38 ], "order_by": [ - 3538, + 3542, "[server_regions_order_by!]" ], "where": [ - 3530 + 3534 ] } ], "server_regions_aggregate": [ - 3527, + 3531, { "distinct_on": [ - 3540, + 3544, "[server_regions_select_column!]" ], "limit": [ @@ -131844,16 +131790,16 @@ export default { 38 ], "order_by": [ - 3538, + 3542, "[server_regions_order_by!]" ], "where": [ - 3530 + 3534 ] } ], "server_regions_by_pk": [ - 3526, + 3530, { "value": [ 78, @@ -131862,10 +131808,10 @@ export default { } ], "servers": [ - 3553, + 3557, { "distinct_on": [ - 3577, + 3581, "[servers_select_column!]" ], "limit": [ @@ -131875,19 +131821,19 @@ export default { 38 ], "order_by": [ - 3575, + 3579, "[servers_order_by!]" ], "where": [ - 3564 + 3568 ] } ], "servers_aggregate": [ - 3554, + 3558, { "distinct_on": [ - 3577, + 3581, "[servers_select_column!]" ], "limit": [ @@ -131897,28 +131843,28 @@ export default { 38 ], "order_by": [ - 3575, + 3579, "[servers_order_by!]" ], "where": [ - 3564 + 3568 ] } ], "servers_by_pk": [ - 3553, + 3557, { "id": [ - 4462, + 4466, "uuid!" ] } ], "settings": [ - 3599, + 3603, { "distinct_on": [ - 3611, + 3615, "[settings_select_column!]" ], "limit": [ @@ -131928,19 +131874,19 @@ export default { 38 ], "order_by": [ - 3609, + 3613, "[settings_order_by!]" ], "where": [ - 3602 + 3606 ] } ], "settings_aggregate": [ - 3600, + 3604, { "distinct_on": [ - 3611, + 3615, "[settings_select_column!]" ], "limit": [ @@ -131950,16 +131896,16 @@ export default { 38 ], "order_by": [ - 3609, + 3613, "[settings_order_by!]" ], "where": [ - 3602 + 3606 ] } ], "settings_by_pk": [ - 3599, + 3603, { "name": [ 78, @@ -131971,10 +131917,10 @@ export default { 72 ], "steam_account_claims": [ - 3619, + 3623, { "distinct_on": [ - 3637, + 3641, "[steam_account_claims_select_column!]" ], "limit": [ @@ -131984,19 +131930,19 @@ export default { 38 ], "order_by": [ - 3635, + 3639, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3630 ] } ], "steam_account_claims_aggregate": [ - 3620, + 3624, { "distinct_on": [ - 3637, + 3641, "[steam_account_claims_select_column!]" ], "limit": [ @@ -132006,28 +131952,28 @@ export default { 38 ], "order_by": [ - 3635, + 3639, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3630 ] } ], "steam_account_claims_by_pk": [ - 3619, + 3623, { "id": [ - 4462, + 4466, "uuid!" ] } ], "steam_accounts": [ - 3643, + 3647, { "distinct_on": [ - 3658, + 3662, "[steam_accounts_select_column!]" ], "limit": [ @@ -132037,19 +131983,19 @@ export default { 38 ], "order_by": [ - 3656, + 3660, "[steam_accounts_order_by!]" ], "where": [ - 3647 + 3651 ] } ], "steam_accounts_aggregate": [ - 3644, + 3648, { "distinct_on": [ - 3658, + 3662, "[steam_accounts_select_column!]" ], "limit": [ @@ -132059,28 +132005,28 @@ export default { 38 ], "order_by": [ - 3656, + 3660, "[steam_accounts_order_by!]" ], "where": [ - 3647 + 3651 ] } ], "steam_accounts_by_pk": [ - 3643, + 3647, { "id": [ - 4462, + 4466, "uuid!" ] } ], "system_alerts": [ - 3671, + 3675, { "distinct_on": [ - 3685, + 3689, "[system_alerts_select_column!]" ], "limit": [ @@ -132090,19 +132036,19 @@ export default { 38 ], "order_by": [ - 3683, + 3687, "[system_alerts_order_by!]" ], "where": [ - 3675 + 3679 ] } ], "system_alerts_aggregate": [ - 3672, + 3676, { "distinct_on": [ - 3685, + 3689, "[system_alerts_select_column!]" ], "limit": [ @@ -132112,19 +132058,19 @@ export default { 38 ], "order_by": [ - 3683, + 3687, "[system_alerts_order_by!]" ], "where": [ - 3675 + 3679 ] } ], "system_alerts_by_pk": [ - 3671, + 3675, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -132133,16 +132079,16 @@ export default { 85, { "team_id": [ - 4462, + 4466, "uuid!" ] } ], "team_invites": [ - 3698, + 3702, { "distinct_on": [ - 3719, + 3723, "[team_invites_select_column!]" ], "limit": [ @@ -132152,19 +132098,19 @@ export default { 38 ], "order_by": [ - 3717, + 3721, "[team_invites_order_by!]" ], "where": [ - 3707 + 3711 ] } ], "team_invites_aggregate": [ - 3699, + 3703, { "distinct_on": [ - 3719, + 3723, "[team_invites_select_column!]" ], "limit": [ @@ -132174,28 +132120,28 @@ export default { 38 ], "order_by": [ - 3717, + 3721, "[team_invites_order_by!]" ], "where": [ - 3707 + 3711 ] } ], "team_invites_by_pk": [ - 3698, + 3702, { "id": [ - 4462, + 4466, "uuid!" ] } ], "team_roster": [ - 3739, + 3743, { "distinct_on": [ - 3762, + 3766, "[team_roster_select_column!]" ], "limit": [ @@ -132205,19 +132151,19 @@ export default { 38 ], "order_by": [ - 3760, + 3764, "[team_roster_order_by!]" ], "where": [ - 3750 + 3754 ] } ], "team_roster_aggregate": [ - 3740, + 3744, { "distinct_on": [ - 3762, + 3766, "[team_roster_select_column!]" ], "limit": [ @@ -132227,32 +132173,32 @@ export default { 38 ], "order_by": [ - 3760, + 3764, "[team_roster_order_by!]" ], "where": [ - 3750 + 3754 ] } ], "team_roster_by_pk": [ - 3739, + 3743, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4462, + 4466, "uuid!" ] } ], "team_scrim_alerts": [ - 3784, + 3788, { "distinct_on": [ - 3798, + 3802, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -132262,19 +132208,19 @@ export default { 38 ], "order_by": [ - 3796, + 3800, "[team_scrim_alerts_order_by!]" ], "where": [ - 3788 + 3792 ] } ], "team_scrim_alerts_aggregate": [ - 3785, + 3789, { "distinct_on": [ - 3798, + 3802, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -132284,28 +132230,28 @@ export default { 38 ], "order_by": [ - 3796, + 3800, "[team_scrim_alerts_order_by!]" ], "where": [ - 3788 + 3792 ] } ], "team_scrim_alerts_by_pk": [ - 3784, + 3788, { "id": [ - 4462, + 4466, "uuid!" ] } ], "team_scrim_availability": [ - 3811, + 3815, { "distinct_on": [ - 3831, + 3835, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -132315,19 +132261,19 @@ export default { 38 ], "order_by": [ - 3829, + 3833, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 3824 ] } ], "team_scrim_availability_aggregate": [ - 3812, + 3816, { "distinct_on": [ - 3831, + 3835, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -132337,28 +132283,28 @@ export default { 38 ], "order_by": [ - 3829, + 3833, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 3824 ] } ], "team_scrim_availability_by_pk": [ - 3811, + 3815, { "id": [ - 4462, + 4466, "uuid!" ] } ], "team_scrim_request_proposals": [ - 3839, + 3843, { "distinct_on": [ - 3860, + 3864, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -132368,19 +132314,19 @@ export default { 38 ], "order_by": [ - 3858, + 3862, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 3852 ] } ], "team_scrim_request_proposals_aggregate": [ - 3840, + 3844, { "distinct_on": [ - 3860, + 3864, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -132390,28 +132336,28 @@ export default { 38 ], "order_by": [ - 3858, + 3862, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 3852 ] } ], "team_scrim_request_proposals_by_pk": [ - 3839, + 3843, { "id": [ - 4462, + 4466, "uuid!" ] } ], "team_scrim_requests": [ - 3880, + 3884, { "distinct_on": [ - 3904, + 3908, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -132421,19 +132367,19 @@ export default { 38 ], "order_by": [ - 3902, + 3906, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 3895 ] } ], "team_scrim_requests_aggregate": [ - 3881, + 3885, { "distinct_on": [ - 3904, + 3908, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -132443,28 +132389,28 @@ export default { 38 ], "order_by": [ - 3902, + 3906, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 3895 ] } ], "team_scrim_requests_by_pk": [ - 3880, + 3884, { "id": [ - 4462, + 4466, "uuid!" ] } ], "team_scrim_settings": [ - 3926, + 3930, { "distinct_on": [ - 3941, + 3945, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -132474,19 +132420,19 @@ export default { 38 ], "order_by": [ - 3939, + 3943, "[team_scrim_settings_order_by!]" ], "where": [ - 3930 + 3934 ] } ], "team_scrim_settings_aggregate": [ - 3927, + 3931, { "distinct_on": [ - 3941, + 3945, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -132496,28 +132442,28 @@ export default { 38 ], "order_by": [ - 3939, + 3943, "[team_scrim_settings_order_by!]" ], "where": [ - 3930 + 3934 ] } ], "team_scrim_settings_by_pk": [ - 3926, + 3930, { "id": [ - 4462, + 4466, "uuid!" ] } ], "team_suggestions": [ - 3954, + 3958, { "distinct_on": [ - 3968, + 3972, "[team_suggestions_select_column!]" ], "limit": [ @@ -132527,19 +132473,19 @@ export default { 38 ], "order_by": [ - 3966, + 3970, "[team_suggestions_order_by!]" ], "where": [ - 3958 + 3962 ] } ], "team_suggestions_aggregate": [ - 3955, + 3959, { "distinct_on": [ - 3968, + 3972, "[team_suggestions_select_column!]" ], "limit": [ @@ -132549,28 +132495,28 @@ export default { 38 ], "order_by": [ - 3966, + 3970, "[team_suggestions_order_by!]" ], "where": [ - 3958 + 3962 ] } ], "team_suggestions_by_pk": [ - 3954, + 3958, { "id": [ - 4462, + 4466, "uuid!" ] } ], "teams": [ - 3981, + 3985, { "distinct_on": [ - 4003, + 4007, "[teams_select_column!]" ], "limit": [ @@ -132580,19 +132526,19 @@ export default { 38 ], "order_by": [ - 4001, + 4005, "[teams_order_by!]" ], "where": [ - 3990 + 3994 ] } ], "teams_aggregate": [ - 3982, + 3986, { "distinct_on": [ - 4003, + 4007, "[teams_select_column!]" ], "limit": [ @@ -132602,19 +132548,19 @@ export default { 38 ], "order_by": [ - 4001, + 4005, "[teams_order_by!]" ], "where": [ - 3990 + 3994 ] } ], "teams_by_pk": [ - 3981, + 3985, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -132623,10 +132569,10 @@ export default { 86 ], "tournament_brackets": [ - 4026, + 4030, { "distinct_on": [ - 4050, + 4054, "[tournament_brackets_select_column!]" ], "limit": [ @@ -132636,19 +132582,19 @@ export default { 38 ], "order_by": [ - 4048, + 4052, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4041 ] } ], "tournament_brackets_aggregate": [ - 4027, + 4031, { "distinct_on": [ - 4050, + 4054, "[tournament_brackets_select_column!]" ], "limit": [ @@ -132658,28 +132604,28 @@ export default { 38 ], "order_by": [ - 4048, + 4052, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4041 ] } ], "tournament_brackets_by_pk": [ - 4026, + 4030, { "id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_organizers": [ - 4072, + 4076, { "distinct_on": [ - 4093, + 4097, "[tournament_organizers_select_column!]" ], "limit": [ @@ -132689,19 +132635,19 @@ export default { 38 ], "order_by": [ - 4091, + 4095, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4085 ] } ], "tournament_organizers_aggregate": [ - 4073, + 4077, { "distinct_on": [ - 4093, + 4097, "[tournament_organizers_select_column!]" ], "limit": [ @@ -132711,32 +132657,32 @@ export default { 38 ], "order_by": [ - 4091, + 4095, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4085 ] } ], "tournament_organizers_by_pk": [ - 4072, + 4076, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_stage_windows": [ - 4113, + 4117, { "distinct_on": [ - 4134, + 4138, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -132746,19 +132692,19 @@ export default { 38 ], "order_by": [ - 4132, + 4136, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4126 ] } ], "tournament_stage_windows_aggregate": [ - 4114, + 4118, { "distinct_on": [ - 4134, + 4138, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -132768,28 +132714,28 @@ export default { 38 ], "order_by": [ - 4132, + 4136, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4126 ] } ], "tournament_stage_windows_by_pk": [ - 4113, + 4117, { "id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_stages": [ - 4154, + 4158, { "distinct_on": [ - 4183, + 4187, "[tournament_stages_select_column!]" ], "limit": [ @@ -132799,19 +132745,19 @@ export default { 38 ], "order_by": [ - 4180, + 4184, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4170 ] } ], "tournament_stages_aggregate": [ - 4155, + 4159, { "distinct_on": [ - 4183, + 4187, "[tournament_stages_select_column!]" ], "limit": [ @@ -132821,28 +132767,28 @@ export default { 38 ], "order_by": [ - 4180, + 4184, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4170 ] } ], "tournament_stages_by_pk": [ - 4154, + 4158, { "id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_team_invites": [ - 4205, + 4209, { "distinct_on": [ - 4226, + 4230, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -132852,19 +132798,19 @@ export default { 38 ], "order_by": [ - 4224, + 4228, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4218 ] } ], "tournament_team_invites_aggregate": [ - 4206, + 4210, { "distinct_on": [ - 4226, + 4230, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -132874,28 +132820,28 @@ export default { 38 ], "order_by": [ - 4224, + 4228, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4218 ] } ], "tournament_team_invites_by_pk": [ - 4205, + 4209, { "id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_team_roster": [ - 4246, + 4250, { "distinct_on": [ - 4267, + 4271, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -132905,19 +132851,19 @@ export default { 38 ], "order_by": [ - 4265, + 4269, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4259 ] } ], "tournament_team_roster_aggregate": [ - 4247, + 4251, { "distinct_on": [ - 4267, + 4271, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -132927,32 +132873,32 @@ export default { 38 ], "order_by": [ - 4265, + 4269, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4259 ] } ], "tournament_team_roster_by_pk": [ - 4246, + 4250, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_teams": [ - 4287, + 4291, { "distinct_on": [ - 4309, + 4313, "[tournament_teams_select_column!]" ], "limit": [ @@ -132962,19 +132908,19 @@ export default { 38 ], "order_by": [ - 4307, + 4311, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4300 ] } ], "tournament_teams_aggregate": [ - 4288, + 4292, { "distinct_on": [ - 4309, + 4313, "[tournament_teams_select_column!]" ], "limit": [ @@ -132984,28 +132930,28 @@ export default { 38 ], "order_by": [ - 4307, + 4311, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4300 ] } ], "tournament_teams_by_pk": [ - 4287, + 4291, { "id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_trophies": [ - 4329, + 4333, { "distinct_on": [ - 4352, + 4356, "[tournament_trophies_select_column!]" ], "limit": [ @@ -133015,19 +132961,19 @@ export default { 38 ], "order_by": [ - 4350, + 4354, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4344 ] } ], "tournament_trophies_aggregate": [ - 4330, + 4334, { "distinct_on": [ - 4352, + 4356, "[tournament_trophies_select_column!]" ], "limit": [ @@ -133037,28 +132983,28 @@ export default { 38 ], "order_by": [ - 4350, + 4354, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4344 ] } ], "tournament_trophies_by_pk": [ - 4329, + 4333, { "id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_trophy_configs": [ - 4374, + 4378, { "distinct_on": [ - 4396, + 4400, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -133068,19 +133014,19 @@ export default { 38 ], "order_by": [ - 4394, + 4398, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4383 + 4387 ] } ], "tournament_trophy_configs_aggregate": [ - 4375, + 4379, { "distinct_on": [ - 4396, + 4400, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -133090,28 +133036,28 @@ export default { 38 ], "order_by": [ - 4394, + 4398, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4383 + 4387 ] } ], "tournament_trophy_configs_by_pk": [ - 4374, + 4378, { "id": [ - 4462, + 4466, "uuid!" ] } ], "tournaments": [ - 4416, + 4420, { "distinct_on": [ - 4440, + 4444, "[tournaments_select_column!]" ], "limit": [ @@ -133121,19 +133067,19 @@ export default { 38 ], "order_by": [ - 4438, + 4442, "[tournaments_order_by!]" ], "where": [ - 4427 + 4431 ] } ], "tournaments_aggregate": [ - 4417, + 4421, { "distinct_on": [ - 4440, + 4444, "[tournaments_select_column!]" ], "limit": [ @@ -133143,28 +133089,28 @@ export default { 38 ], "order_by": [ - 4438, + 4442, "[tournaments_order_by!]" ], "where": [ - 4427 + 4431 ] } ], "tournaments_by_pk": [ - 4416, + 4420, { "id": [ - 4462, + 4466, "uuid!" ] } ], "v_gpu_pool_status": [ - 4465, + 4469, { "distinct_on": [ - 4473, + 4477, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -133174,19 +133120,19 @@ export default { 38 ], "order_by": [ - 4472, + 4476, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4469 + 4473 ] } ], "v_gpu_pool_status_aggregate": [ - 4466, + 4470, { "distinct_on": [ - 4473, + 4477, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -133196,19 +133142,19 @@ export default { 38 ], "order_by": [ - 4472, + 4476, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4469 + 4473 ] } ], "v_league_division_standings": [ - 4483, + 4487, { "distinct_on": [ - 4499, + 4503, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -133218,19 +133164,19 @@ export default { 38 ], "order_by": [ - 4498, + 4502, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4496 ] } ], "v_league_division_standings_aggregate": [ - 4484, + 4488, { "distinct_on": [ - 4499, + 4503, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -133240,19 +133186,19 @@ export default { 38 ], "order_by": [ - 4498, + 4502, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4496 ] } ], "v_league_season_player_stats": [ - 4516, + 4520, { "distinct_on": [ - 4542, + 4546, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -133262,19 +133208,19 @@ export default { 38 ], "order_by": [ - 4541, + 4545, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4539 ] } ], "v_league_season_player_stats_aggregate": [ - 4517, + 4521, { "distinct_on": [ - 4542, + 4546, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -133284,19 +133230,19 @@ export default { 38 ], "order_by": [ - 4541, + 4545, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4539 ] } ], "v_match_captains": [ - 4567, + 4571, { "distinct_on": [ - 4579, + 4583, "[v_match_captains_select_column!]" ], "limit": [ @@ -133306,19 +133252,19 @@ export default { 38 ], "order_by": [ - 4578, + 4582, "[v_match_captains_order_by!]" ], "where": [ - 4571 + 4575 ] } ], "v_match_captains_aggregate": [ - 4568, + 4572, { "distinct_on": [ - 4579, + 4583, "[v_match_captains_select_column!]" ], "limit": [ @@ -133328,19 +133274,19 @@ export default { 38 ], "order_by": [ - 4578, + 4582, "[v_match_captains_order_by!]" ], "where": [ - 4571 + 4575 ] } ], "v_match_clutches": [ - 4591, + 4595, { "distinct_on": [ - 4607, + 4611, "[v_match_clutches_select_column!]" ], "limit": [ @@ -133350,19 +133296,19 @@ export default { 38 ], "order_by": [ - 4606, + 4610, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4604 ] } ], "v_match_clutches_aggregate": [ - 4592, + 4596, { "distinct_on": [ - 4607, + 4611, "[v_match_clutches_select_column!]" ], "limit": [ @@ -133372,19 +133318,19 @@ export default { 38 ], "order_by": [ - 4606, + 4610, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4604 ] } ], "v_match_kill_pairs": [ - 4624, + 4628, { "distinct_on": [ - 4632, + 4636, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -133394,19 +133340,19 @@ export default { 38 ], "order_by": [ - 4631, + 4635, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4628 + 4632 ] } ], "v_match_kill_pairs_aggregate": [ - 4625, + 4629, { "distinct_on": [ - 4632, + 4636, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -133416,19 +133362,19 @@ export default { 38 ], "order_by": [ - 4631, + 4635, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4628 + 4632 ] } ], "v_match_lineup_buy_types": [ - 4642, + 4646, { "distinct_on": [ - 4650, + 4654, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -133438,19 +133384,19 @@ export default { 38 ], "order_by": [ - 4649, + 4653, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4646 + 4650 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4643, + 4647, { "distinct_on": [ - 4650, + 4654, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -133460,19 +133406,19 @@ export default { 38 ], "order_by": [ - 4649, + 4653, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4646 + 4650 ] } ], "v_match_lineup_map_stats": [ - 4660, + 4664, { "distinct_on": [ - 4668, + 4672, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -133482,19 +133428,19 @@ export default { 38 ], "order_by": [ - 4667, + 4671, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4664 + 4668 ] } ], "v_match_lineup_map_stats_aggregate": [ - 4661, + 4665, { "distinct_on": [ - 4668, + 4672, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -133504,19 +133450,19 @@ export default { 38 ], "order_by": [ - 4667, + 4671, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4664 + 4668 ] } ], "v_match_map_backup_rounds": [ - 4678, + 4682, { "distinct_on": [ - 4689, + 4693, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -133526,19 +133472,19 @@ export default { 38 ], "order_by": [ - 4688, + 4692, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4682 + 4686 ] } ], "v_match_map_backup_rounds_aggregate": [ - 4679, + 4683, { "distinct_on": [ - 4689, + 4693, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -133548,19 +133494,19 @@ export default { 38 ], "order_by": [ - 4688, + 4692, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4682 + 4686 ] } ], "v_match_player_buy_types": [ - 4701, + 4705, { "distinct_on": [ - 4709, + 4713, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -133570,19 +133516,19 @@ export default { 38 ], "order_by": [ - 4708, + 4712, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4705 + 4709 ] } ], "v_match_player_buy_types_aggregate": [ - 4702, + 4706, { "distinct_on": [ - 4709, + 4713, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -133592,19 +133538,19 @@ export default { 38 ], "order_by": [ - 4708, + 4712, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4705 + 4709 ] } ], "v_match_player_opening_duels": [ - 4719, + 4723, { "distinct_on": [ - 4735, + 4739, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -133614,19 +133560,19 @@ export default { 38 ], "order_by": [ - 4734, + 4738, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 4732 ] } ], "v_match_player_opening_duels_aggregate": [ - 4720, + 4724, { "distinct_on": [ - 4735, + 4739, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -133636,19 +133582,19 @@ export default { 38 ], "order_by": [ - 4734, + 4738, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 4732 ] } ], "v_player_arch_nemesis": [ - 4752, + 4756, { "distinct_on": [ - 4760, + 4764, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -133658,19 +133604,19 @@ export default { 38 ], "order_by": [ - 4759, + 4763, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4756 + 4760 ] } ], "v_player_arch_nemesis_aggregate": [ - 4753, + 4757, { "distinct_on": [ - 4760, + 4764, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -133680,19 +133626,19 @@ export default { 38 ], "order_by": [ - 4759, + 4763, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4756 + 4760 ] } ], "v_player_damage": [ - 4770, + 4774, { "distinct_on": [ - 4778, + 4782, "[v_player_damage_select_column!]" ], "limit": [ @@ -133702,19 +133648,19 @@ export default { 38 ], "order_by": [ - 4777, + 4781, "[v_player_damage_order_by!]" ], "where": [ - 4774 + 4778 ] } ], "v_player_damage_aggregate": [ - 4771, + 4775, { "distinct_on": [ - 4778, + 4782, "[v_player_damage_select_column!]" ], "limit": [ @@ -133724,19 +133670,19 @@ export default { 38 ], "order_by": [ - 4777, + 4781, "[v_player_damage_order_by!]" ], "where": [ - 4774 + 4778 ] } ], "v_player_elo": [ - 4788, + 4792, { "distinct_on": [ - 4814, + 4818, "[v_player_elo_select_column!]" ], "limit": [ @@ -133746,19 +133692,19 @@ export default { 38 ], "order_by": [ - 4813, + 4817, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 4811 ] } ], "v_player_elo_aggregate": [ - 4789, + 4793, { "distinct_on": [ - 4814, + 4818, "[v_player_elo_select_column!]" ], "limit": [ @@ -133768,19 +133714,19 @@ export default { 38 ], "order_by": [ - 4813, + 4817, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 4811 ] } ], "v_player_map_losses": [ - 4839, + 4843, { "distinct_on": [ - 4847, + 4851, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -133790,19 +133736,19 @@ export default { 38 ], "order_by": [ - 4846, + 4850, "[v_player_map_losses_order_by!]" ], "where": [ - 4843 + 4847 ] } ], "v_player_map_losses_aggregate": [ - 4840, + 4844, { "distinct_on": [ - 4847, + 4851, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -133812,19 +133758,19 @@ export default { 38 ], "order_by": [ - 4846, + 4850, "[v_player_map_losses_order_by!]" ], "where": [ - 4843 + 4847 ] } ], "v_player_map_wins": [ - 4857, + 4861, { "distinct_on": [ - 4865, + 4869, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -133834,19 +133780,19 @@ export default { 38 ], "order_by": [ - 4864, + 4868, "[v_player_map_wins_order_by!]" ], "where": [ - 4861 + 4865 ] } ], "v_player_map_wins_aggregate": [ - 4858, + 4862, { "distinct_on": [ - 4865, + 4869, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -133856,19 +133802,19 @@ export default { 38 ], "order_by": [ - 4864, + 4868, "[v_player_map_wins_order_by!]" ], "where": [ - 4861 + 4865 ] } ], "v_player_match_head_to_head": [ - 4875, + 4879, { "distinct_on": [ - 4883, + 4887, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -133878,19 +133824,19 @@ export default { 38 ], "order_by": [ - 4882, + 4886, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4879 + 4883 ] } ], "v_player_match_head_to_head_aggregate": [ - 4876, + 4880, { "distinct_on": [ - 4883, + 4887, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -133900,19 +133846,19 @@ export default { 38 ], "order_by": [ - 4882, + 4886, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4879 + 4883 ] } ], "v_player_match_map_hltv": [ - 4893, + 4897, { "distinct_on": [ - 4911, + 4915, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -133922,19 +133868,19 @@ export default { 38 ], "order_by": [ - 4910, + 4914, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 4906 ] } ], "v_player_match_map_hltv_aggregate": [ - 4894, + 4898, { "distinct_on": [ - 4911, + 4915, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -133944,19 +133890,19 @@ export default { 38 ], "order_by": [ - 4910, + 4914, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 4906 ] } ], "v_player_match_map_roles": [ - 4930, + 4934, { "distinct_on": [ - 4938, + 4942, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -133966,19 +133912,19 @@ export default { 38 ], "order_by": [ - 4937, + 4941, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4934 + 4938 ] } ], "v_player_match_map_roles_aggregate": [ - 4931, + 4935, { "distinct_on": [ - 4938, + 4942, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -133988,19 +133934,19 @@ export default { 38 ], "order_by": [ - 4937, + 4941, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4934 + 4938 ] } ], "v_player_match_performance": [ - 4948, + 4952, { "distinct_on": [ - 4956, + 4960, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -134010,19 +133956,19 @@ export default { 38 ], "order_by": [ - 4955, + 4959, "[v_player_match_performance_order_by!]" ], "where": [ - 4952 + 4956 ] } ], "v_player_match_performance_aggregate": [ - 4949, + 4953, { "distinct_on": [ - 4956, + 4960, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -134032,19 +133978,19 @@ export default { 38 ], "order_by": [ - 4955, + 4959, "[v_player_match_performance_order_by!]" ], "where": [ - 4952 + 4956 ] } ], "v_player_match_rating": [ - 4966, + 4970, { "distinct_on": [ - 4974, + 4978, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -134054,19 +134000,19 @@ export default { 38 ], "order_by": [ - 4973, + 4977, "[v_player_match_rating_order_by!]" ], "where": [ - 4970 + 4974 ] } ], "v_player_match_rating_aggregate": [ - 4967, + 4971, { "distinct_on": [ - 4974, + 4978, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -134076,19 +134022,19 @@ export default { 38 ], "order_by": [ - 4973, + 4977, "[v_player_match_rating_order_by!]" ], "where": [ - 4970 + 4974 ] } ], "v_player_multi_kills": [ - 4984, + 4988, { "distinct_on": [ - 5000, + 5004, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -134098,19 +134044,19 @@ export default { 38 ], "order_by": [ - 4999, + 5003, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 4997 ] } ], "v_player_multi_kills_aggregate": [ - 4985, + 4989, { "distinct_on": [ - 5000, + 5004, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -134120,19 +134066,19 @@ export default { 38 ], "order_by": [ - 4999, + 5003, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 4997 ] } ], "v_player_weapon_damage": [ - 5017, + 5021, { "distinct_on": [ - 5025, + 5029, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -134142,19 +134088,19 @@ export default { 38 ], "order_by": [ - 5024, + 5028, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5021 + 5025 ] } ], "v_player_weapon_damage_aggregate": [ - 5018, + 5022, { "distinct_on": [ - 5025, + 5029, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -134164,19 +134110,19 @@ export default { 38 ], "order_by": [ - 5024, + 5028, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5021 + 5025 ] } ], "v_player_weapon_kills": [ - 5035, + 5039, { "distinct_on": [ - 5043, + 5047, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -134186,19 +134132,19 @@ export default { 38 ], "order_by": [ - 5042, + 5046, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5039 + 5043 ] } ], "v_player_weapon_kills_aggregate": [ - 5036, + 5040, { "distinct_on": [ - 5043, + 5047, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -134208,19 +134154,19 @@ export default { 38 ], "order_by": [ - 5042, + 5046, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5039 + 5043 ] } ], "v_pool_maps": [ - 5053, + 5057, { "distinct_on": [ - 5070, + 5074, "[v_pool_maps_select_column!]" ], "limit": [ @@ -134230,19 +134176,19 @@ export default { 38 ], "order_by": [ - 5069, + 5073, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5066 ] } ], "v_pool_maps_aggregate": [ - 5054, + 5058, { "distinct_on": [ - 5070, + 5074, "[v_pool_maps_select_column!]" ], "limit": [ @@ -134252,19 +134198,19 @@ export default { 38 ], "order_by": [ - 5069, + 5073, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5066 ] } ], "v_steam_account_pool_status": [ - 5077, + 5081, { "distinct_on": [ - 5085, + 5089, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -134274,19 +134220,19 @@ export default { 38 ], "order_by": [ - 5084, + 5088, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5081 + 5085 ] } ], "v_steam_account_pool_status_aggregate": [ - 5078, + 5082, { "distinct_on": [ - 5085, + 5089, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -134296,19 +134242,19 @@ export default { 38 ], "order_by": [ - 5084, + 5088, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5081 + 5085 ] } ], "v_team_ranks": [ - 5095, + 5099, { "distinct_on": [ - 5105, + 5109, "[v_team_ranks_select_column!]" ], "limit": [ @@ -134318,19 +134264,19 @@ export default { 38 ], "order_by": [ - 5104, + 5108, "[v_team_ranks_order_by!]" ], "where": [ - 5099 + 5103 ] } ], "v_team_ranks_aggregate": [ - 5096, + 5100, { "distinct_on": [ - 5105, + 5109, "[v_team_ranks_select_column!]" ], "limit": [ @@ -134340,19 +134286,19 @@ export default { 38 ], "order_by": [ - 5104, + 5108, "[v_team_ranks_order_by!]" ], "where": [ - 5099 + 5103 ] } ], "v_team_reputation": [ - 5115, + 5119, { "distinct_on": [ - 5125, + 5129, "[v_team_reputation_select_column!]" ], "limit": [ @@ -134362,19 +134308,19 @@ export default { 38 ], "order_by": [ - 5124, + 5128, "[v_team_reputation_order_by!]" ], "where": [ - 5119 + 5123 ] } ], "v_team_reputation_aggregate": [ - 5116, + 5120, { "distinct_on": [ - 5125, + 5129, "[v_team_reputation_select_column!]" ], "limit": [ @@ -134384,19 +134330,19 @@ export default { 38 ], "order_by": [ - 5124, + 5128, "[v_team_reputation_order_by!]" ], "where": [ - 5119 + 5123 ] } ], "v_team_stage_results": [ - 5135, + 5139, { "distinct_on": [ - 5167, + 5171, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -134406,19 +134352,19 @@ export default { 38 ], "order_by": [ - 5165, + 5169, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5158 ] } ], "v_team_stage_results_aggregate": [ - 5136, + 5140, { "distinct_on": [ - 5167, + 5171, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -134428,32 +134374,32 @@ export default { 38 ], "order_by": [ - 5165, + 5169, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5158 ] } ], "v_team_stage_results_by_pk": [ - 5135, + 5139, { "tournament_stage_id": [ - 4462, + 4466, "uuid!" ], "tournament_team_id": [ - 4462, + 4466, "uuid!" ] } ], "v_team_tournament_results": [ - 5195, + 5199, { "distinct_on": [ - 5221, + 5225, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -134463,19 +134409,19 @@ export default { 38 ], "order_by": [ - 5220, + 5224, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5218 ] } ], "v_team_tournament_results_aggregate": [ - 5196, + 5200, { "distinct_on": [ - 5221, + 5225, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -134485,19 +134431,19 @@ export default { 38 ], "order_by": [ - 5220, + 5224, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5218 ] } ], "v_tournament_player_stats": [ - 5246, + 5250, { "distinct_on": [ - 5272, + 5276, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -134507,19 +134453,19 @@ export default { 38 ], "order_by": [ - 5271, + 5275, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5269 ] } ], "v_tournament_player_stats_aggregate": [ - 5247, + 5251, { "distinct_on": [ - 5272, + 5276, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -134529,11 +134475,11 @@ export default { 38 ], "order_by": [ - 5271, + 5275, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5269 ] } ], @@ -134546,7 +134492,7 @@ export default { 55, { "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -134555,17 +134501,17 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ], "reset_status": [ 78 ], "scheduled_at": [ - 4024 + 4028 ], "winning_lineup_id": [ - 4462 + 4466 ] } ], @@ -134573,7 +134519,7 @@ export default { 81, { "invite_id": [ - 4462, + 4466, "uuid!" ], "type": [ @@ -134586,7 +134532,7 @@ export default { 81, { "draftGameId": [ - 4462, + 4466, "uuid!" ], "steamId": [ @@ -134672,7 +134618,7 @@ export default { 81, { "game_server_node_id": [ - 4462, + 4466, "uuid!" ] } @@ -134693,7 +134639,7 @@ export default { 81, { "game_server_node_id": [ - 4462, + 4466, "uuid!" ] } @@ -134702,7 +134648,7 @@ export default { 81, { "job_id": [ - 4462, + 4466, "uuid!" ] } @@ -134711,7 +134657,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4466, "uuid!" ] } @@ -134720,7 +134666,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -134738,7 +134684,7 @@ export default { 81, { "request_id": [ - 4462, + 4466, "uuid!" ] } @@ -134747,7 +134693,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -134756,7 +134702,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4466, "uuid!" ] } @@ -134803,11 +134749,11 @@ export default { 81, { "proposed_scheduled_at": [ - 4024, + 4028, "timestamptz!" ], "request_id": [ - 4462, + 4466, "uuid!" ] } @@ -134828,7 +134774,7 @@ export default { 38 ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "preset": [ @@ -134863,7 +134809,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -134918,7 +134864,7 @@ export default { 81, { "clip_id": [ - 4462, + 4466, "uuid!" ] } @@ -134936,7 +134882,7 @@ export default { 81, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -134970,7 +134916,7 @@ export default { 81, { "tournament_id": [ - 4462, + 4466, "uuid!" ] } @@ -134988,11 +134934,11 @@ export default { 92, { "map_id": [ - 4462, + 4466, "uuid!" ], "map_pool_id": [ - 4462, + 4466, "uuid!" ] } @@ -135010,7 +134956,7 @@ export default { 111, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -135028,7 +134974,7 @@ export default { 152, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -135046,7 +134992,7 @@ export default { 185, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -135064,7 +135010,7 @@ export default { 237, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -135082,7 +135028,7 @@ export default { 264, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -135100,7 +135046,7 @@ export default { 309, { "draft_game_id": [ - 4462, + 4466, "uuid!" ], "steam_id": [ @@ -135122,7 +135068,7 @@ export default { 354, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -135900,7 +135846,7 @@ export default { 1313, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -135927,7 +135873,7 @@ export default { 1379, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -135945,7 +135891,7 @@ export default { 1407, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -135963,7 +135909,7 @@ export default { 1448, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -135981,7 +135927,7 @@ export default { 1489, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -135999,7 +135945,7 @@ export default { 1530, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -136017,7 +135963,7 @@ export default { 1555, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -136035,7 +135981,7 @@ export default { 1588, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -136053,7 +135999,7 @@ export default { 1629, { "league_team_season_id": [ - 4462, + 4466, "uuid!" ], "player_steam_id": [ @@ -136075,7 +136021,7 @@ export default { 1670, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -136093,7 +136039,7 @@ export default { 1712, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -136111,7 +136057,7 @@ export default { 1731, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -136129,7 +136075,7 @@ export default { 1750, { "lobby_id": [ - 4462, + 4466, "uuid!" ], "steam_id": [ @@ -136151,7 +136097,7 @@ export default { 1795, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -136169,7 +136115,7 @@ export default { 1814, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -136187,7 +136133,7 @@ export default { 1843, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -136205,7 +136151,7 @@ export default { 1885, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -136223,7 +136169,7 @@ export default { 1931, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -136241,7 +136187,7 @@ export default { 1976, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -136259,7 +136205,7 @@ export default { 2018, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -136277,7 +136223,7 @@ export default { 2069, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -136295,16 +136241,16 @@ export default { 2110, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_match_maps": [ - 2151, + 2153, { "where": [ - 2143, + 2145, "match_maps_bool_exp!" ] } @@ -136313,76 +136259,76 @@ export default { 2134, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_match_options": [ - 2186, + 2190, { "where": [ - 2180, + 2184, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2176, + 2180, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2218, + 2222, { "where": [ - 2211, + 2215, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2204, + 2208, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_match_streams": [ - 2251, + 2255, { "where": [ - 2240, + 2244, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2228, + 2232, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2286, + 2290, { "where": [ - 2281, + 2285, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2278, + 2282, { "type": [ 551, @@ -136391,34 +136337,34 @@ export default { } ], "delete_matches": [ - 2313, + 2317, { "where": [ - 2305, + 2309, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2296, + 2300, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2346, + 2350, { "where": [ - 2341, + 2345, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2338, + 2342, { "name": [ 78, @@ -136427,126 +136373,126 @@ export default { } ], "delete_my_friends": [ - 2378, + 2382, { "where": [ - 2368, + 2372, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2412, + 2416, { "where": [ - 2406, + 2410, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2402, + 2406, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_notifications": [ - 2452, + 2456, { "where": [ - 2441, + 2445, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 2429, + 2433, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_pending_match_import_players": [ - 2499, + 2503, { "where": [ - 2491, + 2495, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 2482, + 2486, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2479, + 2483, "numeric!" ] } ], "delete_pending_match_imports": [ - 2533, + 2537, { "where": [ - 2527, + 2531, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 2523, + 2527, { "valve_match_id": [ - 2479, + 2483, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 2561, + 2565, { "where": [ - 2555, + 2559, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 2551, + 2555, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 2595, + 2599, { "where": [ - 2587, + 2591, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 2578, + 2582, { "match_map_id": [ - 4462, + 4466, "uuid!" ], "steam_id": [ @@ -136560,16 +136506,16 @@ export default { } ], "delete_player_assists": [ - 2638, + 2642, { "where": [ - 2630, + 2634, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 2619, + 2623, { "attacked_steam_id": [ 180, @@ -136580,55 +136526,55 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "delete_player_damages": [ - 2699, + 2703, { "where": [ - 2691, + 2695, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 2682, + 2686, { "id": [ - 4462, + 4466, "uuid!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "delete_player_elo": [ - 2733, + 2737, { "where": [ - 2727, + 2731, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 2723, + 2727, { "match_id": [ - 4462, + 4466, "uuid!" ], "steam_id": [ @@ -136642,34 +136588,34 @@ export default { } ], "delete_player_faceit_rank_history": [ - 2767, + 2771, { "where": [ - 2759, + 2763, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 2750, + 2754, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_player_flashes": [ - 2810, + 2814, { "where": [ - 2802, + 2806, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 2791, + 2795, { "attacked_steam_id": [ 180, @@ -136680,26 +136626,26 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "delete_player_kills": [ - 2896, + 2900, { "where": [ - 2847, + 2851, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 2836, + 2840, { "attacked_steam_id": [ 180, @@ -136710,26 +136656,26 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 2865, + 2869, { "where": [ - 2857, + 2861, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 2848, + 2852, { "player_steam_id": [ 180, @@ -136742,28 +136688,28 @@ export default { } ], "delete_player_leaderboard_rank": [ - 2931, + 2935, { "where": [ - 2926, + 2930, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 2962, + 2966, { "where": [ - 2954, + 2958, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 2945, + 2949, { "match_map_id": [ - 4462, + 4466, "uuid!" ], "steam_id": [ @@ -136773,19 +136719,19 @@ export default { } ], "delete_player_objectives": [ - 3054, + 3058, { "where": [ - 3046, + 3050, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3037, + 3041, { "match_map_id": [ - 4462, + 4466, "uuid!" ], "player_steam_id": [ @@ -136793,84 +136739,84 @@ export default { "bigint!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3113, + 3117, { "where": [ - 3105, + 3109, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3096, + 3100, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_player_sanctions": [ - 3154, + 3158, { "where": [ - 3146, + 3150, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3137, + 3141, { "created_at": [ - 4024, + 4028, "timestamptz!" ], "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_player_season_stats": [ - 3205, + 3209, { "where": [ - 3197, + 3201, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3178, + 3182, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4462, + 4466, "uuid!" ] } ], "delete_player_stats": [ - 3247, + 3251, { "where": [ - 3241, + 3245, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3237, + 3241, { "player_steam_id": [ 180, @@ -136879,16 +136825,16 @@ export default { } ], "delete_player_steam_bot_friend": [ - 3279, + 3283, { "where": [ - 3270, + 3274, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3265, + 3269, { "steam_id": [ 180, @@ -136897,16 +136843,16 @@ export default { } ], "delete_player_steam_match_auth": [ - 3307, + 3311, { "where": [ - 3301, + 3305, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3297, + 3301, { "steam_id": [ 180, @@ -136915,19 +136861,19 @@ export default { } ], "delete_player_unused_utility": [ - 3341, + 3345, { "where": [ - 3333, + 3337, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3324, + 3328, { "match_map_id": [ - 4462, + 4466, "uuid!" ], "player_steam_id": [ @@ -136937,42 +136883,42 @@ export default { } ], "delete_player_utility": [ - 3382, + 3386, { "where": [ - 3374, + 3378, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3365, + 3369, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "delete_players": [ - 3449, + 3453, { "where": [ - 3443, + 3447, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 3439, + 3443, { "steam_id": [ 180, @@ -136981,16 +136927,16 @@ export default { } ], "delete_plugin_versions": [ - 3477, + 3481, { "where": [ - 3471, + 3475, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 3467, + 3471, { "runtime": [ 901, @@ -137003,34 +136949,34 @@ export default { } ], "delete_seasons": [ - 3508, + 3512, { "where": [ - 3502, + 3506, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 3498, + 3502, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_server_regions": [ - 3535, + 3539, { "where": [ - 3530, + 3534, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 3526, + 3530, { "value": [ 78, @@ -137039,34 +136985,34 @@ export default { } ], "delete_servers": [ - 3572, + 3576, { "where": [ - 3564, + 3568, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 3553, + 3557, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_settings": [ - 3607, + 3611, { "where": [ - 3602, + 3606, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 3599, + 3603, { "name": [ 78, @@ -137075,467 +137021,467 @@ export default { } ], "delete_steam_account_claims": [ - 3633, + 3637, { "where": [ - 3626, + 3630, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 3619, + 3623, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_steam_accounts": [ - 3653, + 3657, { "where": [ - 3647, + 3651, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 3643, + 3647, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_system_alerts": [ - 3681, + 3685, { "where": [ - 3675, + 3679, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 3671, + 3675, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_team_invites": [ - 3715, + 3719, { "where": [ - 3707, + 3711, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 3698, + 3702, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_team_roster": [ - 3758, + 3762, { "where": [ - 3750, + 3754, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 3739, + 3743, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4462, + 4466, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 3794, + 3798, { "where": [ - 3788, + 3792, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 3784, + 3788, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_team_scrim_availability": [ - 3827, + 3831, { "where": [ - 3820, + 3824, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 3811, + 3815, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 3856, + 3860, { "where": [ - 3848, + 3852, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 3839, + 3843, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_team_scrim_requests": [ - 3899, + 3903, { "where": [ - 3891, + 3895, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 3880, + 3884, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_team_scrim_settings": [ - 3936, + 3940, { "where": [ - 3930, + 3934, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 3926, + 3930, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_team_suggestions": [ - 3964, + 3968, { "where": [ - 3958, + 3962, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 3954, + 3958, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_teams": [ - 3998, + 4002, { "where": [ - 3990, + 3994, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 3981, + 3985, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_tournament_brackets": [ - 4045, + 4049, { "where": [ - 4037, + 4041, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4026, + 4030, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_tournament_organizers": [ - 4089, + 4093, { "where": [ - 4081, + 4085, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4072, + 4076, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4466, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4130, + 4134, { "where": [ - 4122, + 4126, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4113, + 4117, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_tournament_stages": [ - 4177, + 4181, { "where": [ - 4166, + 4170, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4154, + 4158, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4222, + 4226, { "where": [ - 4214, + 4218, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4205, + 4209, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_tournament_team_roster": [ - 4263, + 4267, { "where": [ - 4255, + 4259, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 4246, + 4250, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4466, "uuid!" ] } ], "delete_tournament_teams": [ - 4304, + 4308, { "where": [ - 4296, + 4300, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 4287, + 4291, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_tournament_trophies": [ - 4348, + 4352, { "where": [ - 4340, + 4344, "tournament_trophies_bool_exp!" ] } ], "delete_tournament_trophies_by_pk": [ - 4329, + 4333, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_tournament_trophy_configs": [ - 4391, + 4395, { "where": [ - 4383, + 4387, "tournament_trophy_configs_bool_exp!" ] } ], "delete_tournament_trophy_configs_by_pk": [ - 4374, + 4378, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_tournaments": [ - 4435, + 4439, { "where": [ - 4427, + 4431, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 4416, + 4420, { "id": [ - 4462, + 4466, "uuid!" ] } ], "delete_v_match_captains": [ - 4576, + 4580, { "where": [ - 4571, + 4575, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 4687, + 4691, { "where": [ - 4682, + 4686, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 4909, + 4913, { "where": [ - 4902, + 4906, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5068, + 5072, { "where": [ - 5062, + 5066, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5162, + 5166, { "where": [ - 5154, + 5158, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5135, + 5139, { "tournament_stage_id": [ - 4462, + 4466, "uuid!" ], "tournament_team_id": [ - 4462, + 4466, "uuid!" ] } @@ -137544,7 +137490,7 @@ export default { 81, { "invite_id": [ - 4462, + 4466, "uuid!" ], "type": [ @@ -137557,11 +137503,11 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ], "winning_lineup_id": [ - 4462, + 4466, "uuid!" ] } @@ -137570,7 +137516,7 @@ export default { 43, { "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -139325,14 +139271,14 @@ export default { } ], "insert_match_maps": [ - 2151, + 2153, { "objects": [ - 2146, + 2148, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2153 + 2155 ] } ], @@ -139340,1511 +139286,1511 @@ export default { 2134, { "object": [ - 2146, + 2148, "match_maps_insert_input!" ], "on_conflict": [ - 2153 + 2155 ] } ], "insert_match_options": [ - 2186, + 2190, { "objects": [ - 2183, + 2187, "[match_options_insert_input!]!" ], "on_conflict": [ - 2188 + 2192 ] } ], "insert_match_options_one": [ - 2176, + 2180, { "object": [ - 2183, + 2187, "match_options_insert_input!" ], "on_conflict": [ - 2188 + 2192 ] } ], "insert_match_region_veto_picks": [ - 2218, + 2222, { "objects": [ - 2213, + 2217, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2219 + 2223 ] } ], "insert_match_region_veto_picks_one": [ - 2204, + 2208, { "object": [ - 2213, + 2217, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2219 + 2223 ] } ], "insert_match_streams": [ - 2251, + 2255, { "objects": [ - 2246, + 2250, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2252 + 2256 ] } ], "insert_match_streams_one": [ - 2228, + 2232, { "object": [ - 2246, + 2250, "match_streams_insert_input!" ], "on_conflict": [ - 2252 + 2256 ] } ], "insert_match_type_cfgs": [ - 2286, + 2290, { "objects": [ - 2283, + 2287, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2287 + 2291 ] } ], "insert_match_type_cfgs_one": [ - 2278, + 2282, { "object": [ - 2283, + 2287, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2287 + 2291 ] } ], "insert_matches": [ - 2313, + 2317, { "objects": [ - 2308, + 2312, "[matches_insert_input!]!" ], "on_conflict": [ - 2315 + 2319 ] } ], "insert_matches_one": [ - 2296, + 2300, { "object": [ - 2308, + 2312, "matches_insert_input!" ], "on_conflict": [ - 2315 + 2319 ] } ], "insert_migration_hashes_hashes": [ - 2346, + 2350, { "objects": [ - 2343, + 2347, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2347 + 2351 ] } ], "insert_migration_hashes_hashes_one": [ - 2338, + 2342, { "object": [ - 2343, + 2347, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2347 + 2351 ] } ], "insert_my_friends": [ - 2378, + 2382, { "objects": [ - 2373, + 2377, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2356, + 2360, { "object": [ - 2373, + 2377, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2412, + 2416, { "objects": [ - 2409, + 2413, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2413 + 2417 ] } ], "insert_news_articles_one": [ - 2402, + 2406, { "object": [ - 2409, + 2413, "news_articles_insert_input!" ], "on_conflict": [ - 2413 + 2417 ] } ], "insert_notifications": [ - 2452, + 2456, { "objects": [ - 2447, + 2451, "[notifications_insert_input!]!" ], "on_conflict": [ - 2453 + 2457 ] } ], "insert_notifications_one": [ - 2429, + 2433, { "object": [ - 2447, + 2451, "notifications_insert_input!" ], "on_conflict": [ - 2453 + 2457 ] } ], "insert_pending_match_import_players": [ - 2499, + 2503, { "objects": [ - 2494, + 2498, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 2500 + 2504 ] } ], "insert_pending_match_import_players_one": [ - 2482, + 2486, { "object": [ - 2494, + 2498, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 2500 + 2504 ] } ], "insert_pending_match_imports": [ - 2533, + 2537, { "objects": [ - 2530, + 2534, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 2535 + 2539 ] } ], "insert_pending_match_imports_one": [ - 2523, + 2527, { "object": [ - 2530, + 2534, "pending_match_imports_insert_input!" ], "on_conflict": [ - 2535 + 2539 ] } ], "insert_player_aim_stats_demo": [ - 2561, + 2565, { "objects": [ - 2558, + 2562, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 2562 + 2566 ] } ], "insert_player_aim_stats_demo_one": [ - 2551, + 2555, { "object": [ - 2558, + 2562, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 2562 + 2566 ] } ], "insert_player_aim_weapon_stats": [ - 2595, + 2599, { "objects": [ - 2590, + 2594, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 2596 + 2600 ] } ], "insert_player_aim_weapon_stats_one": [ - 2578, + 2582, { "object": [ - 2590, + 2594, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 2596 + 2600 ] } ], "insert_player_assists": [ - 2638, + 2642, { "objects": [ - 2633, + 2637, "[player_assists_insert_input!]!" ], "on_conflict": [ - 2639 + 2643 ] } ], "insert_player_assists_one": [ - 2619, + 2623, { "object": [ - 2633, + 2637, "player_assists_insert_input!" ], "on_conflict": [ - 2639 + 2643 ] } ], "insert_player_damages": [ - 2699, + 2703, { "objects": [ - 2694, + 2698, "[player_damages_insert_input!]!" ], "on_conflict": [ - 2700 + 2704 ] } ], "insert_player_damages_one": [ - 2682, + 2686, { "object": [ - 2694, + 2698, "player_damages_insert_input!" ], "on_conflict": [ - 2700 + 2704 ] } ], "insert_player_elo": [ - 2733, + 2737, { "objects": [ - 2730, + 2734, "[player_elo_insert_input!]!" ], "on_conflict": [ - 2734 + 2738 ] } ], "insert_player_elo_one": [ - 2723, + 2727, { "object": [ - 2730, + 2734, "player_elo_insert_input!" ], "on_conflict": [ - 2734 + 2738 ] } ], "insert_player_faceit_rank_history": [ - 2767, + 2771, { "objects": [ - 2762, + 2766, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 2768 + 2772 ] } ], "insert_player_faceit_rank_history_one": [ - 2750, + 2754, { "object": [ - 2762, + 2766, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 2768 + 2772 ] } ], "insert_player_flashes": [ - 2810, + 2814, { "objects": [ - 2805, + 2809, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 2811 + 2815 ] } ], "insert_player_flashes_one": [ - 2791, + 2795, { "object": [ - 2805, + 2809, "player_flashes_insert_input!" ], "on_conflict": [ - 2811 + 2815 ] } ], "insert_player_kills": [ - 2896, + 2900, { "objects": [ - 2891, + 2895, "[player_kills_insert_input!]!" ], "on_conflict": [ - 2897 + 2901 ] } ], "insert_player_kills_by_weapon": [ - 2865, + 2869, { "objects": [ - 2860, + 2864, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 2866 + 2870 ] } ], "insert_player_kills_by_weapon_one": [ - 2848, + 2852, { "object": [ - 2860, + 2864, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 2866 + 2870 ] } ], "insert_player_kills_one": [ - 2836, + 2840, { "object": [ - 2891, + 2895, "player_kills_insert_input!" ], "on_conflict": [ - 2897 + 2901 ] } ], "insert_player_leaderboard_rank": [ - 2931, + 2935, { "objects": [ - 2928, + 2932, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 2922, + 2926, { "object": [ - 2928, + 2932, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 2962, + 2966, { "objects": [ - 2957, + 2961, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 2963 + 2967 ] } ], "insert_player_match_map_stats_one": [ - 2945, + 2949, { "object": [ - 2957, + 2961, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 2963 + 2967 ] } ], "insert_player_objectives": [ - 3054, + 3058, { "objects": [ - 3049, + 3053, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3055 + 3059 ] } ], "insert_player_objectives_one": [ - 3037, + 3041, { "object": [ - 3049, + 3053, "player_objectives_insert_input!" ], "on_conflict": [ - 3055 + 3059 ] } ], "insert_player_premier_rank_history": [ - 3113, + 3117, { "objects": [ - 3108, + 3112, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3114 + 3118 ] } ], "insert_player_premier_rank_history_one": [ - 3096, + 3100, { "object": [ - 3108, + 3112, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3114 + 3118 ] } ], "insert_player_sanctions": [ - 3154, + 3158, { "objects": [ - 3149, + 3153, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3155 + 3159 ] } ], "insert_player_sanctions_one": [ - 3137, + 3141, { "object": [ - 3149, + 3153, "player_sanctions_insert_input!" ], "on_conflict": [ - 3155 + 3159 ] } ], "insert_player_season_stats": [ - 3205, + 3209, { "objects": [ - 3200, + 3204, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3206 + 3210 ] } ], "insert_player_season_stats_one": [ - 3178, + 3182, { "object": [ - 3200, + 3204, "player_season_stats_insert_input!" ], "on_conflict": [ - 3206 + 3210 ] } ], "insert_player_stats": [ - 3247, + 3251, { "objects": [ - 3244, + 3248, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3249 + 3253 ] } ], "insert_player_stats_one": [ - 3237, + 3241, { "object": [ - 3244, + 3248, "player_stats_insert_input!" ], "on_conflict": [ - 3249 + 3253 ] } ], "insert_player_steam_bot_friend": [ - 3279, + 3283, { "objects": [ - 3276, + 3280, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3280 + 3284 ] } ], "insert_player_steam_bot_friend_one": [ - 3265, + 3269, { "object": [ - 3276, + 3280, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3280 + 3284 ] } ], "insert_player_steam_match_auth": [ - 3307, + 3311, { "objects": [ - 3304, + 3308, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3308 + 3312 ] } ], "insert_player_steam_match_auth_one": [ - 3297, + 3301, { "object": [ - 3304, + 3308, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3308 + 3312 ] } ], "insert_player_unused_utility": [ - 3341, + 3345, { "objects": [ - 3336, + 3340, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3342 + 3346 ] } ], "insert_player_unused_utility_one": [ - 3324, + 3328, { "object": [ - 3336, + 3340, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3342 + 3346 ] } ], "insert_player_utility": [ - 3382, + 3386, { "objects": [ - 3377, + 3381, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3383 + 3387 ] } ], "insert_player_utility_one": [ - 3365, + 3369, { "object": [ - 3377, + 3381, "player_utility_insert_input!" ], "on_conflict": [ - 3383 + 3387 ] } ], "insert_players": [ - 3449, + 3453, { "objects": [ - 3446, + 3450, "[players_insert_input!]!" ], "on_conflict": [ - 3451 + 3455 ] } ], "insert_players_one": [ - 3439, + 3443, { "object": [ - 3446, + 3450, "players_insert_input!" ], "on_conflict": [ - 3451 + 3455 ] } ], "insert_plugin_versions": [ - 3477, + 3481, { "objects": [ - 3474, + 3478, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 3478 + 3482 ] } ], "insert_plugin_versions_one": [ - 3467, + 3471, { "object": [ - 3474, + 3478, "plugin_versions_insert_input!" ], "on_conflict": [ - 3478 + 3482 ] } ], "insert_seasons": [ - 3508, + 3512, { "objects": [ - 3505, + 3509, "[seasons_insert_input!]!" ], "on_conflict": [ - 3510 + 3514 ] } ], "insert_seasons_one": [ - 3498, + 3502, { "object": [ - 3505, + 3509, "seasons_insert_input!" ], "on_conflict": [ - 3510 + 3514 ] } ], "insert_server_regions": [ - 3535, + 3539, { "objects": [ - 3532, + 3536, "[server_regions_insert_input!]!" ], "on_conflict": [ - 3537 + 3541 ] } ], "insert_server_regions_one": [ - 3526, + 3530, { "object": [ - 3532, + 3536, "server_regions_insert_input!" ], "on_conflict": [ - 3537 + 3541 ] } ], "insert_servers": [ - 3572, + 3576, { "objects": [ - 3567, + 3571, "[servers_insert_input!]!" ], "on_conflict": [ - 3574 + 3578 ] } ], "insert_servers_one": [ - 3553, + 3557, { "object": [ - 3567, + 3571, "servers_insert_input!" ], "on_conflict": [ - 3574 + 3578 ] } ], "insert_settings": [ - 3607, + 3611, { "objects": [ - 3604, + 3608, "[settings_insert_input!]!" ], "on_conflict": [ - 3608 + 3612 ] } ], "insert_settings_one": [ - 3599, + 3603, { "object": [ - 3604, + 3608, "settings_insert_input!" ], "on_conflict": [ - 3608 + 3612 ] } ], "insert_steam_account_claims": [ - 3633, + 3637, { "objects": [ - 3628, + 3632, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 3634 + 3638 ] } ], "insert_steam_account_claims_one": [ - 3619, + 3623, { "object": [ - 3628, + 3632, "steam_account_claims_insert_input!" ], "on_conflict": [ - 3634 + 3638 ] } ], "insert_steam_accounts": [ - 3653, + 3657, { "objects": [ - 3650, + 3654, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 3655 + 3659 ] } ], "insert_steam_accounts_one": [ - 3643, + 3647, { "object": [ - 3650, + 3654, "steam_accounts_insert_input!" ], "on_conflict": [ - 3655 + 3659 ] } ], "insert_system_alerts": [ - 3681, + 3685, { "objects": [ - 3678, + 3682, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 3682 + 3686 ] } ], "insert_system_alerts_one": [ - 3671, + 3675, { "object": [ - 3678, + 3682, "system_alerts_insert_input!" ], "on_conflict": [ - 3682 + 3686 ] } ], "insert_team_invites": [ - 3715, + 3719, { "objects": [ - 3710, + 3714, "[team_invites_insert_input!]!" ], "on_conflict": [ - 3716 + 3720 ] } ], "insert_team_invites_one": [ - 3698, + 3702, { "object": [ - 3710, + 3714, "team_invites_insert_input!" ], "on_conflict": [ - 3716 + 3720 ] } ], "insert_team_roster": [ - 3758, + 3762, { "objects": [ - 3753, + 3757, "[team_roster_insert_input!]!" ], "on_conflict": [ - 3759 + 3763 ] } ], "insert_team_roster_one": [ - 3739, + 3743, { "object": [ - 3753, + 3757, "team_roster_insert_input!" ], "on_conflict": [ - 3759 + 3763 ] } ], "insert_team_scrim_alerts": [ - 3794, + 3798, { "objects": [ - 3791, + 3795, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 3795 + 3799 ] } ], "insert_team_scrim_alerts_one": [ - 3784, + 3788, { "object": [ - 3791, + 3795, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 3795 + 3799 ] } ], "insert_team_scrim_availability": [ - 3827, + 3831, { "objects": [ - 3822, + 3826, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 3828 + 3832 ] } ], "insert_team_scrim_availability_one": [ - 3811, + 3815, { "object": [ - 3822, + 3826, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 3828 + 3832 ] } ], "insert_team_scrim_request_proposals": [ - 3856, + 3860, { "objects": [ - 3851, + 3855, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 3857 + 3861 ] } ], "insert_team_scrim_request_proposals_one": [ - 3839, + 3843, { "object": [ - 3851, + 3855, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 3857 + 3861 ] } ], "insert_team_scrim_requests": [ - 3899, + 3903, { "objects": [ - 3894, + 3898, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 3901 + 3905 ] } ], "insert_team_scrim_requests_one": [ - 3880, + 3884, { "object": [ - 3894, + 3898, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 3901 + 3905 ] } ], "insert_team_scrim_settings": [ - 3936, + 3940, { "objects": [ - 3933, + 3937, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 3938 + 3942 ] } ], "insert_team_scrim_settings_one": [ - 3926, + 3930, { "object": [ - 3933, + 3937, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 3938 + 3942 ] } ], "insert_team_suggestions": [ - 3964, + 3968, { "objects": [ - 3961, + 3965, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 3965 + 3969 ] } ], "insert_team_suggestions_one": [ - 3954, + 3958, { "object": [ - 3961, + 3965, "team_suggestions_insert_input!" ], "on_conflict": [ - 3965 + 3969 ] } ], "insert_teams": [ - 3998, + 4002, { "objects": [ - 3993, + 3997, "[teams_insert_input!]!" ], "on_conflict": [ - 4000 + 4004 ] } ], "insert_teams_one": [ - 3981, + 3985, { "object": [ - 3993, + 3997, "teams_insert_input!" ], "on_conflict": [ - 4000 + 4004 ] } ], "insert_tournament_brackets": [ - 4045, + 4049, { "objects": [ - 4040, + 4044, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4047 + 4051 ] } ], "insert_tournament_brackets_one": [ - 4026, + 4030, { "object": [ - 4040, + 4044, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4047 + 4051 ] } ], "insert_tournament_organizers": [ - 4089, + 4093, { "objects": [ - 4084, + 4088, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4090 + 4094 ] } ], "insert_tournament_organizers_one": [ - 4072, + 4076, { "object": [ - 4084, + 4088, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4090 + 4094 ] } ], "insert_tournament_stage_windows": [ - 4130, + 4134, { "objects": [ - 4125, + 4129, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4131 + 4135 ] } ], "insert_tournament_stage_windows_one": [ - 4113, + 4117, { "object": [ - 4125, + 4129, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4131 + 4135 ] } ], "insert_tournament_stages": [ - 4177, + 4181, { "objects": [ - 4172, + 4176, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4179 + 4183 ] } ], "insert_tournament_stages_one": [ - 4154, + 4158, { "object": [ - 4172, + 4176, "tournament_stages_insert_input!" ], "on_conflict": [ - 4179 + 4183 ] } ], "insert_tournament_team_invites": [ - 4222, + 4226, { "objects": [ - 4217, + 4221, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 4223 + 4227 ] } ], "insert_tournament_team_invites_one": [ - 4205, + 4209, { "object": [ - 4217, + 4221, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 4223 + 4227 ] } ], "insert_tournament_team_roster": [ - 4263, + 4267, { "objects": [ - 4258, + 4262, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 4264 + 4268 ] } ], "insert_tournament_team_roster_one": [ - 4246, + 4250, { "object": [ - 4258, + 4262, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 4264 + 4268 ] } ], "insert_tournament_teams": [ - 4304, + 4308, { "objects": [ - 4299, + 4303, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 4306 + 4310 ] } ], "insert_tournament_teams_one": [ - 4287, + 4291, { "object": [ - 4299, + 4303, "tournament_teams_insert_input!" ], "on_conflict": [ - 4306 + 4310 ] } ], "insert_tournament_trophies": [ - 4348, + 4352, { "objects": [ - 4343, + 4347, "[tournament_trophies_insert_input!]!" ], "on_conflict": [ - 4349 + 4353 ] } ], "insert_tournament_trophies_one": [ - 4329, + 4333, { "object": [ - 4343, + 4347, "tournament_trophies_insert_input!" ], "on_conflict": [ - 4349 + 4353 ] } ], "insert_tournament_trophy_configs": [ - 4391, + 4395, { "objects": [ - 4386, + 4390, "[tournament_trophy_configs_insert_input!]!" ], "on_conflict": [ - 4393 + 4397 ] } ], "insert_tournament_trophy_configs_one": [ - 4374, + 4378, { "object": [ - 4386, + 4390, "tournament_trophy_configs_insert_input!" ], "on_conflict": [ - 4393 + 4397 ] } ], "insert_tournaments": [ - 4435, + 4439, { "objects": [ - 4430, + 4434, "[tournaments_insert_input!]!" ], "on_conflict": [ - 4437 + 4441 ] } ], "insert_tournaments_one": [ - 4416, + 4420, { "object": [ - 4430, + 4434, "tournaments_insert_input!" ], "on_conflict": [ - 4437 + 4441 ] } ], "insert_v_match_captains": [ - 4576, + 4580, { "objects": [ - 4573, + 4577, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 4567, + 4571, { "object": [ - 4573, + 4577, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 4687, + 4691, { "objects": [ - 4684, + 4688, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 4678, + 4682, { "object": [ - 4684, + 4688, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 4909, + 4913, { "objects": [ - 4904, + 4908, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 4893, + 4897, { "object": [ - 4904, + 4908, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5068, + 5072, { "objects": [ - 5063, + 5067, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5053, + 5057, { "object": [ - 5063, + 5067, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5162, + 5166, { "objects": [ - 5157, + 5161, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5164 + 5168 ] } ], "insert_v_team_stage_results_one": [ - 5135, + 5139, { "object": [ - 5157, + 5161, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5164 + 5168 ] } ], @@ -140852,7 +140798,7 @@ export default { 81, { "draftGameId": [ - 4462, + 4466, "uuid!" ], "inviteCode": [ @@ -140864,7 +140810,7 @@ export default { 81, { "draftGameId": [ - 4462, + 4466, "uuid!" ], "inviteCode": [ @@ -140889,14 +140835,14 @@ export default { } ], "league_award_forfeit": [ - 2296, + 2300, { "args": [ 1378, "league_award_forfeit_args!" ], "distinct_on": [ - 2318, + 2322, "[matches_select_column!]" ], "limit": [ @@ -140906,11 +140852,11 @@ export default { 38 ], "order_by": [ - 2316, + 2320, "[matches_order_by!]" ], "where": [ - 2305 + 2309 ] } ], @@ -140969,7 +140915,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4466, "uuid!" ] } @@ -140981,7 +140927,7 @@ export default { 22, { "draftGameId": [ - 4462, + 4466, "uuid!" ], "inviteCode": [ @@ -140996,7 +140942,7 @@ export default { 38 ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "preset": [ @@ -141022,7 +140968,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -141031,20 +140977,20 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ] } ], "recalculate_tournament_trophies": [ - 4329, + 4333, { "args": [ - 3494, + 3498, "recalculate_tournament_trophies_args!" ], "distinct_on": [ - 4352, + 4356, "[tournament_trophies_select_column!]" ], "limit": [ @@ -141054,11 +141000,11 @@ export default { 38 ], "order_by": [ - 4350, + 4354, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4344 ] } ], @@ -141072,7 +141018,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -141096,7 +141042,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -141126,7 +141072,7 @@ export default { 1670, { "args": [ - 3495, + 3499, "remove_league_team_from_season_args!" ], "distinct_on": [ @@ -141172,7 +141118,7 @@ export default { 1379, { "args": [ - 3496, + 3500, "reorder_league_divisions_args!" ], "distinct_on": [ @@ -141204,7 +141150,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4466, "uuid!" ] } @@ -141213,7 +141159,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -141235,7 +141181,7 @@ export default { 81, { "job_id": [ - 4462, + 4466, "uuid!" ] } @@ -141248,7 +141194,7 @@ export default { "Boolean!" ], "draftGameId": [ - 4462, + 4466, "uuid!" ] } @@ -141261,7 +141207,7 @@ export default { "Boolean!" ], "request_id": [ - 4462, + 4466, "uuid!" ] } @@ -141279,7 +141225,7 @@ export default { 1555, { "args": [ - 3497, + 3501, "restart_league_season_args!" ], "distinct_on": [ @@ -141305,7 +141251,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4466, "uuid!" ] } @@ -141314,7 +141260,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4466, "uuid!" ], "only_failed": [ @@ -141364,7 +141310,7 @@ export default { 78 ], "id": [ - 4462 + 4466 ], "teaser": [ 78 @@ -141385,11 +141331,11 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024 + 4028 ] } ], @@ -141400,18 +141346,18 @@ export default { 38 ], "from_team_id": [ - 4462, + 4466, "uuid!" ], "proposed_scheduled_at": [ - 4024, + 4028, "timestamptz!" ], "region": [ 78 ], "to_team_id": [ - 4462, + 4466, "uuid!" ] } @@ -141433,7 +141379,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ], "mode": [ @@ -141446,15 +141392,15 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "winning_lineup_id": [ - 4462, + 4466, "uuid!" ] } @@ -141463,11 +141409,11 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ], "winning_lineup_id": [ - 4462, + 4466, "uuid!" ] } @@ -141476,7 +141422,7 @@ export default { 48, { "id": [ - 4462, + 4466, "uuid!" ], "status": [ @@ -141492,7 +141438,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -141505,7 +141451,7 @@ export default { "Boolean!" ], "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -141518,7 +141464,7 @@ export default { "String!" ], "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -141527,7 +141473,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ], "visible": [ @@ -141540,7 +141486,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -141549,7 +141495,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -141562,7 +141508,7 @@ export default { "Int!" ], "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -141571,7 +141517,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ], "show": [ @@ -141584,7 +141530,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ], "slot": [ @@ -141601,7 +141547,7 @@ export default { "Boolean!" ], "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -141610,7 +141556,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ], "mode": [ @@ -141623,11 +141569,11 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ], "server_id": [ - 4462 + 4466 ] } ], @@ -141635,7 +141581,7 @@ export default { 81, { "game_server_node_id": [ - 4462, + 4466, "uuid!" ] } @@ -141644,7 +141590,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -141653,7 +141599,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4466, "uuid!" ] } @@ -141675,7 +141621,7 @@ export default { 81, { "match_id": [ - 4462, + 4466, "uuid!" ] } @@ -141693,7 +141639,7 @@ export default { 81, { "from_match_id": [ - 4462, + 4466, "uuid!" ], "mode": [ @@ -141701,7 +141647,7 @@ export default { "String!" ], "to_match_id": [ - 4462, + 4466, "uuid!" ] } @@ -141741,7 +141687,7 @@ export default { 81, { "clip_id": [ - 4462, + 4466, "uuid!" ], "target_steam_id": [ @@ -141762,7 +141708,7 @@ export default { 78 ], "game_server_node_id": [ - 4462 + 4466 ] } ], @@ -141770,7 +141716,7 @@ export default { 81, { "draftGameId": [ - 4462, + 4466, "uuid!" ], "settings": [ @@ -144549,16 +144495,16 @@ export default { } ], "update_match_maps": [ - 2151, + 2153, { "_inc": [ - 2145 + 2147 ], "_set": [ - 2157 + 2161 ], "where": [ - 2143, + 2145, "match_maps_bool_exp!" ] } @@ -144567,2518 +144513,2518 @@ export default { 2134, { "_inc": [ - 2145 + 2147 ], "_set": [ - 2157 + 2161 ], "pk_columns": [ - 2155, + 2157, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2151, + 2153, { "updates": [ - 2169, + 2173, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2186, + 2190, { "_inc": [ - 2182 + 2186 ], "_set": [ - 2192 + 2196 ], "where": [ - 2180, + 2184, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2176, + 2180, { "_inc": [ - 2182 + 2186 ], "_set": [ - 2192 + 2196 ], "pk_columns": [ - 2190, + 2194, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2186, + 2190, { "updates": [ - 2200, + 2204, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2218, + 2222, { "_set": [ - 2223 + 2227 ], "where": [ - 2211, + 2215, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2204, + 2208, { "_set": [ - 2223 + 2227 ], "pk_columns": [ - 2221, + 2225, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2218, + 2222, { "updates": [ - 2227, + 2231, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2251, + 2255, { "_append": [ - 2236 + 2240 ], "_delete_at_path": [ - 2242 + 2246 ], "_delete_elem": [ - 2243 + 2247 ], "_delete_key": [ - 2244 + 2248 ], "_inc": [ - 2245 + 2249 ], "_prepend": [ - 2255 + 2259 ], "_set": [ - 2259 + 2263 ], "where": [ - 2240, + 2244, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2228, + 2232, { "_append": [ - 2236 + 2240 ], "_delete_at_path": [ - 2242 + 2246 ], "_delete_elem": [ - 2243 + 2247 ], "_delete_key": [ - 2244 + 2248 ], "_inc": [ - 2245 + 2249 ], "_prepend": [ - 2255 + 2259 ], "_set": [ - 2259 + 2263 ], "pk_columns": [ - 2254, + 2258, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2251, + 2255, { "updates": [ - 2271, + 2275, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2286, + 2290, { "_set": [ - 2291 + 2295 ], "where": [ - 2281, + 2285, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2278, + 2282, { "_set": [ - 2291 + 2295 ], "pk_columns": [ - 2289, + 2293, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2286, + 2290, { "updates": [ - 2295, + 2299, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2313, + 2317, { "_inc": [ - 2307 + 2311 ], "_set": [ - 2319 + 2323 ], "where": [ - 2305, + 2309, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2296, + 2300, { "_inc": [ - 2307 + 2311 ], "_set": [ - 2319 + 2323 ], "pk_columns": [ - 2317, + 2321, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2313, + 2317, { "updates": [ - 2331, + 2335, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2346, + 2350, { "_set": [ - 2351 + 2355 ], "where": [ - 2341, + 2345, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2338, + 2342, { "_set": [ - 2351 + 2355 ], "pk_columns": [ - 2349, + 2353, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2346, + 2350, { "updates": [ - 2355, + 2359, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2378, + 2382, { "_append": [ - 2364 + 2368 ], "_delete_at_path": [ - 2369 + 2373 ], "_delete_elem": [ - 2370 + 2374 ], "_delete_key": [ - 2371 + 2375 ], "_inc": [ - 2372 + 2376 ], "_prepend": [ - 2380 + 2384 ], "_set": [ - 2384 + 2388 ], "where": [ - 2368, + 2372, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2378, + 2382, { "updates": [ - 2395, + 2399, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2412, + 2416, { "_inc": [ - 2408 + 2412 ], "_set": [ - 2417 + 2421 ], "where": [ - 2406, + 2410, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2402, + 2406, { "_inc": [ - 2408 + 2412 ], "_set": [ - 2417 + 2421 ], "pk_columns": [ - 2415, + 2419, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2412, + 2416, { "updates": [ - 2425, + 2429, "[news_articles_updates!]!" ] } ], "update_notifications": [ - 2452, + 2456, { "_append": [ - 2437 + 2441 ], "_delete_at_path": [ - 2443 + 2447 ], "_delete_elem": [ - 2444 + 2448 ], "_delete_key": [ - 2445 + 2449 ], "_inc": [ - 2446 + 2450 ], "_prepend": [ - 2456 + 2460 ], "_set": [ - 2460 + 2464 ], "where": [ - 2441, + 2445, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 2429, + 2433, { "_append": [ - 2437 + 2441 ], "_delete_at_path": [ - 2443 + 2447 ], "_delete_elem": [ - 2444 + 2448 ], "_delete_key": [ - 2445 + 2449 ], "_inc": [ - 2446 + 2450 ], "_prepend": [ - 2456 + 2460 ], "_set": [ - 2460 + 2464 ], "pk_columns": [ - 2455, + 2459, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 2452, + 2456, { "updates": [ - 2472, + 2476, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 2499, + 2503, { "_inc": [ - 2493 + 2497 ], "_set": [ - 2504 + 2508 ], "where": [ - 2491, + 2495, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 2482, + 2486, { "_inc": [ - 2493 + 2497 ], "_set": [ - 2504 + 2508 ], "pk_columns": [ - 2502, + 2506, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 2499, + 2503, { "updates": [ - 2516, + 2520, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 2533, + 2537, { "_inc": [ - 2529 + 2533 ], "_set": [ - 2539 + 2543 ], "where": [ - 2527, + 2531, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 2523, + 2527, { "_inc": [ - 2529 + 2533 ], "_set": [ - 2539 + 2543 ], "pk_columns": [ - 2537, + 2541, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 2533, + 2537, { "updates": [ - 2547, + 2551, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 2561, + 2565, { "_inc": [ - 2557 + 2561 ], "_set": [ - 2566 + 2570 ], "where": [ - 2555, + 2559, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 2551, + 2555, { "_inc": [ - 2557 + 2561 ], "_set": [ - 2566 + 2570 ], "pk_columns": [ - 2564, + 2568, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 2561, + 2565, { "updates": [ - 2574, + 2578, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 2595, + 2599, { "_inc": [ - 2589 + 2593 ], "_set": [ - 2600 + 2604 ], "where": [ - 2587, + 2591, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 2578, + 2582, { "_inc": [ - 2589 + 2593 ], "_set": [ - 2600 + 2604 ], "pk_columns": [ - 2598, + 2602, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 2595, + 2599, { "updates": [ - 2612, + 2616, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 2638, + 2642, { "_inc": [ - 2632 + 2636 ], "_set": [ - 2645 + 2649 ], "where": [ - 2630, + 2634, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 2619, + 2623, { "_inc": [ - 2632 + 2636 ], "_set": [ - 2645 + 2649 ], "pk_columns": [ - 2641, + 2645, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 2638, + 2642, { "updates": [ - 2657, + 2661, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 2699, + 2703, { "_inc": [ - 2693 + 2697 ], "_set": [ - 2704 + 2708 ], "where": [ - 2691, + 2695, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 2682, + 2686, { "_inc": [ - 2693 + 2697 ], "_set": [ - 2704 + 2708 ], "pk_columns": [ - 2702, + 2706, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 2699, + 2703, { "updates": [ - 2716, + 2720, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 2733, + 2737, { "_inc": [ - 2729 + 2733 ], "_set": [ - 2738 + 2742 ], "where": [ - 2727, + 2731, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 2723, + 2727, { "_inc": [ - 2729 + 2733 ], "_set": [ - 2738 + 2742 ], "pk_columns": [ - 2736, + 2740, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 2733, + 2737, { "updates": [ - 2746, + 2750, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 2767, + 2771, { "_inc": [ - 2761 + 2765 ], "_set": [ - 2772 + 2776 ], "where": [ - 2759, + 2763, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 2750, + 2754, { "_inc": [ - 2761 + 2765 ], "_set": [ - 2772 + 2776 ], "pk_columns": [ - 2770, + 2774, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 2767, + 2771, { "updates": [ - 2784, + 2788, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 2810, + 2814, { "_inc": [ - 2804 + 2808 ], "_set": [ - 2817 + 2821 ], "where": [ - 2802, + 2806, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 2791, + 2795, { "_inc": [ - 2804 + 2808 ], "_set": [ - 2817 + 2821 ], "pk_columns": [ - 2813, + 2817, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 2810, + 2814, { "updates": [ - 2829, + 2833, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 2896, + 2900, { "_inc": [ - 2890 + 2894 ], "_set": [ - 2903 + 2907 ], "where": [ - 2847, + 2851, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 2836, + 2840, { "_inc": [ - 2890 + 2894 ], "_set": [ - 2903 + 2907 ], "pk_columns": [ - 2899, + 2903, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 2865, + 2869, { "_inc": [ - 2859 + 2863 ], "_set": [ - 2870 + 2874 ], "where": [ - 2857, + 2861, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 2848, + 2852, { "_inc": [ - 2859 + 2863 ], "_set": [ - 2870 + 2874 ], "pk_columns": [ - 2868, + 2872, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 2865, + 2869, { "updates": [ - 2882, + 2886, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 2896, + 2900, { "updates": [ - 2915, + 2919, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 2931, + 2935, { "_inc": [ - 2927 + 2931 ], "_set": [ - 2934 + 2938 ], "where": [ - 2926, + 2930, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 2931, + 2935, { "updates": [ - 2941, + 2945, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 2962, + 2966, { "_inc": [ - 2956 + 2960 ], "_set": [ - 2967 + 2971 ], "where": [ - 2954, + 2958, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 2945, + 2949, { "_inc": [ - 2956 + 2960 ], "_set": [ - 2967 + 2971 ], "pk_columns": [ - 2965, + 2969, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 2962, + 2966, { "updates": [ - 2979, + 2983, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3054, + 3058, { "_inc": [ - 3048 + 3052 ], "_set": [ - 3059 + 3063 ], "where": [ - 3046, + 3050, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3037, + 3041, { "_inc": [ - 3048 + 3052 ], "_set": [ - 3059 + 3063 ], "pk_columns": [ - 3057, + 3061, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3054, + 3058, { "updates": [ - 3071, + 3075, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3113, + 3117, { "_inc": [ - 3107 + 3111 ], "_set": [ - 3118 + 3122 ], "where": [ - 3105, + 3109, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3096, + 3100, { "_inc": [ - 3107 + 3111 ], "_set": [ - 3118 + 3122 ], "pk_columns": [ - 3116, + 3120, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3113, + 3117, { "updates": [ - 3130, + 3134, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3154, + 3158, { "_inc": [ - 3148 + 3152 ], "_set": [ - 3159 + 3163 ], "where": [ - 3146, + 3150, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3137, + 3141, { "_inc": [ - 3148 + 3152 ], "_set": [ - 3159 + 3163 ], "pk_columns": [ - 3157, + 3161, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3154, + 3158, { "updates": [ - 3171, + 3175, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3205, + 3209, { "_inc": [ - 3199 + 3203 ], "_set": [ - 3218 + 3222 ], "where": [ - 3197, + 3201, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3178, + 3182, { "_inc": [ - 3199 + 3203 ], "_set": [ - 3218 + 3222 ], "pk_columns": [ - 3208, + 3212, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3205, + 3209, { "updates": [ - 3230, + 3234, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3247, + 3251, { "_inc": [ - 3243 + 3247 ], "_set": [ - 3253 + 3257 ], "where": [ - 3241, + 3245, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3237, + 3241, { "_inc": [ - 3243 + 3247 ], "_set": [ - 3253 + 3257 ], "pk_columns": [ - 3251, + 3255, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3247, + 3251, { "updates": [ - 3261, + 3265, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3279, + 3283, { "_append": [ - 3268 + 3272 ], "_delete_at_path": [ - 3272 + 3276 ], "_delete_elem": [ - 3273 + 3277 ], "_delete_key": [ - 3274 + 3278 ], "_inc": [ - 3275 + 3279 ], "_prepend": [ - 3283 + 3287 ], "_set": [ - 3285 + 3289 ], "where": [ - 3270, + 3274, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3265, + 3269, { "_append": [ - 3268 + 3272 ], "_delete_at_path": [ - 3272 + 3276 ], "_delete_elem": [ - 3273 + 3277 ], "_delete_key": [ - 3274 + 3278 ], "_inc": [ - 3275 + 3279 ], "_prepend": [ - 3283 + 3287 ], "_set": [ - 3285 + 3289 ], "pk_columns": [ - 3282, + 3286, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3279, + 3283, { "updates": [ - 3293, + 3297, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3307, + 3311, { "_inc": [ - 3303 + 3307 ], "_set": [ - 3312 + 3316 ], "where": [ - 3301, + 3305, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3297, + 3301, { "_inc": [ - 3303 + 3307 ], "_set": [ - 3312 + 3316 ], "pk_columns": [ - 3310, + 3314, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3307, + 3311, { "updates": [ - 3320, + 3324, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3341, + 3345, { "_inc": [ - 3335 + 3339 ], "_set": [ - 3346 + 3350 ], "where": [ - 3333, + 3337, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3324, + 3328, { "_inc": [ - 3335 + 3339 ], "_set": [ - 3346 + 3350 ], "pk_columns": [ - 3344, + 3348, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3341, + 3345, { "updates": [ - 3358, + 3362, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3382, + 3386, { "_inc": [ - 3376 + 3380 ], "_set": [ - 3387 + 3391 ], "where": [ - 3374, + 3378, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3365, + 3369, { "_inc": [ - 3376 + 3380 ], "_set": [ - 3387 + 3391 ], "pk_columns": [ - 3385, + 3389, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3382, + 3386, { "updates": [ - 3399, + 3403, "[player_utility_updates!]!" ] } ], "update_players": [ - 3449, + 3453, { "_inc": [ - 3445 + 3449 ], "_set": [ - 3455 + 3459 ], "where": [ - 3443, + 3447, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 3439, + 3443, { "_inc": [ - 3445 + 3449 ], "_set": [ - 3455 + 3459 ], "pk_columns": [ - 3453, + 3457, "players_pk_columns_input!" ] } ], "update_players_many": [ - 3449, + 3453, { "updates": [ - 3463, + 3467, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 3477, + 3481, { "_inc": [ - 3473 + 3477 ], "_set": [ - 3482 + 3486 ], "where": [ - 3471, + 3475, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 3467, + 3471, { "_inc": [ - 3473 + 3477 ], "_set": [ - 3482 + 3486 ], "pk_columns": [ - 3480, + 3484, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 3477, + 3481, { "updates": [ - 3490, + 3494, "[plugin_versions_updates!]!" ] } ], "update_seasons": [ - 3508, + 3512, { "_inc": [ - 3504 + 3508 ], "_set": [ - 3514 + 3518 ], "where": [ - 3502, + 3506, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 3498, + 3502, { "_inc": [ - 3504 + 3508 ], "_set": [ - 3514 + 3518 ], "pk_columns": [ - 3512, + 3516, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 3508, + 3512, { "updates": [ - 3522, + 3526, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 3535, + 3539, { "_set": [ - 3541 + 3545 ], "where": [ - 3530, + 3534, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 3526, + 3530, { "_set": [ - 3541 + 3545 ], "pk_columns": [ - 3539, + 3543, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 3535, + 3539, { "updates": [ - 3549, + 3553, "[server_regions_updates!]!" ] } ], "update_servers": [ - 3572, + 3576, { "_inc": [ - 3566 + 3570 ], "_set": [ - 3580 + 3584 ], "where": [ - 3564, + 3568, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 3553, + 3557, { "_inc": [ - 3566 + 3570 ], "_set": [ - 3580 + 3584 ], "pk_columns": [ - 3576, + 3580, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 3572, + 3576, { "updates": [ - 3592, + 3596, "[servers_updates!]!" ] } ], "update_settings": [ - 3607, + 3611, { "_set": [ - 3612 + 3616 ], "where": [ - 3602, + 3606, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 3599, + 3603, { "_set": [ - 3612 + 3616 ], "pk_columns": [ - 3610, + 3614, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 3607, + 3611, { "updates": [ - 3616, + 3620, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 3633, + 3637, { "_set": [ - 3638 + 3642 ], "where": [ - 3626, + 3630, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 3619, + 3623, { "_set": [ - 3638 + 3642 ], "pk_columns": [ - 3636, + 3640, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 3633, + 3637, { "updates": [ - 3642, + 3646, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 3653, + 3657, { "_inc": [ - 3649 + 3653 ], "_set": [ - 3659 + 3663 ], "where": [ - 3647, + 3651, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 3643, + 3647, { "_inc": [ - 3649 + 3653 ], "_set": [ - 3659 + 3663 ], "pk_columns": [ - 3657, + 3661, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 3653, + 3657, { "updates": [ - 3667, + 3671, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 3681, + 3685, { "_inc": [ - 3677 + 3681 ], "_set": [ - 3686 + 3690 ], "where": [ - 3675, + 3679, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 3671, + 3675, { "_inc": [ - 3677 + 3681 ], "_set": [ - 3686 + 3690 ], "pk_columns": [ - 3684, + 3688, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 3681, + 3685, { "updates": [ - 3694, + 3698, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 3715, + 3719, { "_inc": [ - 3709 + 3713 ], "_set": [ - 3720 + 3724 ], "where": [ - 3707, + 3711, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 3698, + 3702, { "_inc": [ - 3709 + 3713 ], "_set": [ - 3720 + 3724 ], "pk_columns": [ - 3718, + 3722, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 3715, + 3719, { "updates": [ - 3732, + 3736, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 3758, + 3762, { "_inc": [ - 3752 + 3756 ], "_set": [ - 3765 + 3769 ], "where": [ - 3750, + 3754, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 3739, + 3743, { "_inc": [ - 3752 + 3756 ], "_set": [ - 3765 + 3769 ], "pk_columns": [ - 3761, + 3765, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 3758, + 3762, { "updates": [ - 3777, + 3781, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 3794, + 3798, { "_inc": [ - 3790 + 3794 ], "_set": [ - 3799 + 3803 ], "where": [ - 3788, + 3792, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 3784, + 3788, { "_inc": [ - 3790 + 3794 ], "_set": [ - 3799 + 3803 ], "pk_columns": [ - 3797, + 3801, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 3794, + 3798, { "updates": [ - 3807, + 3811, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 3827, + 3831, { "_set": [ - 3834 + 3838 ], "where": [ - 3820, + 3824, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 3811, + 3815, { "_set": [ - 3834 + 3838 ], "pk_columns": [ - 3830, + 3834, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 3827, + 3831, { "updates": [ - 3838, + 3842, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 3856, + 3860, { "_inc": [ - 3850 + 3854 ], "_set": [ - 3861 + 3865 ], "where": [ - 3848, + 3852, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 3839, + 3843, { "_inc": [ - 3850 + 3854 ], "_set": [ - 3861 + 3865 ], "pk_columns": [ - 3859, + 3863, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 3856, + 3860, { "updates": [ - 3873, + 3877, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 3899, + 3903, { "_inc": [ - 3893 + 3897 ], "_set": [ - 3907 + 3911 ], "where": [ - 3891, + 3895, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 3880, + 3884, { "_inc": [ - 3893 + 3897 ], "_set": [ - 3907 + 3911 ], "pk_columns": [ - 3903, + 3907, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 3899, + 3903, { "updates": [ - 3919, + 3923, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 3936, + 3940, { "_inc": [ - 3932 + 3936 ], "_set": [ - 3942 + 3946 ], "where": [ - 3930, + 3934, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 3926, + 3930, { "_inc": [ - 3932 + 3936 ], "_set": [ - 3942 + 3946 ], "pk_columns": [ - 3940, + 3944, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 3936, + 3940, { "updates": [ - 3950, + 3954, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 3964, + 3968, { "_inc": [ - 3960 + 3964 ], "_set": [ - 3969 + 3973 ], "where": [ - 3958, + 3962, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 3954, + 3958, { "_inc": [ - 3960 + 3964 ], "_set": [ - 3969 + 3973 ], "pk_columns": [ - 3967, + 3971, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 3964, + 3968, { "updates": [ - 3977, + 3981, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 3998, + 4002, { "_inc": [ - 3992 + 3996 ], "_set": [ - 4004 + 4008 ], "where": [ - 3990, + 3994, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 3981, + 3985, { "_inc": [ - 3992 + 3996 ], "_set": [ - 4004 + 4008 ], "pk_columns": [ - 4002, + 4006, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 3998, + 4002, { "updates": [ - 4016, + 4020, "[teams_updates!]!" ] } ], "update_tournament_brackets": [ - 4045, + 4049, { "_inc": [ - 4039 + 4043 ], "_set": [ - 4053 + 4057 ], "where": [ - 4037, + 4041, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4026, + 4030, { "_inc": [ - 4039 + 4043 ], "_set": [ - 4053 + 4057 ], "pk_columns": [ - 4049, + 4053, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4045, + 4049, { "updates": [ - 4065, + 4069, "[tournament_brackets_updates!]!" ] } ], "update_tournament_organizers": [ - 4089, + 4093, { "_inc": [ - 4083 + 4087 ], "_set": [ - 4094 + 4098 ], "where": [ - 4081, + 4085, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4072, + 4076, { "_inc": [ - 4083 + 4087 ], "_set": [ - 4094 + 4098 ], "pk_columns": [ - 4092, + 4096, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4089, + 4093, { "updates": [ - 4106, + 4110, "[tournament_organizers_updates!]!" ] } ], "update_tournament_stage_windows": [ - 4130, + 4134, { "_inc": [ - 4124 + 4128 ], "_set": [ - 4135 + 4139 ], "where": [ - 4122, + 4126, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4113, + 4117, { "_inc": [ - 4124 + 4128 ], "_set": [ - 4135 + 4139 ], "pk_columns": [ - 4133, + 4137, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4130, + 4134, { "updates": [ - 4147, + 4151, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4177, + 4181, { "_append": [ - 4162 + 4166 ], "_delete_at_path": [ - 4168 + 4172 ], "_delete_elem": [ - 4169 + 4173 ], "_delete_key": [ - 4170 + 4174 ], "_inc": [ - 4171 + 4175 ], "_prepend": [ - 4182 + 4186 ], "_set": [ - 4186 + 4190 ], "where": [ - 4166, + 4170, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4154, + 4158, { "_append": [ - 4162 + 4166 ], "_delete_at_path": [ - 4168 + 4172 ], "_delete_elem": [ - 4169 + 4173 ], "_delete_key": [ - 4170 + 4174 ], "_inc": [ - 4171 + 4175 ], "_prepend": [ - 4182 + 4186 ], "_set": [ - 4186 + 4190 ], "pk_columns": [ - 4181, + 4185, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4177, + 4181, { "updates": [ - 4198, + 4202, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4222, + 4226, { "_inc": [ - 4216 + 4220 ], "_set": [ - 4227 + 4231 ], "where": [ - 4214, + 4218, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4205, + 4209, { "_inc": [ - 4216 + 4220 ], "_set": [ - 4227 + 4231 ], "pk_columns": [ - 4225, + 4229, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4222, + 4226, { "updates": [ - 4239, + 4243, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 4263, + 4267, { "_inc": [ - 4257 + 4261 ], "_set": [ - 4268 + 4272 ], "where": [ - 4255, + 4259, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 4246, + 4250, { "_inc": [ - 4257 + 4261 ], "_set": [ - 4268 + 4272 ], "pk_columns": [ - 4266, + 4270, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 4263, + 4267, { "updates": [ - 4280, + 4284, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 4304, + 4308, { "_inc": [ - 4298 + 4302 ], "_set": [ - 4310 + 4314 ], "where": [ - 4296, + 4300, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 4287, + 4291, { "_inc": [ - 4298 + 4302 ], "_set": [ - 4310 + 4314 ], "pk_columns": [ - 4308, + 4312, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 4304, + 4308, { "updates": [ - 4322, + 4326, "[tournament_teams_updates!]!" ] } ], "update_tournament_trophies": [ - 4348, + 4352, { "_inc": [ - 4342 + 4346 ], "_set": [ - 4355 + 4359 ], "where": [ - 4340, + 4344, "tournament_trophies_bool_exp!" ] } ], "update_tournament_trophies_by_pk": [ - 4329, + 4333, { "_inc": [ - 4342 + 4346 ], "_set": [ - 4355 + 4359 ], "pk_columns": [ - 4351, + 4355, "tournament_trophies_pk_columns_input!" ] } ], "update_tournament_trophies_many": [ - 4348, + 4352, { "updates": [ - 4367, + 4371, "[tournament_trophies_updates!]!" ] } ], "update_tournament_trophy_configs": [ - 4391, + 4395, { "_inc": [ - 4385 + 4389 ], "_set": [ - 4397 + 4401 ], "where": [ - 4383, + 4387, "tournament_trophy_configs_bool_exp!" ] } ], "update_tournament_trophy_configs_by_pk": [ - 4374, + 4378, { "_inc": [ - 4385 + 4389 ], "_set": [ - 4397 + 4401 ], "pk_columns": [ - 4395, + 4399, "tournament_trophy_configs_pk_columns_input!" ] } ], "update_tournament_trophy_configs_many": [ - 4391, + 4395, { "updates": [ - 4409, + 4413, "[tournament_trophy_configs_updates!]!" ] } ], "update_tournaments": [ - 4435, + 4439, { "_inc": [ - 4429 + 4433 ], "_set": [ - 4443 + 4447 ], "where": [ - 4427, + 4431, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 4416, + 4420, { "_inc": [ - 4429 + 4433 ], "_set": [ - 4443 + 4447 ], "pk_columns": [ - 4439, + 4443, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 4435, + 4439, { "updates": [ - 4455, + 4459, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 4576, + 4580, { "_inc": [ - 4572 + 4576 ], "_set": [ - 4580 + 4584 ], "where": [ - 4571, + 4575, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 4576, + 4580, { "updates": [ - 4587, + 4591, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 4687, + 4691, { "_inc": [ - 4683 + 4687 ], "_set": [ - 4690 + 4694 ], "where": [ - 4682, + 4686, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 4687, + 4691, { "updates": [ - 4697, + 4701, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 4909, + 4913, { "_inc": [ - 4903 + 4907 ], "_set": [ - 4912 + 4916 ], "where": [ - 4902, + 4906, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 4909, + 4913, { "updates": [ - 4923, + 4927, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5068, + 5072, { "_set": [ - 5073 + 5077 ], "where": [ - 5062, + 5066, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5068, + 5072, { "updates": [ - 5076, + 5080, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5162, + 5166, { "_inc": [ - 5156 + 5160 ], "_set": [ - 5176 + 5180 ], "where": [ - 5154, + 5158, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5135, + 5139, { "_inc": [ - 5156 + 5160 ], "_set": [ - 5176 + 5180 ], "pk_columns": [ - 5166, + 5170, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5162, + 5166, { "updates": [ - 5188, + 5192, "[v_team_stage_results_updates!]!" ] } @@ -147087,7 +147033,7 @@ export default { 81, { "game_server_node_id": [ - 4462, + 4466, "uuid!" ] } @@ -147096,10 +147042,10 @@ export default { 91, { "match_map_demo_id": [ - 4462 + 4466 ], "match_map_id": [ - 4462, + 4466, "uuid!" ] } @@ -147177,11 +147123,11 @@ export default { 92, { "map_id": [ - 4462, + 4466, "uuid!" ], "map_pool_id": [ - 4462, + 4466, "uuid!" ] } @@ -147250,7 +147196,7 @@ export default { 111, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -147319,7 +147265,7 @@ export default { 152, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -147388,7 +147334,7 @@ export default { 185, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -147457,7 +147403,7 @@ export default { 237, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -147526,7 +147472,7 @@ export default { 264, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -147595,7 +147541,7 @@ export default { 309, { "draft_game_id": [ - 4462, + 4466, "uuid!" ], "steam_id": [ @@ -147668,7 +147614,7 @@ export default { 354, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -150639,7 +150585,7 @@ export default { 1313, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -150765,14 +150711,14 @@ export default { } ], "get_player_leaderboard_rank": [ - 2922, + 2926, { "args": [ 1347, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2933, + 2937, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -150782,23 +150728,23 @@ export default { 38 ], "order_by": [ - 2932, + 2936, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 2930 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2923, + 2927, { "args": [ 1347, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2933, + 2937, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -150808,11 +150754,11 @@ export default { 38 ], "order_by": [ - 2932, + 2936, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 2930 ] } ], @@ -150924,7 +150870,7 @@ export default { 1379, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -150993,7 +150939,7 @@ export default { 1407, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -151062,7 +151008,7 @@ export default { 1448, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -151131,7 +151077,7 @@ export default { 1489, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -151200,7 +151146,7 @@ export default { 1530, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -151269,7 +151215,7 @@ export default { 1555, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -151338,7 +151284,7 @@ export default { 1588, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -151407,7 +151353,7 @@ export default { 1629, { "league_team_season_id": [ - 4462, + 4466, "uuid!" ], "player_steam_id": [ @@ -151480,7 +151426,7 @@ export default { 1670, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -151549,7 +151495,7 @@ export default { 1712, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -151618,7 +151564,7 @@ export default { 1731, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -151687,7 +151633,7 @@ export default { 1750, { "lobby_id": [ - 4462, + 4466, "uuid!" ], "steam_id": [ @@ -151760,7 +151706,7 @@ export default { 1795, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -151829,7 +151775,7 @@ export default { 1814, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -151898,7 +151844,7 @@ export default { 1843, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -151967,7 +151913,7 @@ export default { 1885, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -152036,7 +151982,7 @@ export default { 1931, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -152105,7 +152051,7 @@ export default { 1976, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -152174,7 +152120,7 @@ export default { 2018, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -152243,7 +152189,7 @@ export default { 2069, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -152312,7 +152258,7 @@ export default { 2110, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -152337,7 +152283,7 @@ export default { 2134, { "distinct_on": [ - 2156, + 2158, "[match_maps_select_column!]" ], "limit": [ @@ -152347,11 +152293,11 @@ export default { 38 ], "order_by": [ - 2154, + 2156, "[match_maps_order_by!]" ], "where": [ - 2143 + 2145 ] } ], @@ -152359,7 +152305,7 @@ export default { 2135, { "distinct_on": [ - 2156, + 2158, "[match_maps_select_column!]" ], "limit": [ @@ -152369,11 +152315,11 @@ export default { 38 ], "order_by": [ - 2154, + 2156, "[match_maps_order_by!]" ], "where": [ - 2143 + 2145 ] } ], @@ -152381,7 +152327,7 @@ export default { 2134, { "id": [ - 4462, + 4466, "uuid!" ] } @@ -152394,19 +152340,19 @@ export default { "Int!" ], "cursor": [ - 2164, + 2168, "[match_maps_stream_cursor_input]!" ], "where": [ - 2143 + 2145 ] } ], "match_options": [ - 2176, + 2180, { "distinct_on": [ - 2191, + 2195, "[match_options_select_column!]" ], "limit": [ @@ -152416,19 +152362,19 @@ export default { 38 ], "order_by": [ - 2189, + 2193, "[match_options_order_by!]" ], "where": [ - 2180 + 2184 ] } ], "match_options_aggregate": [ - 2177, + 2181, { "distinct_on": [ - 2191, + 2195, "[match_options_select_column!]" ], "limit": [ @@ -152438,44 +152384,44 @@ export default { 38 ], "order_by": [ - 2189, + 2193, "[match_options_order_by!]" ], "where": [ - 2180 + 2184 ] } ], "match_options_by_pk": [ - 2176, + 2180, { "id": [ - 4462, + 4466, "uuid!" ] } ], "match_options_stream": [ - 2176, + 2180, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2196, + 2200, "[match_options_stream_cursor_input]!" ], "where": [ - 2180 + 2184 ] } ], "match_region_veto_picks": [ - 2204, + 2208, { "distinct_on": [ - 2222, + 2226, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -152485,19 +152431,19 @@ export default { 38 ], "order_by": [ - 2220, + 2224, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2215 ] } ], "match_region_veto_picks_aggregate": [ - 2205, + 2209, { "distinct_on": [ - 2222, + 2226, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -152507,44 +152453,44 @@ export default { 38 ], "order_by": [ - 2220, + 2224, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2215 ] } ], "match_region_veto_picks_by_pk": [ - 2204, + 2208, { "id": [ - 4462, + 4466, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2204, + 2208, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2224, + 2228, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2211 + 2215 ] } ], "match_streams": [ - 2228, + 2232, { "distinct_on": [ - 2256, + 2260, "[match_streams_select_column!]" ], "limit": [ @@ -152554,19 +152500,19 @@ export default { 38 ], "order_by": [ - 2253, + 2257, "[match_streams_order_by!]" ], "where": [ - 2240 + 2244 ] } ], "match_streams_aggregate": [ - 2229, + 2233, { "distinct_on": [ - 2256, + 2260, "[match_streams_select_column!]" ], "limit": [ @@ -152576,44 +152522,44 @@ export default { 38 ], "order_by": [ - 2253, + 2257, "[match_streams_order_by!]" ], "where": [ - 2240 + 2244 ] } ], "match_streams_by_pk": [ - 2228, + 2232, { "id": [ - 4462, + 4466, "uuid!" ] } ], "match_streams_stream": [ - 2228, + 2232, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2266, + 2270, "[match_streams_stream_cursor_input]!" ], "where": [ - 2240 + 2244 ] } ], "match_type_cfgs": [ - 2278, + 2282, { "distinct_on": [ - 2290, + 2294, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -152623,19 +152569,19 @@ export default { 38 ], "order_by": [ - 2288, + 2292, "[match_type_cfgs_order_by!]" ], "where": [ - 2281 + 2285 ] } ], "match_type_cfgs_aggregate": [ - 2279, + 2283, { "distinct_on": [ - 2290, + 2294, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -152645,16 +152591,16 @@ export default { 38 ], "order_by": [ - 2288, + 2292, "[match_type_cfgs_order_by!]" ], "where": [ - 2281 + 2285 ] } ], "match_type_cfgs_by_pk": [ - 2278, + 2282, { "type": [ 551, @@ -152663,26 +152609,26 @@ export default { } ], "match_type_cfgs_stream": [ - 2278, + 2282, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2292, + 2296, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2281 + 2285 ] } ], "matches": [ - 2296, + 2300, { "distinct_on": [ - 2318, + 2322, "[matches_select_column!]" ], "limit": [ @@ -152692,19 +152638,19 @@ export default { 38 ], "order_by": [ - 2316, + 2320, "[matches_order_by!]" ], "where": [ - 2305 + 2309 ] } ], "matches_aggregate": [ - 2297, + 2301, { "distinct_on": [ - 2318, + 2322, "[matches_select_column!]" ], "limit": [ @@ -152714,44 +152660,44 @@ export default { 38 ], "order_by": [ - 2316, + 2320, "[matches_order_by!]" ], "where": [ - 2305 + 2309 ] } ], "matches_by_pk": [ - 2296, + 2300, { "id": [ - 4462, + 4466, "uuid!" ] } ], "matches_stream": [ - 2296, + 2300, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2326, + 2330, "[matches_stream_cursor_input]!" ], "where": [ - 2305 + 2309 ] } ], "migration_hashes_hashes": [ - 2338, + 2342, { "distinct_on": [ - 2350, + 2354, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -152761,19 +152707,19 @@ export default { 38 ], "order_by": [ - 2348, + 2352, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2341 + 2345 ] } ], "migration_hashes_hashes_aggregate": [ - 2339, + 2343, { "distinct_on": [ - 2350, + 2354, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -152783,16 +152729,16 @@ export default { 38 ], "order_by": [ - 2348, + 2352, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2341 + 2345 ] } ], "migration_hashes_hashes_by_pk": [ - 2338, + 2342, { "name": [ 78, @@ -152801,26 +152747,26 @@ export default { } ], "migration_hashes_hashes_stream": [ - 2338, + 2342, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2352, + 2356, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2341 + 2345 ] } ], "my_friends": [ - 2356, + 2360, { "distinct_on": [ - 2381, + 2385, "[my_friends_select_column!]" ], "limit": [ @@ -152830,19 +152776,19 @@ export default { 38 ], "order_by": [ - 2379, + 2383, "[my_friends_order_by!]" ], "where": [ - 2368 + 2372 ] } ], "my_friends_aggregate": [ - 2357, + 2361, { "distinct_on": [ - 2381, + 2385, "[my_friends_select_column!]" ], "limit": [ @@ -152852,35 +152798,35 @@ export default { 38 ], "order_by": [ - 2379, + 2383, "[my_friends_order_by!]" ], "where": [ - 2368 + 2372 ] } ], "my_friends_stream": [ - 2356, + 2360, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2391, + 2395, "[my_friends_stream_cursor_input]!" ], "where": [ - 2368 + 2372 ] } ], "news_articles": [ - 2402, + 2406, { "distinct_on": [ - 2416, + 2420, "[news_articles_select_column!]" ], "limit": [ @@ -152890,19 +152836,19 @@ export default { 38 ], "order_by": [ - 2414, + 2418, "[news_articles_order_by!]" ], "where": [ - 2406 + 2410 ] } ], "news_articles_aggregate": [ - 2403, + 2407, { "distinct_on": [ - 2416, + 2420, "[news_articles_select_column!]" ], "limit": [ @@ -152912,44 +152858,44 @@ export default { 38 ], "order_by": [ - 2414, + 2418, "[news_articles_order_by!]" ], "where": [ - 2406 + 2410 ] } ], "news_articles_by_pk": [ - 2402, + 2406, { "id": [ - 4462, + 4466, "uuid!" ] } ], "news_articles_stream": [ - 2402, + 2406, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2421, + 2425, "[news_articles_stream_cursor_input]!" ], "where": [ - 2406 + 2410 ] } ], "notifications": [ - 2429, + 2433, { "distinct_on": [ - 2457, + 2461, "[notifications_select_column!]" ], "limit": [ @@ -152959,19 +152905,19 @@ export default { 38 ], "order_by": [ - 2454, + 2458, "[notifications_order_by!]" ], "where": [ - 2441 + 2445 ] } ], "notifications_aggregate": [ - 2430, + 2434, { "distinct_on": [ - 2457, + 2461, "[notifications_select_column!]" ], "limit": [ @@ -152981,44 +152927,44 @@ export default { 38 ], "order_by": [ - 2454, + 2458, "[notifications_order_by!]" ], "where": [ - 2441 + 2445 ] } ], "notifications_by_pk": [ - 2429, + 2433, { "id": [ - 4462, + 4466, "uuid!" ] } ], "notifications_stream": [ - 2429, + 2433, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2467, + 2471, "[notifications_stream_cursor_input]!" ], "where": [ - 2441 + 2445 ] } ], "pending_match_import_players": [ - 2482, + 2486, { "distinct_on": [ - 2503, + 2507, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -153028,19 +152974,19 @@ export default { 38 ], "order_by": [ - 2501, + 2505, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2495 ] } ], "pending_match_import_players_aggregate": [ - 2483, + 2487, { "distinct_on": [ - 2503, + 2507, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -153050,48 +152996,48 @@ export default { 38 ], "order_by": [ - 2501, + 2505, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2495 ] } ], "pending_match_import_players_by_pk": [ - 2482, + 2486, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2479, + 2483, "numeric!" ] } ], "pending_match_import_players_stream": [ - 2482, + 2486, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2511, + 2515, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 2491 + 2495 ] } ], "pending_match_imports": [ - 2523, + 2527, { "distinct_on": [ - 2538, + 2542, "[pending_match_imports_select_column!]" ], "limit": [ @@ -153101,19 +153047,19 @@ export default { 38 ], "order_by": [ - 2536, + 2540, "[pending_match_imports_order_by!]" ], "where": [ - 2527 + 2531 ] } ], "pending_match_imports_aggregate": [ - 2524, + 2528, { "distinct_on": [ - 2538, + 2542, "[pending_match_imports_select_column!]" ], "limit": [ @@ -153123,44 +153069,44 @@ export default { 38 ], "order_by": [ - 2536, + 2540, "[pending_match_imports_order_by!]" ], "where": [ - 2527 + 2531 ] } ], "pending_match_imports_by_pk": [ - 2523, + 2527, { "valve_match_id": [ - 2479, + 2483, "numeric!" ] } ], "pending_match_imports_stream": [ - 2523, + 2527, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2543, + 2547, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 2527 + 2531 ] } ], "player_aim_stats_demo": [ - 2551, + 2555, { "distinct_on": [ - 2565, + 2569, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -153170,19 +153116,19 @@ export default { 38 ], "order_by": [ - 2563, + 2567, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2555 + 2559 ] } ], "player_aim_stats_demo_aggregate": [ - 2552, + 2556, { "distinct_on": [ - 2565, + 2569, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -153192,48 +153138,48 @@ export default { 38 ], "order_by": [ - 2563, + 2567, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2555 + 2559 ] } ], "player_aim_stats_demo_by_pk": [ - 2551, + 2555, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 2551, + 2555, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2570, + 2574, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 2555 + 2559 ] } ], "player_aim_weapon_stats": [ - 2578, + 2582, { "distinct_on": [ - 2599, + 2603, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -153243,19 +153189,19 @@ export default { 38 ], "order_by": [ - 2597, + 2601, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2591 ] } ], "player_aim_weapon_stats_aggregate": [ - 2579, + 2583, { "distinct_on": [ - 2599, + 2603, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -153265,19 +153211,19 @@ export default { 38 ], "order_by": [ - 2597, + 2601, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2591 ] } ], "player_aim_weapon_stats_by_pk": [ - 2578, + 2582, { "match_map_id": [ - 4462, + 4466, "uuid!" ], "steam_id": [ @@ -153291,26 +153237,26 @@ export default { } ], "player_aim_weapon_stats_stream": [ - 2578, + 2582, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2607, + 2611, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 2587 + 2591 ] } ], "player_assists": [ - 2619, + 2623, { "distinct_on": [ - 2642, + 2646, "[player_assists_select_column!]" ], "limit": [ @@ -153320,19 +153266,19 @@ export default { 38 ], "order_by": [ - 2640, + 2644, "[player_assists_order_by!]" ], "where": [ - 2630 + 2634 ] } ], "player_assists_aggregate": [ - 2620, + 2624, { "distinct_on": [ - 2642, + 2646, "[player_assists_select_column!]" ], "limit": [ @@ -153342,16 +153288,16 @@ export default { 38 ], "order_by": [ - 2640, + 2644, "[player_assists_order_by!]" ], "where": [ - 2630 + 2634 ] } ], "player_assists_by_pk": [ - 2619, + 2623, { "attacked_steam_id": [ 180, @@ -153362,36 +153308,36 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "player_assists_stream": [ - 2619, + 2623, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2652, + 2656, "[player_assists_stream_cursor_input]!" ], "where": [ - 2630 + 2634 ] } ], "player_career_stats_v": [ - 2664, + 2668, { "distinct_on": [ - 2672, + 2676, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -153401,19 +153347,19 @@ export default { 38 ], "order_by": [ - 2671, + 2675, "[player_career_stats_v_order_by!]" ], "where": [ - 2668 + 2672 ] } ], "player_career_stats_v_aggregate": [ - 2665, + 2669, { "distinct_on": [ - 2672, + 2676, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -153423,35 +153369,35 @@ export default { 38 ], "order_by": [ - 2671, + 2675, "[player_career_stats_v_order_by!]" ], "where": [ - 2668 + 2672 ] } ], "player_career_stats_v_stream": [ - 2664, + 2668, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2676, + 2680, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 2668 + 2672 ] } ], "player_damages": [ - 2682, + 2686, { "distinct_on": [ - 2703, + 2707, "[player_damages_select_column!]" ], "limit": [ @@ -153461,19 +153407,19 @@ export default { 38 ], "order_by": [ - 2701, + 2705, "[player_damages_order_by!]" ], "where": [ - 2691 + 2695 ] } ], "player_damages_aggregate": [ - 2683, + 2687, { "distinct_on": [ - 2703, + 2707, "[player_damages_select_column!]" ], "limit": [ @@ -153483,52 +153429,52 @@ export default { 38 ], "order_by": [ - 2701, + 2705, "[player_damages_order_by!]" ], "where": [ - 2691 + 2695 ] } ], "player_damages_by_pk": [ - 2682, + 2686, { "id": [ - 4462, + 4466, "uuid!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "player_damages_stream": [ - 2682, + 2686, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2711, + 2715, "[player_damages_stream_cursor_input]!" ], "where": [ - 2691 + 2695 ] } ], "player_elo": [ - 2723, + 2727, { "distinct_on": [ - 2737, + 2741, "[player_elo_select_column!]" ], "limit": [ @@ -153538,19 +153484,19 @@ export default { 38 ], "order_by": [ - 2735, + 2739, "[player_elo_order_by!]" ], "where": [ - 2727 + 2731 ] } ], "player_elo_aggregate": [ - 2724, + 2728, { "distinct_on": [ - 2737, + 2741, "[player_elo_select_column!]" ], "limit": [ @@ -153560,19 +153506,19 @@ export default { 38 ], "order_by": [ - 2735, + 2739, "[player_elo_order_by!]" ], "where": [ - 2727 + 2731 ] } ], "player_elo_by_pk": [ - 2723, + 2727, { "match_id": [ - 4462, + 4466, "uuid!" ], "steam_id": [ @@ -153586,26 +153532,26 @@ export default { } ], "player_elo_stream": [ - 2723, + 2727, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2742, + 2746, "[player_elo_stream_cursor_input]!" ], "where": [ - 2727 + 2731 ] } ], "player_faceit_rank_history": [ - 2750, + 2754, { "distinct_on": [ - 2771, + 2775, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -153615,19 +153561,19 @@ export default { 38 ], "order_by": [ - 2769, + 2773, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 2763 ] } ], "player_faceit_rank_history_aggregate": [ - 2751, + 2755, { "distinct_on": [ - 2771, + 2775, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -153637,44 +153583,44 @@ export default { 38 ], "order_by": [ - 2769, + 2773, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 2763 ] } ], "player_faceit_rank_history_by_pk": [ - 2750, + 2754, { "id": [ - 4462, + 4466, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 2750, + 2754, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2779, + 2783, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 2759 + 2763 ] } ], "player_flashes": [ - 2791, + 2795, { "distinct_on": [ - 2814, + 2818, "[player_flashes_select_column!]" ], "limit": [ @@ -153684,19 +153630,19 @@ export default { 38 ], "order_by": [ - 2812, + 2816, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2806 ] } ], "player_flashes_aggregate": [ - 2792, + 2796, { "distinct_on": [ - 2814, + 2818, "[player_flashes_select_column!]" ], "limit": [ @@ -153706,16 +153652,16 @@ export default { 38 ], "order_by": [ - 2812, + 2816, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2806 ] } ], "player_flashes_by_pk": [ - 2791, + 2795, { "attacked_steam_id": [ 180, @@ -153726,36 +153672,36 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "player_flashes_stream": [ - 2791, + 2795, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2824, + 2828, "[player_flashes_stream_cursor_input]!" ], "where": [ - 2802 + 2806 ] } ], "player_kills": [ - 2836, + 2840, { "distinct_on": [ - 2900, + 2904, "[player_kills_select_column!]" ], "limit": [ @@ -153765,19 +153711,19 @@ export default { 38 ], "order_by": [ - 2898, + 2902, "[player_kills_order_by!]" ], "where": [ - 2847 + 2851 ] } ], "player_kills_aggregate": [ - 2837, + 2841, { "distinct_on": [ - 2900, + 2904, "[player_kills_select_column!]" ], "limit": [ @@ -153787,16 +153733,16 @@ export default { 38 ], "order_by": [ - 2898, + 2902, "[player_kills_order_by!]" ], "where": [ - 2847 + 2851 ] } ], "player_kills_by_pk": [ - 2836, + 2840, { "attacked_steam_id": [ 180, @@ -153807,20 +153753,20 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2848, + 2852, { "distinct_on": [ - 2869, + 2873, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -153830,19 +153776,19 @@ export default { 38 ], "order_by": [ - 2867, + 2871, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 2861 ] } ], "player_kills_by_weapon_aggregate": [ - 2849, + 2853, { "distinct_on": [ - 2869, + 2873, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -153852,16 +153798,16 @@ export default { 38 ], "order_by": [ - 2867, + 2871, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 2861 ] } ], "player_kills_by_weapon_by_pk": [ - 2848, + 2852, { "player_steam_id": [ 180, @@ -153874,42 +153820,42 @@ export default { } ], "player_kills_by_weapon_stream": [ - 2848, + 2852, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2877, + 2881, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 2857 + 2861 ] } ], "player_kills_stream": [ - 2836, + 2840, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2910, + 2914, "[player_kills_stream_cursor_input]!" ], "where": [ - 2847 + 2851 ] } ], "player_leaderboard_rank": [ - 2922, + 2926, { "distinct_on": [ - 2933, + 2937, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -153919,19 +153865,19 @@ export default { 38 ], "order_by": [ - 2932, + 2936, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 2930 ] } ], "player_leaderboard_rank_aggregate": [ - 2923, + 2927, { "distinct_on": [ - 2933, + 2937, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -153941,35 +153887,35 @@ export default { 38 ], "order_by": [ - 2932, + 2936, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 2930 ] } ], "player_leaderboard_rank_stream": [ - 2922, + 2926, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2938, + 2942, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 2926 + 2930 ] } ], "player_match_map_stats": [ - 2945, + 2949, { "distinct_on": [ - 2966, + 2970, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -153979,19 +153925,19 @@ export default { 38 ], "order_by": [ - 2964, + 2968, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 2958 ] } ], "player_match_map_stats_aggregate": [ - 2946, + 2950, { "distinct_on": [ - 2966, + 2970, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -154001,19 +153947,19 @@ export default { 38 ], "order_by": [ - 2964, + 2968, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 2958 ] } ], "player_match_map_stats_by_pk": [ - 2945, + 2949, { "match_map_id": [ - 4462, + 4466, "uuid!" ], "steam_id": [ @@ -154023,26 +153969,26 @@ export default { } ], "player_match_map_stats_stream": [ - 2945, + 2949, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2974, + 2978, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 2954 + 2958 ] } ], "player_match_performance_v": [ - 2986, + 2990, { "distinct_on": [ - 2994, + 2998, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -154052,19 +153998,19 @@ export default { 38 ], "order_by": [ - 2993, + 2997, "[player_match_performance_v_order_by!]" ], "where": [ - 2990 + 2994 ] } ], "player_match_performance_v_aggregate": [ - 2987, + 2991, { "distinct_on": [ - 2994, + 2998, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -154074,35 +154020,35 @@ export default { 38 ], "order_by": [ - 2993, + 2997, "[player_match_performance_v_order_by!]" ], "where": [ - 2990 + 2994 ] } ], "player_match_performance_v_stream": [ - 2986, + 2990, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2998, + 3002, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 2990 + 2994 ] } ], "player_match_stats_v": [ - 3004, + 3008, { "distinct_on": [ - 3020, + 3024, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -154112,19 +154058,19 @@ export default { 38 ], "order_by": [ - 3019, + 3023, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3017 ] } ], "player_match_stats_v_aggregate": [ - 3005, + 3009, { "distinct_on": [ - 3020, + 3024, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -154134,35 +154080,35 @@ export default { 38 ], "order_by": [ - 3019, + 3023, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3017 ] } ], "player_match_stats_v_stream": [ - 3004, + 3008, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3027, + 3031, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3013 + 3017 ] } ], "player_objectives": [ - 3037, + 3041, { "distinct_on": [ - 3058, + 3062, "[player_objectives_select_column!]" ], "limit": [ @@ -154172,19 +154118,19 @@ export default { 38 ], "order_by": [ - 3056, + 3060, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3050 ] } ], "player_objectives_aggregate": [ - 3038, + 3042, { "distinct_on": [ - 3058, + 3062, "[player_objectives_select_column!]" ], "limit": [ @@ -154194,19 +154140,19 @@ export default { 38 ], "order_by": [ - 3056, + 3060, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3050 ] } ], "player_objectives_by_pk": [ - 3037, + 3041, { "match_map_id": [ - 4462, + 4466, "uuid!" ], "player_steam_id": [ @@ -154214,32 +154160,32 @@ export default { "bigint!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "player_objectives_stream": [ - 3037, + 3041, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3066, + 3070, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3046 + 3050 ] } ], "player_performance_v": [ - 3078, + 3082, { "distinct_on": [ - 3086, + 3090, "[player_performance_v_select_column!]" ], "limit": [ @@ -154249,19 +154195,19 @@ export default { 38 ], "order_by": [ - 3085, + 3089, "[player_performance_v_order_by!]" ], "where": [ - 3082 + 3086 ] } ], "player_performance_v_aggregate": [ - 3079, + 3083, { "distinct_on": [ - 3086, + 3090, "[player_performance_v_select_column!]" ], "limit": [ @@ -154271,35 +154217,35 @@ export default { 38 ], "order_by": [ - 3085, + 3089, "[player_performance_v_order_by!]" ], "where": [ - 3082 + 3086 ] } ], "player_performance_v_stream": [ - 3078, + 3082, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3090, + 3094, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3082 + 3086 ] } ], "player_premier_rank_history": [ - 3096, + 3100, { "distinct_on": [ - 3117, + 3121, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -154309,19 +154255,19 @@ export default { 38 ], "order_by": [ - 3115, + 3119, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3109 ] } ], "player_premier_rank_history_aggregate": [ - 3097, + 3101, { "distinct_on": [ - 3117, + 3121, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -154331,44 +154277,44 @@ export default { 38 ], "order_by": [ - 3115, + 3119, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3109 ] } ], "player_premier_rank_history_by_pk": [ - 3096, + 3100, { "id": [ - 4462, + 4466, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3096, + 3100, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3125, + 3129, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3105 + 3109 ] } ], "player_sanctions": [ - 3137, + 3141, { "distinct_on": [ - 3158, + 3162, "[player_sanctions_select_column!]" ], "limit": [ @@ -154378,19 +154324,19 @@ export default { 38 ], "order_by": [ - 3156, + 3160, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3150 ] } ], "player_sanctions_aggregate": [ - 3138, + 3142, { "distinct_on": [ - 3158, + 3162, "[player_sanctions_select_column!]" ], "limit": [ @@ -154400,48 +154346,48 @@ export default { 38 ], "order_by": [ - 3156, + 3160, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3150 ] } ], "player_sanctions_by_pk": [ - 3137, + 3141, { "created_at": [ - 4024, + 4028, "timestamptz!" ], "id": [ - 4462, + 4466, "uuid!" ] } ], "player_sanctions_stream": [ - 3137, + 3141, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3166, + 3170, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3146 + 3150 ] } ], "player_season_stats": [ - 3178, + 3182, { "distinct_on": [ - 3209, + 3213, "[player_season_stats_select_column!]" ], "limit": [ @@ -154451,19 +154397,19 @@ export default { 38 ], "order_by": [ - 3207, + 3211, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3201 ] } ], "player_season_stats_aggregate": [ - 3179, + 3183, { "distinct_on": [ - 3209, + 3213, "[player_season_stats_select_column!]" ], "limit": [ @@ -154473,48 +154419,48 @@ export default { 38 ], "order_by": [ - 3207, + 3211, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3201 ] } ], "player_season_stats_by_pk": [ - 3178, + 3182, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4462, + 4466, "uuid!" ] } ], "player_season_stats_stream": [ - 3178, + 3182, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3225, + 3229, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3197 + 3201 ] } ], "player_stats": [ - 3237, + 3241, { "distinct_on": [ - 3252, + 3256, "[player_stats_select_column!]" ], "limit": [ @@ -154524,19 +154470,19 @@ export default { 38 ], "order_by": [ - 3250, + 3254, "[player_stats_order_by!]" ], "where": [ - 3241 + 3245 ] } ], "player_stats_aggregate": [ - 3238, + 3242, { "distinct_on": [ - 3252, + 3256, "[player_stats_select_column!]" ], "limit": [ @@ -154546,16 +154492,16 @@ export default { 38 ], "order_by": [ - 3250, + 3254, "[player_stats_order_by!]" ], "where": [ - 3241 + 3245 ] } ], "player_stats_by_pk": [ - 3237, + 3241, { "player_steam_id": [ 180, @@ -154564,26 +154510,26 @@ export default { } ], "player_stats_stream": [ - 3237, + 3241, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3257, + 3261, "[player_stats_stream_cursor_input]!" ], "where": [ - 3241 + 3245 ] } ], "player_steam_bot_friend": [ - 3265, + 3269, { "distinct_on": [ - 3284, + 3288, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -154593,19 +154539,19 @@ export default { 38 ], "order_by": [ - 3281, + 3285, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3270 + 3274 ] } ], "player_steam_bot_friend_aggregate": [ - 3266, + 3270, { "distinct_on": [ - 3284, + 3288, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -154615,16 +154561,16 @@ export default { 38 ], "order_by": [ - 3281, + 3285, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3270 + 3274 ] } ], "player_steam_bot_friend_by_pk": [ - 3265, + 3269, { "steam_id": [ 180, @@ -154633,26 +154579,26 @@ export default { } ], "player_steam_bot_friend_stream": [ - 3265, + 3269, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3289, + 3293, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3270 + 3274 ] } ], "player_steam_match_auth": [ - 3297, + 3301, { "distinct_on": [ - 3311, + 3315, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -154662,19 +154608,19 @@ export default { 38 ], "order_by": [ - 3309, + 3313, "[player_steam_match_auth_order_by!]" ], "where": [ - 3301 + 3305 ] } ], "player_steam_match_auth_aggregate": [ - 3298, + 3302, { "distinct_on": [ - 3311, + 3315, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -154684,16 +154630,16 @@ export default { 38 ], "order_by": [ - 3309, + 3313, "[player_steam_match_auth_order_by!]" ], "where": [ - 3301 + 3305 ] } ], "player_steam_match_auth_by_pk": [ - 3297, + 3301, { "steam_id": [ 180, @@ -154702,26 +154648,26 @@ export default { } ], "player_steam_match_auth_stream": [ - 3297, + 3301, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3316, + 3320, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3301 + 3305 ] } ], "player_unused_utility": [ - 3324, + 3328, { "distinct_on": [ - 3345, + 3349, "[player_unused_utility_select_column!]" ], "limit": [ @@ -154731,19 +154677,19 @@ export default { 38 ], "order_by": [ - 3343, + 3347, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3337 ] } ], "player_unused_utility_aggregate": [ - 3325, + 3329, { "distinct_on": [ - 3345, + 3349, "[player_unused_utility_select_column!]" ], "limit": [ @@ -154753,19 +154699,19 @@ export default { 38 ], "order_by": [ - 3343, + 3347, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3337 ] } ], "player_unused_utility_by_pk": [ - 3324, + 3328, { "match_map_id": [ - 4462, + 4466, "uuid!" ], "player_steam_id": [ @@ -154775,26 +154721,26 @@ export default { } ], "player_unused_utility_stream": [ - 3324, + 3328, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3353, + 3357, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3333 + 3337 ] } ], "player_utility": [ - 3365, + 3369, { "distinct_on": [ - 3386, + 3390, "[player_utility_select_column!]" ], "limit": [ @@ -154804,19 +154750,19 @@ export default { 38 ], "order_by": [ - 3384, + 3388, "[player_utility_order_by!]" ], "where": [ - 3374 + 3378 ] } ], "player_utility_aggregate": [ - 3366, + 3370, { "distinct_on": [ - 3386, + 3390, "[player_utility_select_column!]" ], "limit": [ @@ -154826,52 +154772,52 @@ export default { 38 ], "order_by": [ - 3384, + 3388, "[player_utility_order_by!]" ], "where": [ - 3374 + 3378 ] } ], "player_utility_by_pk": [ - 3365, + 3369, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4466, "uuid!" ], "time": [ - 4024, + 4028, "timestamptz!" ] } ], "player_utility_stream": [ - 3365, + 3369, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3394, + 3398, "[player_utility_stream_cursor_input]!" ], "where": [ - 3374 + 3378 ] } ], "player_weapon_stats_v": [ - 3406, + 3410, { "distinct_on": [ - 3422, + 3426, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -154881,19 +154827,19 @@ export default { 38 ], "order_by": [ - 3421, + 3425, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3419 ] } ], "player_weapon_stats_v_aggregate": [ - 3407, + 3411, { "distinct_on": [ - 3422, + 3426, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -154903,35 +154849,35 @@ export default { 38 ], "order_by": [ - 3421, + 3425, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3419 ] } ], "player_weapon_stats_v_stream": [ - 3406, + 3410, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3429, + 3433, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 3415 + 3419 ] } ], "players": [ - 3439, + 3443, { "distinct_on": [ - 3454, + 3458, "[players_select_column!]" ], "limit": [ @@ -154941,19 +154887,19 @@ export default { 38 ], "order_by": [ - 3452, + 3456, "[players_order_by!]" ], "where": [ - 3443 + 3447 ] } ], "players_aggregate": [ - 3440, + 3444, { "distinct_on": [ - 3454, + 3458, "[players_select_column!]" ], "limit": [ @@ -154963,16 +154909,16 @@ export default { 38 ], "order_by": [ - 3452, + 3456, "[players_order_by!]" ], "where": [ - 3443 + 3447 ] } ], "players_by_pk": [ - 3439, + 3443, { "steam_id": [ 180, @@ -154981,26 +154927,26 @@ export default { } ], "players_stream": [ - 3439, + 3443, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3459, + 3463, "[players_stream_cursor_input]!" ], "where": [ - 3443 + 3447 ] } ], "plugin_versions": [ - 3467, + 3471, { "distinct_on": [ - 3481, + 3485, "[plugin_versions_select_column!]" ], "limit": [ @@ -155010,19 +154956,19 @@ export default { 38 ], "order_by": [ - 3479, + 3483, "[plugin_versions_order_by!]" ], "where": [ - 3471 + 3475 ] } ], "plugin_versions_aggregate": [ - 3468, + 3472, { "distinct_on": [ - 3481, + 3485, "[plugin_versions_select_column!]" ], "limit": [ @@ -155032,16 +154978,16 @@ export default { 38 ], "order_by": [ - 3479, + 3483, "[plugin_versions_order_by!]" ], "where": [ - 3471 + 3475 ] } ], "plugin_versions_by_pk": [ - 3467, + 3471, { "runtime": [ 901, @@ -155054,26 +155000,26 @@ export default { } ], "plugin_versions_stream": [ - 3467, + 3471, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3486, + 3490, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 3471 + 3475 ] } ], "seasons": [ - 3498, + 3502, { "distinct_on": [ - 3513, + 3517, "[seasons_select_column!]" ], "limit": [ @@ -155083,19 +155029,19 @@ export default { 38 ], "order_by": [ - 3511, + 3515, "[seasons_order_by!]" ], "where": [ - 3502 + 3506 ] } ], "seasons_aggregate": [ - 3499, + 3503, { "distinct_on": [ - 3513, + 3517, "[seasons_select_column!]" ], "limit": [ @@ -155105,44 +155051,44 @@ export default { 38 ], "order_by": [ - 3511, + 3515, "[seasons_order_by!]" ], "where": [ - 3502 + 3506 ] } ], "seasons_by_pk": [ - 3498, + 3502, { "id": [ - 4462, + 4466, "uuid!" ] } ], "seasons_stream": [ - 3498, + 3502, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3518, + 3522, "[seasons_stream_cursor_input]!" ], "where": [ - 3502 + 3506 ] } ], "server_regions": [ - 3526, + 3530, { "distinct_on": [ - 3540, + 3544, "[server_regions_select_column!]" ], "limit": [ @@ -155152,19 +155098,19 @@ export default { 38 ], "order_by": [ - 3538, + 3542, "[server_regions_order_by!]" ], "where": [ - 3530 + 3534 ] } ], "server_regions_aggregate": [ - 3527, + 3531, { "distinct_on": [ - 3540, + 3544, "[server_regions_select_column!]" ], "limit": [ @@ -155174,16 +155120,16 @@ export default { 38 ], "order_by": [ - 3538, + 3542, "[server_regions_order_by!]" ], "where": [ - 3530 + 3534 ] } ], "server_regions_by_pk": [ - 3526, + 3530, { "value": [ 78, @@ -155192,26 +155138,26 @@ export default { } ], "server_regions_stream": [ - 3526, + 3530, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3545, + 3549, "[server_regions_stream_cursor_input]!" ], "where": [ - 3530 + 3534 ] } ], "servers": [ - 3553, + 3557, { "distinct_on": [ - 3577, + 3581, "[servers_select_column!]" ], "limit": [ @@ -155221,19 +155167,19 @@ export default { 38 ], "order_by": [ - 3575, + 3579, "[servers_order_by!]" ], "where": [ - 3564 + 3568 ] } ], "servers_aggregate": [ - 3554, + 3558, { "distinct_on": [ - 3577, + 3581, "[servers_select_column!]" ], "limit": [ @@ -155243,44 +155189,44 @@ export default { 38 ], "order_by": [ - 3575, + 3579, "[servers_order_by!]" ], "where": [ - 3564 + 3568 ] } ], "servers_by_pk": [ - 3553, + 3557, { "id": [ - 4462, + 4466, "uuid!" ] } ], "servers_stream": [ - 3553, + 3557, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3587, + 3591, "[servers_stream_cursor_input]!" ], "where": [ - 3564 + 3568 ] } ], "settings": [ - 3599, + 3603, { "distinct_on": [ - 3611, + 3615, "[settings_select_column!]" ], "limit": [ @@ -155290,19 +155236,19 @@ export default { 38 ], "order_by": [ - 3609, + 3613, "[settings_order_by!]" ], "where": [ - 3602 + 3606 ] } ], "settings_aggregate": [ - 3600, + 3604, { "distinct_on": [ - 3611, + 3615, "[settings_select_column!]" ], "limit": [ @@ -155312,16 +155258,16 @@ export default { 38 ], "order_by": [ - 3609, + 3613, "[settings_order_by!]" ], "where": [ - 3602 + 3606 ] } ], "settings_by_pk": [ - 3599, + 3603, { "name": [ 78, @@ -155330,26 +155276,26 @@ export default { } ], "settings_stream": [ - 3599, + 3603, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3613, + 3617, "[settings_stream_cursor_input]!" ], "where": [ - 3602 + 3606 ] } ], "steam_account_claims": [ - 3619, + 3623, { "distinct_on": [ - 3637, + 3641, "[steam_account_claims_select_column!]" ], "limit": [ @@ -155359,19 +155305,19 @@ export default { 38 ], "order_by": [ - 3635, + 3639, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3630 ] } ], "steam_account_claims_aggregate": [ - 3620, + 3624, { "distinct_on": [ - 3637, + 3641, "[steam_account_claims_select_column!]" ], "limit": [ @@ -155381,44 +155327,44 @@ export default { 38 ], "order_by": [ - 3635, + 3639, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3630 ] } ], "steam_account_claims_by_pk": [ - 3619, + 3623, { "id": [ - 4462, + 4466, "uuid!" ] } ], "steam_account_claims_stream": [ - 3619, + 3623, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3639, + 3643, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 3626 + 3630 ] } ], "steam_accounts": [ - 3643, + 3647, { "distinct_on": [ - 3658, + 3662, "[steam_accounts_select_column!]" ], "limit": [ @@ -155428,19 +155374,19 @@ export default { 38 ], "order_by": [ - 3656, + 3660, "[steam_accounts_order_by!]" ], "where": [ - 3647 + 3651 ] } ], "steam_accounts_aggregate": [ - 3644, + 3648, { "distinct_on": [ - 3658, + 3662, "[steam_accounts_select_column!]" ], "limit": [ @@ -155450,44 +155396,44 @@ export default { 38 ], "order_by": [ - 3656, + 3660, "[steam_accounts_order_by!]" ], "where": [ - 3647 + 3651 ] } ], "steam_accounts_by_pk": [ - 3643, + 3647, { "id": [ - 4462, + 4466, "uuid!" ] } ], "steam_accounts_stream": [ - 3643, + 3647, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3663, + 3667, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 3647 + 3651 ] } ], "system_alerts": [ - 3671, + 3675, { "distinct_on": [ - 3685, + 3689, "[system_alerts_select_column!]" ], "limit": [ @@ -155497,19 +155443,19 @@ export default { 38 ], "order_by": [ - 3683, + 3687, "[system_alerts_order_by!]" ], "where": [ - 3675 + 3679 ] } ], "system_alerts_aggregate": [ - 3672, + 3676, { "distinct_on": [ - 3685, + 3689, "[system_alerts_select_column!]" ], "limit": [ @@ -155519,44 +155465,44 @@ export default { 38 ], "order_by": [ - 3683, + 3687, "[system_alerts_order_by!]" ], "where": [ - 3675 + 3679 ] } ], "system_alerts_by_pk": [ - 3671, + 3675, { "id": [ - 4462, + 4466, "uuid!" ] } ], "system_alerts_stream": [ - 3671, + 3675, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3690, + 3694, "[system_alerts_stream_cursor_input]!" ], "where": [ - 3675 + 3679 ] } ], "team_invites": [ - 3698, + 3702, { "distinct_on": [ - 3719, + 3723, "[team_invites_select_column!]" ], "limit": [ @@ -155566,19 +155512,19 @@ export default { 38 ], "order_by": [ - 3717, + 3721, "[team_invites_order_by!]" ], "where": [ - 3707 + 3711 ] } ], "team_invites_aggregate": [ - 3699, + 3703, { "distinct_on": [ - 3719, + 3723, "[team_invites_select_column!]" ], "limit": [ @@ -155588,44 +155534,44 @@ export default { 38 ], "order_by": [ - 3717, + 3721, "[team_invites_order_by!]" ], "where": [ - 3707 + 3711 ] } ], "team_invites_by_pk": [ - 3698, + 3702, { "id": [ - 4462, + 4466, "uuid!" ] } ], "team_invites_stream": [ - 3698, + 3702, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3727, + 3731, "[team_invites_stream_cursor_input]!" ], "where": [ - 3707 + 3711 ] } ], "team_roster": [ - 3739, + 3743, { "distinct_on": [ - 3762, + 3766, "[team_roster_select_column!]" ], "limit": [ @@ -155635,19 +155581,19 @@ export default { 38 ], "order_by": [ - 3760, + 3764, "[team_roster_order_by!]" ], "where": [ - 3750 + 3754 ] } ], "team_roster_aggregate": [ - 3740, + 3744, { "distinct_on": [ - 3762, + 3766, "[team_roster_select_column!]" ], "limit": [ @@ -155657,48 +155603,48 @@ export default { 38 ], "order_by": [ - 3760, + 3764, "[team_roster_order_by!]" ], "where": [ - 3750 + 3754 ] } ], "team_roster_by_pk": [ - 3739, + 3743, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4462, + 4466, "uuid!" ] } ], "team_roster_stream": [ - 3739, + 3743, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3772, + 3776, "[team_roster_stream_cursor_input]!" ], "where": [ - 3750 + 3754 ] } ], "team_scrim_alerts": [ - 3784, + 3788, { "distinct_on": [ - 3798, + 3802, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -155708,19 +155654,19 @@ export default { 38 ], "order_by": [ - 3796, + 3800, "[team_scrim_alerts_order_by!]" ], "where": [ - 3788 + 3792 ] } ], "team_scrim_alerts_aggregate": [ - 3785, + 3789, { "distinct_on": [ - 3798, + 3802, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -155730,44 +155676,44 @@ export default { 38 ], "order_by": [ - 3796, + 3800, "[team_scrim_alerts_order_by!]" ], "where": [ - 3788 + 3792 ] } ], "team_scrim_alerts_by_pk": [ - 3784, + 3788, { "id": [ - 4462, + 4466, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 3784, + 3788, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3803, + 3807, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 3788 + 3792 ] } ], "team_scrim_availability": [ - 3811, + 3815, { "distinct_on": [ - 3831, + 3835, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -155777,19 +155723,19 @@ export default { 38 ], "order_by": [ - 3829, + 3833, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 3824 ] } ], "team_scrim_availability_aggregate": [ - 3812, + 3816, { "distinct_on": [ - 3831, + 3835, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -155799,44 +155745,44 @@ export default { 38 ], "order_by": [ - 3829, + 3833, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 3824 ] } ], "team_scrim_availability_by_pk": [ - 3811, + 3815, { "id": [ - 4462, + 4466, "uuid!" ] } ], "team_scrim_availability_stream": [ - 3811, + 3815, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3835, + 3839, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 3820 + 3824 ] } ], "team_scrim_request_proposals": [ - 3839, + 3843, { "distinct_on": [ - 3860, + 3864, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -155846,19 +155792,19 @@ export default { 38 ], "order_by": [ - 3858, + 3862, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 3852 ] } ], "team_scrim_request_proposals_aggregate": [ - 3840, + 3844, { "distinct_on": [ - 3860, + 3864, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -155868,44 +155814,44 @@ export default { 38 ], "order_by": [ - 3858, + 3862, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 3852 ] } ], "team_scrim_request_proposals_by_pk": [ - 3839, + 3843, { "id": [ - 4462, + 4466, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 3839, + 3843, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3868, + 3872, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 3848 + 3852 ] } ], "team_scrim_requests": [ - 3880, + 3884, { "distinct_on": [ - 3904, + 3908, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -155915,19 +155861,19 @@ export default { 38 ], "order_by": [ - 3902, + 3906, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 3895 ] } ], "team_scrim_requests_aggregate": [ - 3881, + 3885, { "distinct_on": [ - 3904, + 3908, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -155937,44 +155883,44 @@ export default { 38 ], "order_by": [ - 3902, + 3906, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 3895 ] } ], "team_scrim_requests_by_pk": [ - 3880, + 3884, { "id": [ - 4462, + 4466, "uuid!" ] } ], "team_scrim_requests_stream": [ - 3880, + 3884, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3914, + 3918, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 3891 + 3895 ] } ], "team_scrim_settings": [ - 3926, + 3930, { "distinct_on": [ - 3941, + 3945, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -155984,19 +155930,19 @@ export default { 38 ], "order_by": [ - 3939, + 3943, "[team_scrim_settings_order_by!]" ], "where": [ - 3930 + 3934 ] } ], "team_scrim_settings_aggregate": [ - 3927, + 3931, { "distinct_on": [ - 3941, + 3945, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -156006,44 +155952,44 @@ export default { 38 ], "order_by": [ - 3939, + 3943, "[team_scrim_settings_order_by!]" ], "where": [ - 3930 + 3934 ] } ], "team_scrim_settings_by_pk": [ - 3926, + 3930, { "id": [ - 4462, + 4466, "uuid!" ] } ], "team_scrim_settings_stream": [ - 3926, + 3930, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3946, + 3950, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 3930 + 3934 ] } ], "team_suggestions": [ - 3954, + 3958, { "distinct_on": [ - 3968, + 3972, "[team_suggestions_select_column!]" ], "limit": [ @@ -156053,19 +155999,19 @@ export default { 38 ], "order_by": [ - 3966, + 3970, "[team_suggestions_order_by!]" ], "where": [ - 3958 + 3962 ] } ], "team_suggestions_aggregate": [ - 3955, + 3959, { "distinct_on": [ - 3968, + 3972, "[team_suggestions_select_column!]" ], "limit": [ @@ -156075,44 +156021,44 @@ export default { 38 ], "order_by": [ - 3966, + 3970, "[team_suggestions_order_by!]" ], "where": [ - 3958 + 3962 ] } ], "team_suggestions_by_pk": [ - 3954, + 3958, { "id": [ - 4462, + 4466, "uuid!" ] } ], "team_suggestions_stream": [ - 3954, + 3958, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3973, + 3977, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 3958 + 3962 ] } ], "teams": [ - 3981, + 3985, { "distinct_on": [ - 4003, + 4007, "[teams_select_column!]" ], "limit": [ @@ -156122,19 +156068,19 @@ export default { 38 ], "order_by": [ - 4001, + 4005, "[teams_order_by!]" ], "where": [ - 3990 + 3994 ] } ], "teams_aggregate": [ - 3982, + 3986, { "distinct_on": [ - 4003, + 4007, "[teams_select_column!]" ], "limit": [ @@ -156144,44 +156090,44 @@ export default { 38 ], "order_by": [ - 4001, + 4005, "[teams_order_by!]" ], "where": [ - 3990 + 3994 ] } ], "teams_by_pk": [ - 3981, + 3985, { "id": [ - 4462, + 4466, "uuid!" ] } ], "teams_stream": [ - 3981, + 3985, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4011, + 4015, "[teams_stream_cursor_input]!" ], "where": [ - 3990 + 3994 ] } ], "tournament_brackets": [ - 4026, + 4030, { "distinct_on": [ - 4050, + 4054, "[tournament_brackets_select_column!]" ], "limit": [ @@ -156191,19 +156137,19 @@ export default { 38 ], "order_by": [ - 4048, + 4052, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4041 ] } ], "tournament_brackets_aggregate": [ - 4027, + 4031, { "distinct_on": [ - 4050, + 4054, "[tournament_brackets_select_column!]" ], "limit": [ @@ -156213,44 +156159,44 @@ export default { 38 ], "order_by": [ - 4048, + 4052, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4041 ] } ], "tournament_brackets_by_pk": [ - 4026, + 4030, { "id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_brackets_stream": [ - 4026, + 4030, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4060, + 4064, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4037 + 4041 ] } ], "tournament_organizers": [ - 4072, + 4076, { "distinct_on": [ - 4093, + 4097, "[tournament_organizers_select_column!]" ], "limit": [ @@ -156260,19 +156206,19 @@ export default { 38 ], "order_by": [ - 4091, + 4095, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4085 ] } ], "tournament_organizers_aggregate": [ - 4073, + 4077, { "distinct_on": [ - 4093, + 4097, "[tournament_organizers_select_column!]" ], "limit": [ @@ -156282,48 +156228,48 @@ export default { 38 ], "order_by": [ - 4091, + 4095, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4085 ] } ], "tournament_organizers_by_pk": [ - 4072, + 4076, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_organizers_stream": [ - 4072, + 4076, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4101, + 4105, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4081 + 4085 ] } ], "tournament_stage_windows": [ - 4113, + 4117, { "distinct_on": [ - 4134, + 4138, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -156333,19 +156279,19 @@ export default { 38 ], "order_by": [ - 4132, + 4136, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4126 ] } ], "tournament_stage_windows_aggregate": [ - 4114, + 4118, { "distinct_on": [ - 4134, + 4138, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -156355,44 +156301,44 @@ export default { 38 ], "order_by": [ - 4132, + 4136, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4126 ] } ], "tournament_stage_windows_by_pk": [ - 4113, + 4117, { "id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4113, + 4117, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4142, + 4146, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4122 + 4126 ] } ], "tournament_stages": [ - 4154, + 4158, { "distinct_on": [ - 4183, + 4187, "[tournament_stages_select_column!]" ], "limit": [ @@ -156402,19 +156348,19 @@ export default { 38 ], "order_by": [ - 4180, + 4184, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4170 ] } ], "tournament_stages_aggregate": [ - 4155, + 4159, { "distinct_on": [ - 4183, + 4187, "[tournament_stages_select_column!]" ], "limit": [ @@ -156424,44 +156370,44 @@ export default { 38 ], "order_by": [ - 4180, + 4184, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4170 ] } ], "tournament_stages_by_pk": [ - 4154, + 4158, { "id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_stages_stream": [ - 4154, + 4158, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4193, + 4197, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4166 + 4170 ] } ], "tournament_team_invites": [ - 4205, + 4209, { "distinct_on": [ - 4226, + 4230, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -156471,19 +156417,19 @@ export default { 38 ], "order_by": [ - 4224, + 4228, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4218 ] } ], "tournament_team_invites_aggregate": [ - 4206, + 4210, { "distinct_on": [ - 4226, + 4230, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -156493,44 +156439,44 @@ export default { 38 ], "order_by": [ - 4224, + 4228, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4218 ] } ], "tournament_team_invites_by_pk": [ - 4205, + 4209, { "id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4205, + 4209, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4234, + 4238, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4214 + 4218 ] } ], "tournament_team_roster": [ - 4246, + 4250, { "distinct_on": [ - 4267, + 4271, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -156540,19 +156486,19 @@ export default { 38 ], "order_by": [ - 4265, + 4269, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4259 ] } ], "tournament_team_roster_aggregate": [ - 4247, + 4251, { "distinct_on": [ - 4267, + 4271, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -156562,48 +156508,48 @@ export default { 38 ], "order_by": [ - 4265, + 4269, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4259 ] } ], "tournament_team_roster_by_pk": [ - 4246, + 4250, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_team_roster_stream": [ - 4246, + 4250, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4275, + 4279, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 4255 + 4259 ] } ], "tournament_teams": [ - 4287, + 4291, { "distinct_on": [ - 4309, + 4313, "[tournament_teams_select_column!]" ], "limit": [ @@ -156613,19 +156559,19 @@ export default { 38 ], "order_by": [ - 4307, + 4311, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4300 ] } ], "tournament_teams_aggregate": [ - 4288, + 4292, { "distinct_on": [ - 4309, + 4313, "[tournament_teams_select_column!]" ], "limit": [ @@ -156635,44 +156581,44 @@ export default { 38 ], "order_by": [ - 4307, + 4311, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4300 ] } ], "tournament_teams_by_pk": [ - 4287, + 4291, { "id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_teams_stream": [ - 4287, + 4291, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4317, + 4321, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 4296 + 4300 ] } ], "tournament_trophies": [ - 4329, + 4333, { "distinct_on": [ - 4352, + 4356, "[tournament_trophies_select_column!]" ], "limit": [ @@ -156682,19 +156628,19 @@ export default { 38 ], "order_by": [ - 4350, + 4354, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4344 ] } ], "tournament_trophies_aggregate": [ - 4330, + 4334, { "distinct_on": [ - 4352, + 4356, "[tournament_trophies_select_column!]" ], "limit": [ @@ -156704,44 +156650,44 @@ export default { 38 ], "order_by": [ - 4350, + 4354, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4344 ] } ], "tournament_trophies_by_pk": [ - 4329, + 4333, { "id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_trophies_stream": [ - 4329, + 4333, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4362, + 4366, "[tournament_trophies_stream_cursor_input]!" ], "where": [ - 4340 + 4344 ] } ], "tournament_trophy_configs": [ - 4374, + 4378, { "distinct_on": [ - 4396, + 4400, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -156751,19 +156697,19 @@ export default { 38 ], "order_by": [ - 4394, + 4398, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4383 + 4387 ] } ], "tournament_trophy_configs_aggregate": [ - 4375, + 4379, { "distinct_on": [ - 4396, + 4400, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -156773,44 +156719,44 @@ export default { 38 ], "order_by": [ - 4394, + 4398, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4383 + 4387 ] } ], "tournament_trophy_configs_by_pk": [ - 4374, + 4378, { "id": [ - 4462, + 4466, "uuid!" ] } ], "tournament_trophy_configs_stream": [ - 4374, + 4378, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4404, + 4408, "[tournament_trophy_configs_stream_cursor_input]!" ], "where": [ - 4383 + 4387 ] } ], "tournaments": [ - 4416, + 4420, { "distinct_on": [ - 4440, + 4444, "[tournaments_select_column!]" ], "limit": [ @@ -156820,19 +156766,19 @@ export default { 38 ], "order_by": [ - 4438, + 4442, "[tournaments_order_by!]" ], "where": [ - 4427 + 4431 ] } ], "tournaments_aggregate": [ - 4417, + 4421, { "distinct_on": [ - 4440, + 4444, "[tournaments_select_column!]" ], "limit": [ @@ -156842,44 +156788,44 @@ export default { 38 ], "order_by": [ - 4438, + 4442, "[tournaments_order_by!]" ], "where": [ - 4427 + 4431 ] } ], "tournaments_by_pk": [ - 4416, + 4420, { "id": [ - 4462, + 4466, "uuid!" ] } ], "tournaments_stream": [ - 4416, + 4420, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4450, + 4454, "[tournaments_stream_cursor_input]!" ], "where": [ - 4427 + 4431 ] } ], "v_gpu_pool_status": [ - 4465, + 4469, { "distinct_on": [ - 4473, + 4477, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -156889,19 +156835,19 @@ export default { 38 ], "order_by": [ - 4472, + 4476, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4469 + 4473 ] } ], "v_gpu_pool_status_aggregate": [ - 4466, + 4470, { "distinct_on": [ - 4473, + 4477, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -156911,35 +156857,35 @@ export default { 38 ], "order_by": [ - 4472, + 4476, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4469 + 4473 ] } ], "v_gpu_pool_status_stream": [ - 4465, + 4469, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4477, + 4481, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 4469 + 4473 ] } ], "v_league_division_standings": [ - 4483, + 4487, { "distinct_on": [ - 4499, + 4503, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -156949,19 +156895,19 @@ export default { 38 ], "order_by": [ - 4498, + 4502, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4496 ] } ], "v_league_division_standings_aggregate": [ - 4484, + 4488, { "distinct_on": [ - 4499, + 4503, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -156971,35 +156917,35 @@ export default { 38 ], "order_by": [ - 4498, + 4502, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4496 ] } ], "v_league_division_standings_stream": [ - 4483, + 4487, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4506, + 4510, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 4492 + 4496 ] } ], "v_league_season_player_stats": [ - 4516, + 4520, { "distinct_on": [ - 4542, + 4546, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -157009,19 +156955,19 @@ export default { 38 ], "order_by": [ - 4541, + 4545, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4539 ] } ], "v_league_season_player_stats_aggregate": [ - 4517, + 4521, { "distinct_on": [ - 4542, + 4546, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -157031,35 +156977,35 @@ export default { 38 ], "order_by": [ - 4541, + 4545, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4539 ] } ], "v_league_season_player_stats_stream": [ - 4516, + 4520, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4557, + 4561, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 4535 + 4539 ] } ], "v_match_captains": [ - 4567, + 4571, { "distinct_on": [ - 4579, + 4583, "[v_match_captains_select_column!]" ], "limit": [ @@ -157069,19 +157015,19 @@ export default { 38 ], "order_by": [ - 4578, + 4582, "[v_match_captains_order_by!]" ], "where": [ - 4571 + 4575 ] } ], "v_match_captains_aggregate": [ - 4568, + 4572, { "distinct_on": [ - 4579, + 4583, "[v_match_captains_select_column!]" ], "limit": [ @@ -157091,35 +157037,35 @@ export default { 38 ], "order_by": [ - 4578, + 4582, "[v_match_captains_order_by!]" ], "where": [ - 4571 + 4575 ] } ], "v_match_captains_stream": [ - 4567, + 4571, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4584, + 4588, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 4571 + 4575 ] } ], "v_match_clutches": [ - 4591, + 4595, { "distinct_on": [ - 4607, + 4611, "[v_match_clutches_select_column!]" ], "limit": [ @@ -157129,19 +157075,19 @@ export default { 38 ], "order_by": [ - 4606, + 4610, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4604 ] } ], "v_match_clutches_aggregate": [ - 4592, + 4596, { "distinct_on": [ - 4607, + 4611, "[v_match_clutches_select_column!]" ], "limit": [ @@ -157151,35 +157097,35 @@ export default { 38 ], "order_by": [ - 4606, + 4610, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4604 ] } ], "v_match_clutches_stream": [ - 4591, + 4595, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4614, + 4618, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 4600 + 4604 ] } ], "v_match_kill_pairs": [ - 4624, + 4628, { "distinct_on": [ - 4632, + 4636, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -157189,19 +157135,19 @@ export default { 38 ], "order_by": [ - 4631, + 4635, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4628 + 4632 ] } ], "v_match_kill_pairs_aggregate": [ - 4625, + 4629, { "distinct_on": [ - 4632, + 4636, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -157211,35 +157157,35 @@ export default { 38 ], "order_by": [ - 4631, + 4635, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4628 + 4632 ] } ], "v_match_kill_pairs_stream": [ - 4624, + 4628, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4636, + 4640, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 4628 + 4632 ] } ], "v_match_lineup_buy_types": [ - 4642, + 4646, { "distinct_on": [ - 4650, + 4654, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -157249,19 +157195,19 @@ export default { 38 ], "order_by": [ - 4649, + 4653, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4646 + 4650 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4643, + 4647, { "distinct_on": [ - 4650, + 4654, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -157271,35 +157217,35 @@ export default { 38 ], "order_by": [ - 4649, + 4653, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4646 + 4650 ] } ], "v_match_lineup_buy_types_stream": [ - 4642, + 4646, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4654, + 4658, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 4646 + 4650 ] } ], "v_match_lineup_map_stats": [ - 4660, + 4664, { "distinct_on": [ - 4668, + 4672, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -157309,19 +157255,19 @@ export default { 38 ], "order_by": [ - 4667, + 4671, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4664 + 4668 ] } ], "v_match_lineup_map_stats_aggregate": [ - 4661, + 4665, { "distinct_on": [ - 4668, + 4672, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -157331,35 +157277,35 @@ export default { 38 ], "order_by": [ - 4667, + 4671, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4664 + 4668 ] } ], "v_match_lineup_map_stats_stream": [ - 4660, + 4664, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4672, + 4676, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 4664 + 4668 ] } ], "v_match_map_backup_rounds": [ - 4678, + 4682, { "distinct_on": [ - 4689, + 4693, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -157369,19 +157315,19 @@ export default { 38 ], "order_by": [ - 4688, + 4692, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4682 + 4686 ] } ], "v_match_map_backup_rounds_aggregate": [ - 4679, + 4683, { "distinct_on": [ - 4689, + 4693, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -157391,35 +157337,35 @@ export default { 38 ], "order_by": [ - 4688, + 4692, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4682 + 4686 ] } ], "v_match_map_backup_rounds_stream": [ - 4678, + 4682, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4694, + 4698, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 4682 + 4686 ] } ], "v_match_player_buy_types": [ - 4701, + 4705, { "distinct_on": [ - 4709, + 4713, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -157429,19 +157375,19 @@ export default { 38 ], "order_by": [ - 4708, + 4712, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4705 + 4709 ] } ], "v_match_player_buy_types_aggregate": [ - 4702, + 4706, { "distinct_on": [ - 4709, + 4713, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -157451,35 +157397,35 @@ export default { 38 ], "order_by": [ - 4708, + 4712, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4705 + 4709 ] } ], "v_match_player_buy_types_stream": [ - 4701, + 4705, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4713, + 4717, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 4705 + 4709 ] } ], "v_match_player_opening_duels": [ - 4719, + 4723, { "distinct_on": [ - 4735, + 4739, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -157489,19 +157435,19 @@ export default { 38 ], "order_by": [ - 4734, + 4738, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 4732 ] } ], "v_match_player_opening_duels_aggregate": [ - 4720, + 4724, { "distinct_on": [ - 4735, + 4739, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -157511,35 +157457,35 @@ export default { 38 ], "order_by": [ - 4734, + 4738, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 4732 ] } ], "v_match_player_opening_duels_stream": [ - 4719, + 4723, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4742, + 4746, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 4728 + 4732 ] } ], "v_player_arch_nemesis": [ - 4752, + 4756, { "distinct_on": [ - 4760, + 4764, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -157549,19 +157495,19 @@ export default { 38 ], "order_by": [ - 4759, + 4763, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4756 + 4760 ] } ], "v_player_arch_nemesis_aggregate": [ - 4753, + 4757, { "distinct_on": [ - 4760, + 4764, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -157571,35 +157517,35 @@ export default { 38 ], "order_by": [ - 4759, + 4763, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4756 + 4760 ] } ], "v_player_arch_nemesis_stream": [ - 4752, + 4756, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4764, + 4768, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 4756 + 4760 ] } ], "v_player_damage": [ - 4770, + 4774, { "distinct_on": [ - 4778, + 4782, "[v_player_damage_select_column!]" ], "limit": [ @@ -157609,19 +157555,19 @@ export default { 38 ], "order_by": [ - 4777, + 4781, "[v_player_damage_order_by!]" ], "where": [ - 4774 + 4778 ] } ], "v_player_damage_aggregate": [ - 4771, + 4775, { "distinct_on": [ - 4778, + 4782, "[v_player_damage_select_column!]" ], "limit": [ @@ -157631,35 +157577,35 @@ export default { 38 ], "order_by": [ - 4777, + 4781, "[v_player_damage_order_by!]" ], "where": [ - 4774 + 4778 ] } ], "v_player_damage_stream": [ - 4770, + 4774, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4782, + 4786, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 4774 + 4778 ] } ], "v_player_elo": [ - 4788, + 4792, { "distinct_on": [ - 4814, + 4818, "[v_player_elo_select_column!]" ], "limit": [ @@ -157669,19 +157615,19 @@ export default { 38 ], "order_by": [ - 4813, + 4817, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 4811 ] } ], "v_player_elo_aggregate": [ - 4789, + 4793, { "distinct_on": [ - 4814, + 4818, "[v_player_elo_select_column!]" ], "limit": [ @@ -157691,35 +157637,35 @@ export default { 38 ], "order_by": [ - 4813, + 4817, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 4811 ] } ], "v_player_elo_stream": [ - 4788, + 4792, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4829, + 4833, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 4807 + 4811 ] } ], "v_player_map_losses": [ - 4839, + 4843, { "distinct_on": [ - 4847, + 4851, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -157729,19 +157675,19 @@ export default { 38 ], "order_by": [ - 4846, + 4850, "[v_player_map_losses_order_by!]" ], "where": [ - 4843 + 4847 ] } ], "v_player_map_losses_aggregate": [ - 4840, + 4844, { "distinct_on": [ - 4847, + 4851, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -157751,35 +157697,35 @@ export default { 38 ], "order_by": [ - 4846, + 4850, "[v_player_map_losses_order_by!]" ], "where": [ - 4843 + 4847 ] } ], "v_player_map_losses_stream": [ - 4839, + 4843, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4851, + 4855, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 4843 + 4847 ] } ], "v_player_map_wins": [ - 4857, + 4861, { "distinct_on": [ - 4865, + 4869, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -157789,19 +157735,19 @@ export default { 38 ], "order_by": [ - 4864, + 4868, "[v_player_map_wins_order_by!]" ], "where": [ - 4861 + 4865 ] } ], "v_player_map_wins_aggregate": [ - 4858, + 4862, { "distinct_on": [ - 4865, + 4869, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -157811,35 +157757,35 @@ export default { 38 ], "order_by": [ - 4864, + 4868, "[v_player_map_wins_order_by!]" ], "where": [ - 4861 + 4865 ] } ], "v_player_map_wins_stream": [ - 4857, + 4861, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4869, + 4873, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 4861 + 4865 ] } ], "v_player_match_head_to_head": [ - 4875, + 4879, { "distinct_on": [ - 4883, + 4887, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -157849,19 +157795,19 @@ export default { 38 ], "order_by": [ - 4882, + 4886, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4879 + 4883 ] } ], "v_player_match_head_to_head_aggregate": [ - 4876, + 4880, { "distinct_on": [ - 4883, + 4887, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -157871,35 +157817,35 @@ export default { 38 ], "order_by": [ - 4882, + 4886, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4879 + 4883 ] } ], "v_player_match_head_to_head_stream": [ - 4875, + 4879, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4887, + 4891, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 4879 + 4883 ] } ], "v_player_match_map_hltv": [ - 4893, + 4897, { "distinct_on": [ - 4911, + 4915, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -157909,19 +157855,19 @@ export default { 38 ], "order_by": [ - 4910, + 4914, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 4906 ] } ], "v_player_match_map_hltv_aggregate": [ - 4894, + 4898, { "distinct_on": [ - 4911, + 4915, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -157931,35 +157877,35 @@ export default { 38 ], "order_by": [ - 4910, + 4914, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 4906 ] } ], "v_player_match_map_hltv_stream": [ - 4893, + 4897, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4919, + 4923, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 4902 + 4906 ] } ], "v_player_match_map_roles": [ - 4930, + 4934, { "distinct_on": [ - 4938, + 4942, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -157969,19 +157915,19 @@ export default { 38 ], "order_by": [ - 4937, + 4941, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4934 + 4938 ] } ], "v_player_match_map_roles_aggregate": [ - 4931, + 4935, { "distinct_on": [ - 4938, + 4942, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -157991,35 +157937,35 @@ export default { 38 ], "order_by": [ - 4937, + 4941, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4934 + 4938 ] } ], "v_player_match_map_roles_stream": [ - 4930, + 4934, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4942, + 4946, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 4934 + 4938 ] } ], "v_player_match_performance": [ - 4948, + 4952, { "distinct_on": [ - 4956, + 4960, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -158029,19 +157975,19 @@ export default { 38 ], "order_by": [ - 4955, + 4959, "[v_player_match_performance_order_by!]" ], "where": [ - 4952 + 4956 ] } ], "v_player_match_performance_aggregate": [ - 4949, + 4953, { "distinct_on": [ - 4956, + 4960, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -158051,35 +157997,35 @@ export default { 38 ], "order_by": [ - 4955, + 4959, "[v_player_match_performance_order_by!]" ], "where": [ - 4952 + 4956 ] } ], "v_player_match_performance_stream": [ - 4948, + 4952, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4960, + 4964, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 4952 + 4956 ] } ], "v_player_match_rating": [ - 4966, + 4970, { "distinct_on": [ - 4974, + 4978, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -158089,19 +158035,19 @@ export default { 38 ], "order_by": [ - 4973, + 4977, "[v_player_match_rating_order_by!]" ], "where": [ - 4970 + 4974 ] } ], "v_player_match_rating_aggregate": [ - 4967, + 4971, { "distinct_on": [ - 4974, + 4978, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -158111,35 +158057,35 @@ export default { 38 ], "order_by": [ - 4973, + 4977, "[v_player_match_rating_order_by!]" ], "where": [ - 4970 + 4974 ] } ], "v_player_match_rating_stream": [ - 4966, + 4970, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4978, + 4982, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 4970 + 4974 ] } ], "v_player_multi_kills": [ - 4984, + 4988, { "distinct_on": [ - 5000, + 5004, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -158149,19 +158095,19 @@ export default { 38 ], "order_by": [ - 4999, + 5003, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 4997 ] } ], "v_player_multi_kills_aggregate": [ - 4985, + 4989, { "distinct_on": [ - 5000, + 5004, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -158171,35 +158117,35 @@ export default { 38 ], "order_by": [ - 4999, + 5003, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 4997 ] } ], "v_player_multi_kills_stream": [ - 4984, + 4988, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5007, + 5011, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 4993 + 4997 ] } ], "v_player_weapon_damage": [ - 5017, + 5021, { "distinct_on": [ - 5025, + 5029, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -158209,19 +158155,19 @@ export default { 38 ], "order_by": [ - 5024, + 5028, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5021 + 5025 ] } ], "v_player_weapon_damage_aggregate": [ - 5018, + 5022, { "distinct_on": [ - 5025, + 5029, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -158231,35 +158177,35 @@ export default { 38 ], "order_by": [ - 5024, + 5028, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5021 + 5025 ] } ], "v_player_weapon_damage_stream": [ - 5017, + 5021, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5029, + 5033, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5021 + 5025 ] } ], "v_player_weapon_kills": [ - 5035, + 5039, { "distinct_on": [ - 5043, + 5047, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -158269,19 +158215,19 @@ export default { 38 ], "order_by": [ - 5042, + 5046, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5039 + 5043 ] } ], "v_player_weapon_kills_aggregate": [ - 5036, + 5040, { "distinct_on": [ - 5043, + 5047, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -158291,35 +158237,35 @@ export default { 38 ], "order_by": [ - 5042, + 5046, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5039 + 5043 ] } ], "v_player_weapon_kills_stream": [ - 5035, + 5039, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5047, + 5051, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5039 + 5043 ] } ], "v_pool_maps": [ - 5053, + 5057, { "distinct_on": [ - 5070, + 5074, "[v_pool_maps_select_column!]" ], "limit": [ @@ -158329,19 +158275,19 @@ export default { 38 ], "order_by": [ - 5069, + 5073, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5066 ] } ], "v_pool_maps_aggregate": [ - 5054, + 5058, { "distinct_on": [ - 5070, + 5074, "[v_pool_maps_select_column!]" ], "limit": [ @@ -158351,35 +158297,35 @@ export default { 38 ], "order_by": [ - 5069, + 5073, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5066 ] } ], "v_pool_maps_stream": [ - 5053, + 5057, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5074, + 5078, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5062 + 5066 ] } ], "v_steam_account_pool_status": [ - 5077, + 5081, { "distinct_on": [ - 5085, + 5089, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -158389,19 +158335,19 @@ export default { 38 ], "order_by": [ - 5084, + 5088, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5081 + 5085 ] } ], "v_steam_account_pool_status_aggregate": [ - 5078, + 5082, { "distinct_on": [ - 5085, + 5089, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -158411,35 +158357,35 @@ export default { 38 ], "order_by": [ - 5084, + 5088, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5081 + 5085 ] } ], "v_steam_account_pool_status_stream": [ - 5077, + 5081, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5089, + 5093, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5081 + 5085 ] } ], "v_team_ranks": [ - 5095, + 5099, { "distinct_on": [ - 5105, + 5109, "[v_team_ranks_select_column!]" ], "limit": [ @@ -158449,19 +158395,19 @@ export default { 38 ], "order_by": [ - 5104, + 5108, "[v_team_ranks_order_by!]" ], "where": [ - 5099 + 5103 ] } ], "v_team_ranks_aggregate": [ - 5096, + 5100, { "distinct_on": [ - 5105, + 5109, "[v_team_ranks_select_column!]" ], "limit": [ @@ -158471,35 +158417,35 @@ export default { 38 ], "order_by": [ - 5104, + 5108, "[v_team_ranks_order_by!]" ], "where": [ - 5099 + 5103 ] } ], "v_team_ranks_stream": [ - 5095, + 5099, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5109, + 5113, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5099 + 5103 ] } ], "v_team_reputation": [ - 5115, + 5119, { "distinct_on": [ - 5125, + 5129, "[v_team_reputation_select_column!]" ], "limit": [ @@ -158509,19 +158455,19 @@ export default { 38 ], "order_by": [ - 5124, + 5128, "[v_team_reputation_order_by!]" ], "where": [ - 5119 + 5123 ] } ], "v_team_reputation_aggregate": [ - 5116, + 5120, { "distinct_on": [ - 5125, + 5129, "[v_team_reputation_select_column!]" ], "limit": [ @@ -158531,35 +158477,35 @@ export default { 38 ], "order_by": [ - 5124, + 5128, "[v_team_reputation_order_by!]" ], "where": [ - 5119 + 5123 ] } ], "v_team_reputation_stream": [ - 5115, + 5119, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5129, + 5133, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5119 + 5123 ] } ], "v_team_stage_results": [ - 5135, + 5139, { "distinct_on": [ - 5167, + 5171, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -158569,19 +158515,19 @@ export default { 38 ], "order_by": [ - 5165, + 5169, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5158 ] } ], "v_team_stage_results_aggregate": [ - 5136, + 5140, { "distinct_on": [ - 5167, + 5171, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -158591,48 +158537,48 @@ export default { 38 ], "order_by": [ - 5165, + 5169, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5158 ] } ], "v_team_stage_results_by_pk": [ - 5135, + 5139, { "tournament_stage_id": [ - 4462, + 4466, "uuid!" ], "tournament_team_id": [ - 4462, + 4466, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5135, + 5139, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5183, + 5187, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5154 + 5158 ] } ], "v_team_tournament_results": [ - 5195, + 5199, { "distinct_on": [ - 5221, + 5225, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -158642,19 +158588,19 @@ export default { 38 ], "order_by": [ - 5220, + 5224, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5218 ] } ], "v_team_tournament_results_aggregate": [ - 5196, + 5200, { "distinct_on": [ - 5221, + 5225, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -158664,35 +158610,35 @@ export default { 38 ], "order_by": [ - 5220, + 5224, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5218 ] } ], "v_team_tournament_results_stream": [ - 5195, + 5199, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5236, + 5240, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5214 + 5218 ] } ], "v_tournament_player_stats": [ - 5246, + 5250, { "distinct_on": [ - 5272, + 5276, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -158702,19 +158648,19 @@ export default { 38 ], "order_by": [ - 5271, + 5275, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5269 ] } ], "v_tournament_player_stats_aggregate": [ - 5247, + 5251, { "distinct_on": [ - 5272, + 5276, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -158724,27 +158670,27 @@ export default { 38 ], "order_by": [ - 5271, + 5275, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5269 ] } ], "v_tournament_player_stats_stream": [ - 5246, + 5250, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5287, + 5291, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 5265 + 5269 ] } ], From a9b078ad1a8f66517c27fc2678fa798eae3db06a Mon Sep 17 00:00:00 2001 From: Flegma Date: Fri, 10 Jul 2026 00:07:06 +0200 Subject: [PATCH 9/9] bug: complete stale clone column list and harden kill switch parsing --- .../functions/tournaments/update_match_options_best_of.sql | 7 +++++-- src/matches/matches.controller.ts | 3 ++- test/anti-wallhack.spec.ts | 1 + 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/hasura/functions/tournaments/update_match_options_best_of.sql b/hasura/functions/tournaments/update_match_options_best_of.sql index 77913d51..d939ddb5 100644 --- a/hasura/functions/tournaments/update_match_options_best_of.sql +++ b/hasura/functions/tournaments/update_match_options_best_of.sql @@ -51,7 +51,8 @@ BEGIN overtime, knife_round, anti_wallhack, mr, best_of, coaches, number_of_substitutes, map_veto, timeout_setting, tech_timeout_setting, map_pool_id, type, regions, prefer_dedicated_server, invite_code, - region_veto, ready_setting, check_in_setting, default_models, tv_delay + region_veto, ready_setting, check_in_setting, default_models, tv_delay, + auto_cancellation, match_mode, auto_cancel_duration, live_match_timeout ) VALUES ( match_options_record.overtime, match_options_record.knife_round, match_options_record.anti_wallhack, @@ -63,7 +64,9 @@ BEGIN match_options_record.prefer_dedicated_server, match_options_record.invite_code, match_options_record.region_veto, match_options_record.ready_setting, match_options_record.check_in_setting, - match_options_record.default_models, match_options_record.tv_delay + match_options_record.default_models, match_options_record.tv_delay, + match_options_record.auto_cancellation, match_options_record.match_mode, + match_options_record.auto_cancel_duration, match_options_record.live_match_timeout ) RETURNING id INTO final_match_options_id; diff --git a/src/matches/matches.controller.ts b/src/matches/matches.controller.ts index 7c4edc6e..4a7a8c98 100644 --- a/src/matches/matches.controller.ts +++ b/src/matches/matches.controller.ts @@ -341,7 +341,8 @@ export class MatchesController { }); match.options.anti_wallhack = - match.options.anti_wallhack && antiWallhackSetting?.value !== "false"; + match.options.anti_wallhack && + antiWallhackSetting?.value?.trim().toLowerCase() !== "false"; // e_game_cfg_types_enum doesn't include Premier/Faceit (imports only). const cfgType = diff --git a/test/anti-wallhack.spec.ts b/test/anti-wallhack.spec.ts index f99fad34..fd6d6148 100644 --- a/test/anti-wallhack.spec.ts +++ b/test/anti-wallhack.spec.ts @@ -53,6 +53,7 @@ describe("anti-wallhack columns (SQL-driven)", () => { `SELECT data_type, is_nullable, column_default FROM information_schema.columns WHERE table_name = 'match_maps' + AND table_schema = 'public' AND column_name = 'anti_wallhack_active'`, );