type = fancymenu_layout

layout-meta {
  identifier = title_screen
  render_custom_elements_behind_vanilla = false
  last_edited_time = 1781128235347
  is_enabled = true
  randommode = false
  randomgroup = 1
  randomonlyfirsttime = false
  layout_index = 0
  custom_menu_title = CREEPY
  [loading_requirement_container_meta:d347ed97-e6c0-4367-8f61-b6fe0decbc11-1781126905578] = [groups:][instances:]
}

customization {
  action = setscale
  scale = 4.0
}

customization {
  action = autoscale
  basewidth = 3840
  baseheight = 2126
}

menu_background {
  instance_identifier = 415dcd45-bf3b-4683-9065-98dbe3a2056e-1781098240097
  background_type = color_fancymenu
  show_background = true
  color = #000000FF
}

menu_background {
  instance_identifier = 6b21d387-2d76-40e1-b3c9-b2b092c7590c-1781098240097
  background_type = panorama
  show_background = false
}

menu_background {
  instance_identifier = d8c54191-beee-4f23-a807-a12ba2a515d6-1781098240097
  background_type = image
  show_background = false
  slide = false
  repeat_texture = false
  parallax = false
  parallax_intensity_x = 0.02
  parallax_intensity_y = 0.02
  invert_parallax = false
  restart_animated_on_menu_load = false
}

menu_background {
  instance_identifier = a5923256-730c-43cd-9d1f-1013b095bb3e-1781098240097
  background_type = slideshow
  show_background = false
}

menu_background {
  instance_identifier = 4d3a3c83-a1f1-49b4-8bf0-315679f5e622-1781098240097
  background_type = video
  show_background = false
  loop = false
  volume = 1.0
  sound_source = master
  parallax = false
  parallax_intensity_x = 0.02
  parallax_intensity_y = 0.02
  invert_parallax = false
  play_in_editor = true
}

menu_background {
  instance_identifier = 17e0e702-b21c-4aeb-885d-455b1ea1b477-1781098240097
  background_type = video_mcef
  show_background = false
  loop = false
  volume = 1.0
  sound_source = master
  parallax = false
  parallax_intensity_x = 0.02
  parallax_intensity_y = 0.02
  invert_parallax = false
}

menu_background {
  instance_identifier = 5d9a34d8-d893-4ddb-aedf-5417ae632263-1781098240097
  background_type = browser
  show_background = false
  url = https://docs.fancymenu.net
  consume_mouse_clicks = true
  consume_mouse_scrolls = true
  consume_keyboard_presses = true
  process_mouse_clicks = true
  process_mouse_scrolls = true
  process_keyboard_presses = true
  hide_video_controls = false
  loop_videos = false
  mute_media = false
  media_volume = 1.0
}

menu_background {
  instance_identifier = a61ad01a-328b-4ae4-9d31-34a5bd29e68d-1781098240097
  background_type = glsl
  show_background = false
  inline_shader_source = 
  buffer_a_inline_source = 
  buffer_b_inline_source = 
  buffer_c_inline_source = 
  buffer_d_inline_source = 
  image_ichannel0_input = none
  image_ichannel1_input = none
  image_ichannel2_input = none
  image_ichannel3_input = none
  buffer_a_ichannel0_input = none
  buffer_a_ichannel1_input = none
  buffer_a_ichannel2_input = none
  buffer_a_ichannel3_input = none
  buffer_b_ichannel0_input = none
  buffer_b_ichannel1_input = none
  buffer_b_ichannel2_input = none
  buffer_b_ichannel3_input = none
  buffer_c_ichannel0_input = none
  buffer_c_ichannel1_input = none
  buffer_c_ichannel2_input = none
  buffer_c_ichannel3_input = none
  buffer_d_ichannel0_input = none
  buffer_d_ichannel1_input = none
  buffer_d_ichannel2_input = none
  buffer_d_ichannel3_input = none
  compile_mode = auto
  force_shadertoy_compatibility = true
  freeze_time = false
  time_scale = 1.0
  enable_blending = true
  use_input = true
  mouse_position_requires_hold = false
  opacity_multiplier = 1.0
  show_compile_errors = true
}

decoration_overlay {
  overlay_type = browser
  instance_identifier = b7389bf0-7dd0-4265-bf6f-f99c48303084-1781098240097
  show_decoration_overlay = false
  url = <iframe width="640" height="360" frameborder="0" src="https://www.shadertoy.com/embed/sltBWM?gui=true&t=10&paused=true&muted=false" allowfullscreen></iframe>
  consume_mouse_clicks = true
  consume_mouse_scrolls = true
  consume_keyboard_presses = true
  process_mouse_clicks = true
  process_mouse_scrolls = true
  process_keyboard_presses = true
  hide_video_controls = false
  loop_videos = true
  mute_media = false
  media_volume = 1.0
}

decoration_overlay {
  overlay_type = glsl
  instance_identifier = a49326e5-0b51-4b79-bcff-e7e92c13d6c8-1781098240097
  show_decoration_overlay = true
  inline_shader_source = void mainImage(out vec4 fragColor, in vec2 fragCoord) {%%!serialized_property_newline!%%    vec2 uv = fragCoord / iResolution.xy;%%!serialized_property_newline!%%%%!serialized_property_newline!%%    // -- Cylindrical CRT warp%%!serialized_property_newline!%%    vec2 cuv = uv * 2.0 - 1.0;%%!serialized_property_newline!%%    cuv.x *= 1.0 + cuv.y * cuv.y * 0.08;%%!serialized_property_newline!%%    cuv.y *= 1.0 + cuv.x * cuv.x * 0.08;%%!serialized_property_newline!%%    uv = cuv * 0.5 + 0.5;%%!serialized_property_newline!%%%%!serialized_property_newline!%%    // -- Tape wobble%%!serialized_property_newline!%%    float wobble = sin(uv.y * 800.0 + iTime * 2.0) * 0.0008;%%!serialized_property_newline!%%    wobble += sin(uv.y * 200.0 + iTime * 5.0) * 0.0015;%%!serialized_property_newline!%%    uv.x += wobble;%%!serialized_property_newline!%%%%!serialized_property_newline!%%    // -- Rolling white tracking line%%!serialized_property_newline!%%    float trackPos = mod(iTime * 0.4, 1.0);%%!serialized_property_newline!%%    float trackDist = abs(uv.y - trackPos);%%!serialized_property_newline!%%    float trackLine = smoothstep(0.008, 0.0, trackDist);%%!serialized_property_newline!%%    float trackGlitch = smoothstep(0.06, 0.0, trackDist);%%!serialized_property_newline!%%    uv.x += trackGlitch * 0.04 * sin(iTime * 20.0);%%!serialized_property_newline!%%%%!serialized_property_newline!%%    // -- Static white noise%%!serialized_property_newline!%%    float seed = floor(iTime * 24.0);%%!serialized_property_newline!%%    float noise = fract(sin(dot(fragCoord + seed, vec2(127.1, 311.7))) * 43758.5453);%%!serialized_property_newline!%%    float noise2 = fract(sin(dot(fragCoord + seed, vec2(269.5, 183.3))) * 12345.6789);%%!serialized_property_newline!%%    float staticNoise = noise * noise2;%%!serialized_property_newline!%%%%!serialized_property_newline!%%    // -- Bright white scanlines%%!serialized_property_newline!%%    float scan = sin(fragCoord.y * 3.14159) * 0.5 + 0.5;%%!serialized_property_newline!%%    scan = pow(scan, 0.3);%%!serialized_property_newline!%%%%!serialized_property_newline!%%    // -- Interlacing%%!serialized_property_newline!%%    float interlace = mod(floor(fragCoord.y), 2.0) < 1.0 ? 0.88 : 1.0;%%!serialized_property_newline!%%%%!serialized_property_newline!%%    // -- CRT phosphor glow on bright areas%%!serialized_property_newline!%%    float glow = pow(scan, 3.0) * 0.4;%%!serialized_property_newline!%%    glow += trackLine * 1.5;%%!serialized_property_newline!%%%%!serialized_property_newline!%%    // -- White noise horizontal lines%%!serialized_property_newline!%%    float lineSeed = fract(sin(seed * 0.1) * 9999.0);%%!serialized_property_newline!%%    float linePos = floor(lineSeed * iResolution.y);%%!serialized_property_newline!%%    float lineThick = 1.0 + floor(fract(sin(seed * 0.2) * 999.0) * 4.0);%%!serialized_property_newline!%%    float whiteLine = 0.0;%%!serialized_property_newline!%%    if (floor(fragCoord.y) >= linePos && floor(fragCoord.y) < linePos + lineThick) {%%!serialized_property_newline!%%        whiteLine = fract(sin(fragCoord.x * 0.1 + seed) * 4375.85);%%!serialized_property_newline!%%        whiteLine = pow(whiteLine, 0.5);%%!serialized_property_newline!%%    }%%!serialized_property_newline!%%%%!serialized_property_newline!%%    // -- Random full static burst%%!serialized_property_newline!%%    float burstSeed = floor(iTime * 8.0);%%!serialized_property_newline!%%    float burst = step(0.97, fract(sin(burstSeed * 123.456) * 9999.0));%%!serialized_property_newline!%%    float burstNoise = fract(sin(dot(fragCoord + burstSeed, vec2(311.7, 127.1))) * 43758.5453);%%!serialized_property_newline!%%    float staticBurst = burst * burstNoise * 0.4;%%!serialized_property_newline!%%%%!serialized_property_newline!%%    // -- Tape dropout flicker%%!serialized_property_newline!%%    float dropout = step(0.995, fract(sin(floor(fragCoord.y * 0.1) + seed) * 4321.0));%%!serialized_property_newline!%%%%!serialized_property_newline!%%    // -- Vignette dark edges%%!serialized_property_newline!%%    float vignette = pow(uv.x * (1.0 - uv.x) * uv.y * (1.0 - uv.y), 0.3) * 2.5;%%!serialized_property_newline!%%    vignette = clamp(vignette, 0.0, 1.0);%%!serialized_property_newline!%%%%!serialized_property_newline!%%    // -- Edge clip from CRT warp%%!serialized_property_newline!%%    float edge = 1.0;%%!serialized_property_newline!%%    if (uv.x < 0.0 || uv.x > 1.0 || uv.y < 0.0 || uv.y > 1.0) edge = 0.0;%%!serialized_property_newline!%%%%!serialized_property_newline!%%    // -- Overall flicker%%!serialized_property_newline!%%    float flicker = 0.94 + 0.06 * sin(iTime * 47.0);%%!serialized_property_newline!%%    float flicker2 = 0.98 + 0.02 * sin(iTime * 120.0);%%!serialized_property_newline!%%%%!serialized_property_newline!%%    // -- Combine%%!serialized_property_newline!%%    float brightness = 0.15;%%!serialized_property_newline!%%    brightness += staticNoise * 0.12;%%!serialized_property_newline!%%    brightness += glow;%%!serialized_property_newline!%%    brightness += whiteLine * 0.9;%%!serialized_property_newline!%%    brightness += staticBurst;%%!serialized_property_newline!%%    brightness *= scan;%%!serialized_property_newline!%%    brightness *= interlace;%%!serialized_property_newline!%%    brightness *= vignette;%%!serialized_property_newline!%%    brightness *= 1.0 - dropout * 0.9;%%!serialized_property_newline!%%    brightness *= flicker * flicker2;%%!serialized_property_newline!%%    brightness *= edge;%%!serialized_property_newline!%%%%!serialized_property_newline!%%    vec3 col = vec3(brightness);%%!serialized_property_newline!%%%%!serialized_property_newline!%%    fragColor = vec4(clamp(col, 0.0, 1.0), 0.5);%%!serialized_property_newline!%%}
  buffer_a_inline_source = 
  buffer_b_inline_source = 
  buffer_c_inline_source = 
  buffer_d_inline_source = 
  image_ichannel0_input = buffer_d
  image_ichannel1_input = none
  image_ichannel2_input = none
  image_ichannel3_input = none
  buffer_a_ichannel0_input = buffer_a
  buffer_a_ichannel1_input = none
  buffer_a_ichannel2_input = none
  buffer_a_ichannel3_input = none
  buffer_b_ichannel0_input = buffer_a
  buffer_b_ichannel1_input = none
  buffer_b_ichannel2_input = none
  buffer_b_ichannel3_input = none
  buffer_c_ichannel0_input = buffer_b
  buffer_c_ichannel1_input = none
  buffer_c_ichannel2_input = none
  buffer_c_ichannel3_input = none
  buffer_d_ichannel0_input = buffer_c
  buffer_d_ichannel1_input = buffer_c
  buffer_d_ichannel2_input = none
  buffer_d_ichannel3_input = none
  compile_mode = auto
  force_shadertoy_compatibility = true
  freeze_time = false
  time_scale = 1.0
  enable_blending = true
  use_input = true
  mouse_position_requires_hold = false
  opacity_multiplier = 1.0
  show_compile_errors = true
}

decoration_overlay {
  overlay_type = buddy
  instance_identifier = b834776f-b206-44f7-ba5b-01067f1295b7-1781098240097
  show_decoration_overlay = false
  buddy_hunger_decay_per_tick = 0.005
  buddy_happiness_decay_per_tick = 0.003
  buddy_fun_decay_per_tick = 0.002
  buddy_energy_decay_per_tick = 0.002
  buddy_energy_sleep_regen_per_tick = 0.03
  buddy_play_energy_drain_per_tick = 0.03
  buddy_play_fun_gain_per_tick = 0.05
  buddy_play_happiness_gain_per_tick = 0.01
  buddy_play_hunger_drain_per_tick = 0.01
  buddy_chase_energy_drain_per_tick = 0.024
  buddy_chase_hunger_drain_per_tick = 0.005
  buddy_hop_energy_drain_per_tick = 0.005
  buddy_hop_hunger_drain_per_tick = 0.002
  buddy_excited_energy_drain_per_tick = 0.01
  buddy_excited_happiness_gain_per_tick = 0.01
  buddy_excited_hunger_drain_per_tick = 0.003
  buddy_running_energy_drain_per_tick = 0.01
  buddy_running_hunger_drain_per_tick = 0.005
  buddy_food_hunger_gain = 20.0
  buddy_food_happiness_gain = 5.0
  buddy_pet_happiness_gain = 15.0
  buddy_wakeup_happiness_penalty = 2.5
  buddy_max_poops_cap = 10
  buddy_can_die = true
}

decoration_overlay {
  overlay_type = string_lights
  instance_identifier = 5b6c88d2-2db8-43b5-b7b1-57f93fef53a3-1781098240097
  show_decoration_overlay = false
  string_lights_scale = 1.0
  string_lights_wind_strength = 1.0
  string_lights_flicker_speed = 1.0
  string_lights_left_center_to_top_center = true
  string_lights_right_center_to_top_center = true
  string_lights_bottom_left_to_top_center = false
  string_lights_bottom_right_to_top_center = false
  string_lights_top_left_to_top_right = true
  string_lights_bottom_left_to_bottom_right = false
  string_lights_loose_left_top = false
  string_lights_loose_right_top = false
  string_lights_left_center_to_top_center_christmas_mode = false
  string_lights_right_center_to_top_center_christmas_mode = false
  string_lights_bottom_left_to_top_center_christmas_mode = false
  string_lights_bottom_right_to_top_center_christmas_mode = false
  string_lights_top_left_to_top_right_christmas_mode = false
  string_lights_bottom_left_to_bottom_right_christmas_mode = false
  string_lights_loose_left_top_christmas_mode = false
  string_lights_loose_right_top_christmas_mode = false
  string_lights_left_center_to_top_center_color_hex = #FFD27A
  string_lights_right_center_to_top_center_color_hex = #FFD27A
  string_lights_bottom_left_to_top_center_color_hex = #FFD27A
  string_lights_bottom_right_to_top_center_color_hex = #FFD27A
  string_lights_top_left_to_top_right_color_hex = #FFD27A
  string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A
  string_lights_loose_left_top_color_hex = #FFD27A
  string_lights_loose_right_top_color_hex = #FFD27A
}

decoration_overlay {
  overlay_type = fireworks
  instance_identifier = fefa8493-c575-4d5c-9c57-8e64b7eaed36-1781098240097
  show_decoration_overlay = false
  fireworks_scale = 1.0
  fireworks_explosion_size = 1.0
  fireworks_amount = 1.0
  fireworks_show_rockets = true
}

decoration_overlay {
  overlay_type = snowfall
  instance_identifier = f31b5f25-9cb4-4b62-a984-86e4a16375ff-1781098240097
  show_decoration_overlay = false
  snow_intensity = 1.0
  snow_scale = 1.0
  snow_speed = 1.0
  snow_accumulation = true
  snow_color_hex = #FFFFFF
}

decoration_overlay {
  overlay_type = rainfall
  instance_identifier = 19b1a08b-58a4-48dd-a6eb-de4588953c09-1781098240097
  show_decoration_overlay = false
  rain_intensity = 1.0
  rain_scale = 1.0
  rain_thunder_brightness = 1.0
  rain_puddles = true
  rain_drips = true
  rain_thunder = false
  rain_color_hex = #CFE7FF
}

decoration_overlay {
  overlay_type = fireflies
  instance_identifier = e43263af-3d0b-4f3d-b913-a0e9f5e48c77-1781098240097
  show_decoration_overlay = false
  firefly_group_density = 1.0
  firefly_group_amount = 1.0
  firefly_group_size = 1.0
  firefly_scale = 1.0
  firefly_follow_mouse = true
  firefly_landing = true
  firefly_color_hex = #FFE08A
}

decoration_overlay {
  overlay_type = leaves
  instance_identifier = b6d6c787-ded4-48a2-a325-b6c0e330589e-1781098240097
  show_decoration_overlay = false
  leaves_density = 1.0
  leaves_wind_intensity = 1.0
  leaves_wind_blows = true
  leaves_fall_speed = 1.0
  leaves_scale = 1.0
  leaves_color_start_hex = #7BA84F
  leaves_color_end_hex = #D58A3B
}

decoration_overlay {
  overlay_type = confetti
  instance_identifier = f59ec54e-63be-4b1f-bc8f-722467b50d19-1781098240097
  show_decoration_overlay = false
  confetti_scale = 1.0
  confetti_fall_speed = 1.0
  confetti_burst_density = 1.0
  confetti_burst_amount = 1.0
  confetti_particle_cap = 500
  confetti_color_mix_mode = true
  confetti_mouse_click_mode = false
  confetti_color_hex = #FFFFFF
}

customization {
  action = backgroundoptions
  keepaspectratio = false
}

scroll_list_customization {
  preserve_scroll_list_header_footer_aspect_ratio = true
  render_scroll_list_header_shadow = true
  render_scroll_list_footer_shadow = true
  show_scroll_list_header_footer_preview_in_editor = false
  repeat_scroll_list_header_texture = false
  repeat_scroll_list_footer_texture = false
  show_screen_background_overlay_on_custom_background = false
  apply_vanilla_background_blur = false
}

layout_action_executable_blocks {
}

element {
  interactable = false
  source = CREEPY
  source_mode = direct
  shadow = true
  case_mode = upper
  enable_scrolling = false
  auto_line_wrapping = true
  remove_html_breaks = true
  code_block_single_color = #737373FF
  code_block_multi_color = #565656FF
  headline_line_color = #A9A9A9FF
  separation_line_color = #A9A9A9FF
  hyperlink_color = #0771FCFF
  click_event_color = #0771FCFF
  hover_event_color = #0771FCFF
  quote_color = #818181FF
  quote_italic = false
  bullet_list_dot_color = #A9A9A9FF
  parse_markdown = true
  table_show_header = true
  table_alternate_row_colors = true
  table_line_color = #787878FF
  table_header_background_color = #323232FF
  table_row_background_color = #282828FF
  table_alternate_row_color = #3C3C3CFF
  element_type = text_v2
  instance_identifier = b2c03b4f-eb4a-495b-86e2-f0e82a3a8138-1781112492529
  custom_element_layer_name = CREEPY
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = true
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 8
  y = -213
  width = 229
  height = 61
  stay_on_screen = true
  element_loading_requirement_container_identifier = f7080deb-ab14-4b77-aef8-b75eefc68c23-1781112492529
  [loading_requirement_container_meta:f7080deb-ab14-4b77-aef8-b75eefc68c23-1781112492529] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = false
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  base_color = #FFFFFFFF
  scale = 6.0
  text_border = 9
  line_spacing = 2
  quote_indent = 8
  bullet_list_indent = 8
  bullet_list_spacing = 3
  table_line_thickness = 1.0
  table_cell_padding = 8.0
  table_margin = 4.0
}

element {
  button_element_executable_block_identifier = 7a0419dd-c8bb-45cd-97db-8ebdbfacd7ba-1781113468105
  [executable_action_instance:67c74b26-51a3-410e-93ee-8f648413f945-1781115051965][action_type:mimicbutton] = example.menu.identifier:title_screen:42
  [executable_block:7a0419dd-c8bb-45cd-97db-8ebdbfacd7ba-1781113468105][type:generic] = [executables:67c74b26-51a3-410e-93ee-8f648413f945-1781115051965;]
  underline_label_on_hover = false
  transparent_background = true
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  label = Host Server
  navigatable = true
  widget_active_state_requirement_container_identifier = c58df29c-63cd-4e2b-a37b-d9f89a1ca6b2-1781113468105
  [loading_requirement_container_meta:c58df29c-63cd-4e2b-a37b-d9f89a1ca6b2-1781113468105] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = custom_button
  instance_identifier = dc33f77b-739d-4011-8073-4b97d9f1b04d-1781113468105
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = true
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 20
  y = -96
  width = 200
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = df83fdd1-69a1-48ed-9039-44b407142616-1781113468105
  [loading_requirement_container_meta:df83fdd1-69a1-48ed-9039-44b407142616-1781113468105] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = false
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
}

element {
  button_element_executable_block_identifier = 715f1777-0d12-4797-b5fe-98e4208e6ae8-1781115941594
  [executable_action_instance:01e56989-de96-4c09-851c-4e7c937610e1-1781116009345][action_type:quitgame] = 
  [executable_block:715f1777-0d12-4797-b5fe-98e4208e6ae8-1781115941594][type:generic] = [executables:01e56989-de96-4c09-851c-4e7c937610e1-1781116009345;]
  underline_label_on_hover = false
  transparent_background = true
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  label = Quit
  navigatable = true
  widget_active_state_requirement_container_identifier = 0471f89e-d9df-4259-be11-186c60781edd-1781115941594
  [loading_requirement_container_meta:0471f89e-d9df-4259-be11-186c60781edd-1781115941594] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = custom_button
  instance_identifier = 26f224e5-f438-48c2-a7c3-7aeb698367b5-1781115941594
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = true
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 20
  y = 80
  width = 200
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = 08bdf2a3-2068-4ee2-a894-72dc089dd530-1781115941594
  [loading_requirement_container_meta:08bdf2a3-2068-4ee2-a894-72dc089dd530-1781115941594] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
}

element {
  button_element_executable_block_identifier = 0c5031d0-3b5b-4877-9957-08cc9084147e-1781116137209
  [executable_action_instance:15a9c721-b72b-470e-816c-920b090bed3e-1781116213669][action_type:mimicbutton] = title_screen:forge_titlescreen_mods_button
  [executable_block:0c5031d0-3b5b-4877-9957-08cc9084147e-1781116137209][type:generic] = [executables:15a9c721-b72b-470e-816c-920b090bed3e-1781116213669;]
  underline_label_on_hover = false
  transparent_background = true
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  label = Mods
  navigatable = true
  widget_active_state_requirement_container_identifier = d2c656d9-e974-4649-914d-cd34390ded2f-1781116137209
  [loading_requirement_container_meta:d2c656d9-e974-4649-914d-cd34390ded2f-1781116137209] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = custom_button
  instance_identifier = 1dc3f1dd-5fe0-42a8-a399-405adb66c0a5-1781116137209
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = true
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 20
  y = -8
  width = 200
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = a2fd31cc-35b7-4e23-8d16-12d1d4cfc706-1781116137209
  [loading_requirement_container_meta:a2fd31cc-35b7-4e23-8d16-12d1d4cfc706-1781116137209] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = false
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
}

element {
  element_type = image
  instance_identifier = ea901f21-b5c8-4454-a3e9-3affc89ede5a-1781123995942
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = true
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-centered
  x = -474
  y = -264
  width = 952
  height = 527
  stay_on_screen = true
  element_loading_requirement_container_identifier = f7c6b01f-af66-4042-953a-a1882b18b0f1-1781123995942
  [loading_requirement_container_meta:f7c6b01f-af66-4042-953a-a1882b18b0f1-1781123995942] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = false
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = true
  stretch_y = true
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  source = [source:local]/config/fancymenu/assets/videos/0610.gif
  repeat_texture = false
  nine_slice_texture = false
  nine_slice_texture_border_x = 5
  nine_slice_texture_border_y = 5
  restart_animated_on_menu_load = false
  image_tint = #FFFFFF
  rounding_radius_top_left = 0.0
  rounding_radius_top_right = 0.0
  rounding_radius_bottom_right = 0.0
  rounding_radius_bottom_left = 0.0
}

element {
  audio_instance_0 = [source:local]/config/fancymenu/assets/audio/atlasaudio-horror-thriller-519592.ogg
  audio_instance_weight_0 = 1.0
  play_mode = normal
  looping = true
  sound_source = master
  element_type = audio_v2
  instance_identifier = a14b0e68-f5b8-4c9b-be43-0c64923c8e0f-1781126958259
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-centered
  x = 137
  y = 35
  width = 100
  height = 100
  stay_on_screen = true
  element_loading_requirement_container_identifier = 777793c3-9ace-4605-bc1d-1b5b08af7fb4-1781126958259
  [loading_requirement_container_meta:777793c3-9ace-4605-bc1d-1b5b08af7fb4-1781126958259] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = false
  in_editor_color = #5CA6EFFF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  volume = 1.0
}

vanilla_button {
  button_element_executable_block_identifier = 01ee68d3-dff9-4896-a10c-bd0cac9508a0-1781098240098
  [executable_block:01ee68d3-dff9-4896-a10c-bd0cac9508a0-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = 6579b5ad-e086-4a94-b4db-c38c7d46894a-1781098240098
  [loading_requirement_container_meta:6579b5ad-e086-4a94-b4db-c38c7d46894a-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = minecraft_branding_widget
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = vanilla
  x = 2
  y = 492
  width = 108
  height = 39
  stay_on_screen = true
  element_loading_requirement_container_identifier = de368f62-7326-4bb2-9579-d4064c8c159a-1781098240098
  [loading_requirement_container_meta:de368f62-7326-4bb2-9579-d4064c8c159a-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = false
}

vanilla_button {
  button_element_executable_block_identifier = aa911247-bb6d-46f8-9d8a-d3e7a91446e7-1781098240098
  [executable_block:aa911247-bb6d-46f8-9d8a-d3e7a91446e7-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = true
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = 04852822-3201-4879-90cd-86e4529dc786-1781098240098
  [loading_requirement_container_meta:04852822-3201-4879-90cd-86e4529dc786-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = mc_titlescreen_multiplayer_button
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = true
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 20
  y = -118
  width = 200
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = 9e346eab-8578-4e94-857b-875f271877bc-1781098240098
  [loading_requirement_container_meta:9e346eab-8578-4e94-857b-875f271877bc-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = false
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = false
}

vanilla_button {
  button_element_executable_block_identifier = 53a81c12-a226-43d2-9aab-91511783f18c-1781098240098
  [executable_block:53a81c12-a226-43d2-9aab-91511783f18c-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = bcddff04-2165-4538-8ecf-900711924370-1781098240098
  [loading_requirement_container_meta:bcddff04-2165-4538-8ecf-900711924370-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = 0
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 0
  auto_sizing_base_screen_height = 0
  sticky_anchor = false
  anchor_point = vanilla
  x = 0
  y = 0
  width = 20
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = 2a22ecb4-7f81-44b9-b803-534bfd712539-1781098240098
  [loading_requirement_container_meta:2a22ecb4-7f81-44b9-b803-534bfd712539-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = 31d8b30a-d855-4254-a9d9-1c1942380e59-1781098240098
  [executable_block:31d8b30a-d855-4254-a9d9-1c1942380e59-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = false
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = ea4ac941-4853-4d05-822e-3624ff0e3b03-1781098240100
  [loading_requirement_container_meta:ea4ac941-4853-4d05-822e-3624ff0e3b03-1781098240100] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = 126
  custom_element_layer_name = 67
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = bottom-right
  x = -17
  y = -459
  width = 62
  height = 22
  stay_on_screen = false
  element_loading_requirement_container_identifier = e8b294e9-7fc7-48d0-befc-272676e7c3d4-1781098240098
  [loading_requirement_container_meta:e8b294e9-7fc7-48d0-befc-272676e7c3d4-1781098240098] = [groups:][instances:da6f3569-1648-4070-8869-9fd108e6c05b-1781098701982;]
  [loading_requirement:fancymenu_loading_requirement_is_server_online][requirement_mode:if][req_id:da6f3569-1648-4070-8869-9fd108e6c05b-1781098701982] = kakdkadadadadabdnadnakdadmc.exampsadadadadadadadadleserver.com
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = false
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 0.1
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = false
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = false
}

vanilla_button {
  button_element_executable_block_identifier = c1f14d05-fb28-4eaa-bbb5-ed4b21cd1e93-1781098240098
  [executable_block:c1f14d05-fb28-4eaa-bbb5-ed4b21cd1e93-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = 2be1fbaa-9235-4d8d-a33e-82b6780c0d13-1781098240098
  [loading_requirement_container_meta:2be1fbaa-9235-4d8d-a33e-82b6780c0d13-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = mc_titlescreen_language_button
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 160
  y = 185
  width = 20
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = 8de9db97-5cb1-4a19-b9c6-581e415fbfb7-1781098240098
  [loading_requirement_container_meta:8de9db97-5cb1-4a19-b9c6-581e415fbfb7-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = e7715a86-4218-4146-ab69-3c477155883a-1781098240098
  [executable_block:e7715a86-4218-4146-ab69-3c477155883a-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = true
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  label = Wardrobe
  navigatable = true
  widget_active_state_requirement_container_identifier = df956441-2ebe-4872-97e1-887dc87b1f9e-1781098240098
  [loading_requirement_container_meta:df956441-2ebe-4872-97e1-887dc87b1f9e-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = 105
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = true
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 20
  y = 36
  width = 200
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = 411fad3b-2dd2-4c10-876d-f77f35f85a30-1781098240098
  [loading_requirement_container_meta:411fad3b-2dd2-4c10-876d-f77f35f85a30-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = false
}

vanilla_button {
  button_element_executable_block_identifier = 0f21b96c-89f4-4a25-ba54-9d3830326a7a-1781098240100
  [executable_block:0f21b96c-89f4-4a25-ba54-9d3830326a7a-1781098240100][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = 3b089ab7-9917-4c3c-a9dd-071616a74f2e-1781098240100
  [loading_requirement_container_meta:3b089ab7-9917-4c3c-a9dd-071616a74f2e-1781098240100] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = 3015
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 0
  auto_sizing_base_screen_height = 0
  sticky_anchor = false
  anchor_point = vanilla
  x = 30
  y = 15
  width = 20
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = 614cfde7-1e5b-4010-85cb-d8a8c031ef4e-1781098240100
  [loading_requirement_container_meta:614cfde7-1e5b-4010-85cb-d8a8c031ef4e-1781098240100] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = 323dcbbc-aa61-4989-8ef9-3d7d5e2e04c9-1781098240100
  [executable_block:323dcbbc-aa61-4989-8ef9-3d7d5e2e04c9-1781098240100][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = 50a2f780-b565-4dcc-889e-22d65b4488c7-1781098240100
  [loading_requirement_container_meta:50a2f780-b565-4dcc-889e-22d65b4488c7-1781098240100] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = 2613
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = vanilla
  x = 713
  y = 190
  width = 14
  height = 14
  stay_on_screen = true
  element_loading_requirement_container_identifier = baa97fe9-840c-483b-ae67-b63e4124d7db-1781098240100
  [loading_requirement_container_meta:baa97fe9-840c-483b-ae67-b63e4124d7db-1781098240100] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = 72f139e3-4b50-4cd1-bf04-96ab2a9f4f9f-1781098240098
  [executable_block:72f139e3-4b50-4cd1-bf04-96ab2a9f4f9f-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = true
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  label = Host
  navigatable = true
  widget_active_state_requirement_container_identifier = b9381121-313e-4985-926b-436375a60fcf-1781098240098
  [loading_requirement_container_meta:b9381121-313e-4985-926b-436375a60fcf-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = 42
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = true
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 20
  y = -74
  width = 200
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = 29c5dd78-6e21-4eae-ac8c-60a6938c858a-1781098240098
  [loading_requirement_container_meta:29c5dd78-6e21-4eae-ac8c-60a6938c858a-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = false
}

vanilla_button {
  button_element_executable_block_identifier = 2f10787e-7546-477f-832b-bab79333646b-1781098240098
  [executable_block:2f10787e-7546-477f-832b-bab79333646b-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = true
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = 8422c330-0fa1-467b-8dfe-1554770e47da-1781098240098
  [loading_requirement_container_meta:8422c330-0fa1-467b-8dfe-1554770e47da-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = mc_titlescreen_options_button
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = true
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 20
  y = -52
  width = 200
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = 3db46007-a01f-41d1-b7dd-e08b21d11716-1781098240098
  [loading_requirement_container_meta:3db46007-a01f-41d1-b7dd-e08b21d11716-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = false
}

vanilla_button {
  button_element_executable_block_identifier = 739a751d-9114-42cb-8247-51acaff85e5e-1781098240098
  [executable_block:739a751d-9114-42cb-8247-51acaff85e5e-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = true
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = 42492525-3385-4464-bfc7-aeded8b595a6-1781098240098
  [loading_requirement_container_meta:42492525-3385-4464-bfc7-aeded8b595a6-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = 63
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = true
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 227
  y = -76
  width = 20
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = cc9c4bce-25dd-4001-9788-c2d12f010707-1781098240098
  [loading_requirement_container_meta:cc9c4bce-25dd-4001-9788-c2d12f010707-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = false
}

vanilla_button {
  button_element_executable_block_identifier = 71cd2af9-0756-453d-8f04-384076363eac-1781098240098
  [executable_block:71cd2af9-0756-453d-8f04-384076363eac-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = true
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = 63d061df-38eb-43b6-9dc2-54c03686d59c-1781098240098
  [loading_requirement_container_meta:63d061df-38eb-43b6-9dc2-54c03686d59c-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = mc_titlescreen_singleplayer_button
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = true
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 22
  y = -140
  width = 200
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = 36cc57de-01d0-411a-8300-883c1ad87f12-1781098240098
  [loading_requirement_container_meta:36cc57de-01d0-411a-8300-883c1ad87f12-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = false
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = false
}

vanilla_button {
  button_element_executable_block_identifier = 9b2c6b80-5fb9-42a3-93a7-c9eb88ebd85c-1781098240098
  [executable_block:9b2c6b80-5fb9-42a3-93a7-c9eb88ebd85c-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = ee4548d0-9a62-4caa-b3d6-483bc00af214-1781098240098
  [loading_requirement_container_meta:ee4548d0-9a62-4caa-b3d6-483bc00af214-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = mc_titlescreen_quit_button
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 55
  y = 125
  width = 200
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = 342c3f6c-b146-48db-aadb-fa7c87f8641a-1781098240098
  [loading_requirement_container_meta:342c3f6c-b146-48db-aadb-fa7c87f8641a-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = 04021ab6-8d81-4e86-839a-bbef659c1164-1781098240098
  [executable_block:04021ab6-8d81-4e86-839a-bbef659c1164-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = true
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  label = Social
  navigatable = true
  widget_active_state_requirement_container_identifier = 9aa43d9e-f0fb-4daf-b29b-5155f6674b77-1781098240098
  [loading_requirement_container_meta:9aa43d9e-f0fb-4daf-b29b-5155f6674b77-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = 84
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = true
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 20
  y = 14
  width = 200
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = 42aff19b-aeca-46ed-8fd9-289a3e1f5eb7-1781098240098
  [loading_requirement_container_meta:42aff19b-aeca-46ed-8fd9-289a3e1f5eb7-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = false
}

vanilla_button {
  button_element_executable_block_identifier = 078a6539-ce93-41f1-865a-5cd59c45f5e5-1781098240098
  [executable_block:078a6539-ce93-41f1-865a-5cd59c45f5e5-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = b7a7ca63-1e5d-4e87-96e9-7d10a3c73819-1781098240098
  [loading_requirement_container_meta:b7a7ca63-1e5d-4e87-96e9-7d10a3c73819-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = mc_titlescreen_accessibility_button
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 224
  y = 172
  width = 20
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = 135f7e19-c68a-4770-95ee-f6b2cba3d61a-1781098240098
  [loading_requirement_container_meta:135f7e19-c68a-4770-95ee-f6b2cba3d61a-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = fd7f9b84-db9c-4c51-8576-e1e044e7bcde-1781098240100
  [executable_block:fd7f9b84-db9c-4c51-8576-e1e044e7bcde-1781098240100][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = 15fb2700-b100-4a4b-b00f-3973a1b77795-1781098240100
  [loading_requirement_container_meta:15fb2700-b100-4a4b-b00f-3973a1b77795-1781098240100] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = 189
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 0
  auto_sizing_base_screen_height = 0
  sticky_anchor = false
  anchor_point = vanilla
  x = 730
  y = 283
  width = 80
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = be87111c-6618-4f3d-aa07-70860d727661-1781098240100
  [loading_requirement_container_meta:be87111c-6618-4f3d-aa07-70860d727661-1781098240100] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = fa162c7b-1ced-4a2d-b680-b3ad2ff7583c-1781098240098
  [executable_block:fa162c7b-1ced-4a2d-b680-b3ad2ff7583c-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = 9bf8a86a-0fd8-490e-8fad-7eb63a155f14-1781098240098
  [loading_requirement_container_meta:9bf8a86a-0fd8-490e-8fad-7eb63a155f14-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = minecraft_logo_widget
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 0
  auto_sizing_base_screen_height = 0
  sticky_anchor = false
  anchor_point = vanilla
  x = 352
  y = 30
  width = 256
  height = 51
  stay_on_screen = true
  element_loading_requirement_container_identifier = c4fafcef-5e25-4200-9960-966a685634c1-1781098240098
  [loading_requirement_container_meta:c4fafcef-5e25-4200-9960-966a685634c1-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = 770f63d2-100b-4393-882f-60b83e30055d-1781098240100
  [executable_block:770f63d2-100b-4393-882f-60b83e30055d-1781098240100][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = 85153f02-70cb-4b8a-bc44-f45df807ccf9-1781098240100
  [loading_requirement_container_meta:85153f02-70cb-4b8a-bc44-f45df807ccf9-1781098240100] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = 2814
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 0
  auto_sizing_base_screen_height = 0
  sticky_anchor = false
  anchor_point = vanilla
  x = 130
  y = 158
  width = 120
  height = 120
  stay_on_screen = true
  element_loading_requirement_container_identifier = d9ebf225-9154-4fc9-90c9-7b602be27e86-1781098240100
  [loading_requirement_container_meta:d9ebf225-9154-4fc9-90c9-7b602be27e86-1781098240100] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = 401a95c4-9570-4c20-ba2a-4a171b30f1eb-1781098240100
  [executable_block:401a95c4-9570-4c20-ba2a-4a171b30f1eb-1781098240100][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = 7610cf25-a189-4086-9316-f1d9847f3ac9-1781098240100
  [loading_requirement_container_meta:7610cf25-a189-4086-9316-f1d9847f3ac9-1781098240100] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = 2211
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 0
  auto_sizing_base_screen_height = 0
  sticky_anchor = false
  anchor_point = vanilla
  x = 696
  y = 262
  width = 14
  height = 14
  stay_on_screen = true
  element_loading_requirement_container_identifier = 04d32544-fe5f-4822-8045-1bcc75fc1f5c-1781098240100
  [loading_requirement_container_meta:04d32544-fe5f-4822-8045-1bcc75fc1f5c-1781098240100] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = 5de32b46-2539-47ad-a345-53f1104a7515-1781098240100
  [executable_block:5de32b46-2539-47ad-a345-53f1104a7515-1781098240100][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = true
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  label = Settings
  navigatable = true
  widget_active_state_requirement_container_identifier = 3805558c-57de-4a18-a470-afa7189876c8-1781098240100
  [loading_requirement_container_meta:3805558c-57de-4a18-a470-afa7189876c8-1781098240100] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = 168
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = true
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 20
  y = -30
  width = 200
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = f981bb43-68c8-41ed-9593-17ce5436bdbd-1781098240100
  [loading_requirement_container_meta:f981bb43-68c8-41ed-9593-17ce5436bdbd-1781098240100] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = false
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = false
}

vanilla_button {
  button_element_executable_block_identifier = ce0677dd-ba1f-43fb-b4fc-2a8d3d97863f-1781098240100
  [executable_block:ce0677dd-ba1f-43fb-b4fc-2a8d3d97863f-1781098240100][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = c83e4261-160d-487f-a0b1-d453ae4911db-1781098240100
  [loading_requirement_container_meta:c83e4261-160d-487f-a0b1-d453ae4911db-1781098240100] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = 2412
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 0
  auto_sizing_base_screen_height = 0
  sticky_anchor = false
  anchor_point = vanilla
  x = 713
  y = 262
  width = 14
  height = 14
  stay_on_screen = true
  element_loading_requirement_container_identifier = 7bd46ebd-261d-4846-983e-e6cc6da55048-1781098240100
  [loading_requirement_container_meta:7bd46ebd-261d-4846-983e-e6cc6da55048-1781098240100] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = ca165a0e-3279-41ec-8706-254841ce9d65-1781098240098
  [executable_block:ca165a0e-3279-41ec-8706-254841ce9d65-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = f72ad00f-47c7-44ef-8d91-4745990f4795-1781098240098
  [loading_requirement_container_meta:f72ad00f-47c7-44ef-8d91-4745990f4795-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = mc_titlescreen_realms_button
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 0
  auto_sizing_base_screen_height = 0
  sticky_anchor = false
  anchor_point = vanilla
  x = 482
  y = 229
  width = 98
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = 83664839-9c85-472b-a2a6-563650df1b53-1781098240098
  [loading_requirement_container_meta:83664839-9c85-472b-a2a6-563650df1b53-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = b3722d66-0afb-4f12-8c4c-94d746a4206d-1781098240098
  [executable_block:b3722d66-0afb-4f12-8c4c-94d746a4206d-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = true
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = fc44babe-18fd-4f06-b849-1943ee1e4973-1781098240098
  [loading_requirement_container_meta:fc44babe-18fd-4f06-b849-1943ee1e4973-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = forge_titlescreen_mods_button
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = true
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 20
  y = -8
  width = 200
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = f27dd6fe-4669-408b-ba0e-49cfe3e60138-1781098240098
  [loading_requirement_container_meta:f27dd6fe-4669-408b-ba0e-49cfe3e60138-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = fec0180d-f51e-4f97-a8ef-e837f7008d49-1781098240100
  [executable_block:fec0180d-f51e-4f97-a8ef-e837f7008d49-1781098240100][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = true
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  label = Screenshots
  navigatable = true
  widget_active_state_requirement_container_identifier = 3ae21e34-c06f-4c78-9a5f-38dd65546490-1781098240100
  [loading_requirement_container_meta:3ae21e34-c06f-4c78-9a5f-38dd65546490-1781098240100] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = 147
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = true
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = mid-left
  x = 20
  y = 58
  width = 200
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = 1cd341c1-e23b-4587-85c6-37f0ace10ef1-1781098240100
  [loading_requirement_container_meta:1cd341c1-e23b-4587-85c6-37f0ace10ef1-1781098240100] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = false
}

vanilla_button {
  button_element_executable_block_identifier = f3f2b5fc-22bd-4597-a619-46272b330436-1781098240098
  [executable_block:f3f2b5fc-22bd-4597-a619-46272b330436-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = ebf1ee9f-1a01-425c-a265-60fb6d792c53-1781098240098
  [loading_requirement_container_meta:ebf1ee9f-1a01-425c-a265-60fb6d792c53-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = minecraft_realms_notification_icons_widget
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 0
  auto_sizing_base_screen_height = 0
  sticky_anchor = false
  anchor_point = vanilla
  x = 498
  y = 231
  width = 62
  height = 18
  stay_on_screen = true
  element_loading_requirement_container_identifier = 3b52d417-8ea3-42f3-bbee-dcec32318ef8-1781098240098
  [loading_requirement_container_meta:3b52d417-8ea3-42f3-bbee-dcec32318ef8-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = dd44916a-d140-46d8-95c5-7479042ab09e-1781098240098
  [executable_block:dd44916a-d140-46d8-95c5-7479042ab09e-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = 3d015e41-8a2b-4e99-bb6b-daa5e8466db5-1781098240098
  [loading_requirement_container_meta:3d015e41-8a2b-4e99-bb6b-daa5e8466db5-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = minecraft_splash_widget
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 0
  auto_sizing_base_screen_height = 0
  sticky_anchor = false
  anchor_point = vanilla
  x = 553
  y = 49
  width = 100
  height = 40
  stay_on_screen = true
  element_loading_requirement_container_identifier = d46a9d33-bb2b-415b-bb45-e89af379b5b6-1781098240098
  [loading_requirement_container_meta:d46a9d33-bb2b-415b-bb45-e89af379b5b6-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = 7186dca2-f9ab-408e-b0f0-d789f957ac80-1781098240100
  [executable_block:7186dca2-f9ab-408e-b0f0-d789f957ac80-1781098240100][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = daf465ba-d7e3-48ea-98e5-a2eef66b911b-1781098240100
  [loading_requirement_container_meta:daf465ba-d7e3-48ea-98e5-a2eef66b911b-1781098240100] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = 2010
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 0
  auto_sizing_base_screen_height = 0
  sticky_anchor = false
  anchor_point = vanilla
  x = 20
  y = 10
  width = 20
  height = 20
  stay_on_screen = true
  element_loading_requirement_container_identifier = 9b3c7181-f67a-49d3-bdba-b9ff6f79d16f-1781098240100
  [loading_requirement_container_meta:9b3c7181-f67a-49d3-bdba-b9ff6f79d16f-1781098240100] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = true
}

vanilla_button {
  button_element_executable_block_identifier = 4afc9f7a-4941-4eff-b30c-69f8d8c7877d-1781098240098
  [executable_block:4afc9f7a-4941-4eff-b30c-69f8d8c7877d-1781098240098][type:generic] = [executables:]
  underline_label_on_hover = false
  transparent_background = false
  restartbackgroundanimations = true
  nine_slice_custom_background = false
  navigatable = true
  widget_active_state_requirement_container_identifier = 79d12dd4-20ca-4ee8-a048-606436ff0293-1781098240098
  [loading_requirement_container_meta:79d12dd4-20ca-4ee8-a048-606436ff0293-1781098240098] = [groups:][instances:]
  is_template = false
  template_apply_width = false
  template_apply_height = false
  template_apply_posx = false
  template_apply_posy = false
  template_apply_opacity = false
  template_apply_visibility = false
  template_apply_label = false
  template_share_with = buttons
  nine_slice_slider_handle = false
  element_type = vanilla_button
  instance_identifier = title_screen_copyright_button
  appearance_delay = no_delay
  disappearance_delay = no_delay
  fade_in_v2 = no_fading
  fade_out = no_fading
  auto_sizing = false
  auto_sizing_base_screen_width = 3840
  auto_sizing_base_screen_height = 2128
  sticky_anchor = false
  anchor_point = element
  anchor_point_element = mc_titlescreen_language_button
  x = -86
  y = 461
  width = 196
  height = 10
  stay_on_screen = true
  element_loading_requirement_container_identifier = 6f9fb710-a338-4fdf-a5e3-75a40b70f2b6-1781098240098
  [loading_requirement_container_meta:6f9fb710-a338-4fdf-a5e3-75a40b70f2b6-1781098240098] = [groups:][instances:]
  enable_parallax = false
  invert_parallax = false
  animated_offset_x = 0
  animated_offset_y = 0
  load_once_per_session = false
  layer_hidden_in_editor = false
  advanced_rotation_mode = false
  advanced_vertical_tilt_mode = false
  advanced_horizontal_tilt_mode = false
  should_be_affected_by_decoration_overlays = true
  in_editor_color = #FFC800FF
  advanced_posx = -2147483648
  advanced_posy = -2147483648
  advanced_width = -2147483648
  advanced_height = -2147483648
  stretch_x = false
  stretch_y = false
  appearance_delay_seconds = 1.0
  disappearance_delay_seconds = 1.0
  fade_in_speed = 1.0
  fade_out_speed = 1.0
  base_opacity = 1.0
  parallax_intensity_x = 0.5
  parallax_intensity_y = 0.5
  rotation_degrees = 0.0
  advanced_rotation_degrees = 0.0
  vertical_tilt_degrees = 0.0
  advanced_vertical_tilt_degrees = 0.0
  horizontal_tilt_degrees = 0.0
  advanced_horizontal_tilt_degrees = 0.0
  label_scale = 1.0
  label_shadow = true
  nine_slice_border_x = 5
  nine_slice_border_y = 5
  nine_slice_slider_handle_border_x = 5
  nine_slice_slider_handle_border_y = 5
  automated_button_clicks = 0
  is_hidden = false
}

